blob: 1766000ad29f4e6aacaa891d3c6eba9fff26a2c0 (
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
29
30
31
32
33
|
# 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-5.0.1.ebuild,v 1.3 2012/11/23 18:24:53 ago Exp $
EAPI=4
CMAKE_IN_SOURCE_BUILD=1
inherit cmake-utils
DESCRIPTION="The MusicBrainz Client Library (for accessing the latest XML based web service)"
HOMEPAGE="http://musicbrainz.org/doc/libmusicbrainz"
SRC_URI="mirror://github/metabrainz/lib${PN}/lib${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="5"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="examples test"
RDEPEND="net-libs/neon"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )"
S=${WORKDIR}/lib${P}
DOCS="AUTHORS.txt NEWS.txt README.md"
src_install() {
cmake-utils_src_install
if use examples; then
docinto examples
dodoc examples/*.{c,cc,txt}
fi
}
|