blob: 83cd122186ed5d8e8c3d90e6e9bed5254f0d970e (
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
27
28
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/musicbrainz/musicbrainz-3.0.3.ebuild,v 1.5 2012/04/26 02:19:29 jer Exp $
inherit cmake-utils
DESCRIPTION="Client library to access metadata of mp3/vorbis/CD media"
HOMEPAGE="http://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 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="net-libs/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"
PATCHES=( "${FILESDIR}/${PN}-3.0.2-gcc44.patch" )
|