You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild

37 lines
849 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit cmake-utils
DESCRIPTION="Client Library for accessing the latest XML based MusicBrainz web service"
HOMEPAGE="http://musicbrainz.org/doc/libmusicbrainz"
SRC_URI="https://github.com/metabrainz/lib${PN}/releases/download/release-${PV}/lib${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="5/1" # soname of libmusicbrainz5.so
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="examples test"
RDEPEND="
dev-libs/libxml2
net-libs/neon
"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )
"
S="${WORKDIR}/lib${P}"
src_install() {
cmake-utils_src_install
if use examples; then
docinto examples
dodoc examples/*.{c,cc,txt}
docompress -x /usr/share/doc/${PF}/examples
fi
}