diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-12-12 00:15:53 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-12-14 22:13:23 +0100 |
commit | 5488a0e233af8c6c184b0398c42333dbcb1fc195 (patch) | |
tree | 348b455e43b27e07a0dc6ac4945713978257d753 /media-libs/musicbrainz/musicbrainz-5.1.0.ebuild | |
parent | dev-libs/jsoncpp: Remove old (diff) | |
download | gentoo-5488a0e233af8c6c184b0398c42333dbcb1fc195.tar.gz gentoo-5488a0e233af8c6c184b0398c42333dbcb1fc195.tar.bz2 gentoo-5488a0e233af8c6c184b0398c42333dbcb1fc195.zip |
media-libs/musicbrainz: Version bump to 5.1.0
Gentoo-bug: 530460
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3095
Diffstat (limited to 'media-libs/musicbrainz/musicbrainz-5.1.0.ebuild')
-rw-r--r-- | media-libs/musicbrainz/musicbrainz-5.1.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild b/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild new file mode 100644 index 000000000000..235864ee3bcb --- /dev/null +++ b/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 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 +} |