blob: 523cd91f10a9ec42e91b9b4ed7e0dcfd7a141da3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/musicbrainz/musicbrainz-3.0.2.ebuild,v 1.1 2008/10/27 12:12:57 aballier Exp $
inherit cmake-utils
DESCRIPTION="Client library to access metadata of mp3/vorbis/CD media"
HOMEPAGE="http://www.musicbrainz.org/"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/lib${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
RDEPEND="net-misc/neon
media-libs/libdiscid"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )"
S=${WORKDIR}/lib${P}
CMAKE_IN_SOURCE_BUILD=true
DOCS="README.txt NEWS.txt AUTHORS.txt"
|