diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-23 22:10:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-23 22:10:46 +0000 |
commit | ef5a1cd580ce16a7e8f3a7ca5521c16302746cb2 (patch) | |
tree | a709edef3d39caf05911f557c77da865d5ae71e0 /media-libs/liblrdf | |
parent | Use correct slot of pygobject. (diff) | |
download | gentoo-2-ef5a1cd580ce16a7e8f3a7ca5521c16302746cb2.tar.gz gentoo-2-ef5a1cd580ce16a7e8f3a7ca5521c16302746cb2.tar.bz2 gentoo-2-ef5a1cd580ce16a7e8f3a7ca5521c16302746cb2.zip |
Version bump.
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/liblrdf')
-rw-r--r-- | media-libs/liblrdf/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/liblrdf/liblrdf-0.5.0.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/liblrdf/ChangeLog b/media-libs/liblrdf/ChangeLog index 6bb4bf4beac7..51666d9c6a95 100644 --- a/media-libs/liblrdf/ChangeLog +++ b/media-libs/liblrdf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/liblrdf # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v 1.49 2011/10/18 16:58:24 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v 1.50 2011/10/23 22:10:46 ssuominen Exp $ + +*liblrdf-0.5.0 (23 Oct 2011) + + 23 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> +liblrdf-0.5.0.ebuild: + Version bump. 18 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> -liblrdf-0.4.0.ebuild, -liblrdf-0.4.0_p20110928.ebuild: diff --git a/media-libs/liblrdf/liblrdf-0.5.0.ebuild b/media-libs/liblrdf/liblrdf-0.5.0.ebuild new file mode 100644 index 000000000000..9f29b44bb0e0 --- /dev/null +++ b/media-libs/liblrdf/liblrdf-0.5.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.5.0.ebuild,v 1.1 2011/10/23 22:10:46 ssuominen Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="A library for the manipulation of RDF file in LADSPA plugins" +HOMEPAGE="http://github.com/swh/LRDF" +SRC_URI="http://github.com/swh/LRDF/tarball/${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="static-libs" + +RDEPEND=">=dev-libs/openssl-1 + media-libs/raptor:2 + >=media-libs/ladspa-sdk-1.12" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS=( AUTHORS ChangeLog README ) + +src_unpack() { + unpack ${A} + mv *-LRDF-* "${S}" +} + +src_prepare() { + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + rm -f "${ED}"usr/lib*/liblrdf.la +} |