diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-06 08:33:27 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-06 08:33:27 +0000 |
commit | abbeee1521ea96db976ddebf8dfe5a7c95785f45 (patch) | |
tree | aa5065097debce77f6a8af10a6180f1d178ee6ef /media-libs/liblrdf | |
parent | Fix off-by-one typing error (diff) | |
download | gentoo-2-abbeee1521ea96db976ddebf8dfe5a7c95785f45.tar.gz gentoo-2-abbeee1521ea96db976ddebf8dfe5a7c95785f45.tar.bz2 gentoo-2-abbeee1521ea96db976ddebf8dfe5a7c95785f45.zip |
New snapshot.
(Portage version: 2.2.0_alpha61/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/liblrdf')
-rw-r--r-- | media-libs/liblrdf/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/liblrdf/liblrdf-0.4.0_p20111006.ebuild | 37 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-libs/liblrdf/ChangeLog b/media-libs/liblrdf/ChangeLog index f5bb5adb2254..791baa76fceb 100644 --- a/media-libs/liblrdf/ChangeLog +++ b/media-libs/liblrdf/ChangeLog @@ -1,6 +1,12 @@ # 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.45 2011/10/05 08:26:50 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v 1.46 2011/10/06 08:33:27 ssuominen Exp $ + +*liblrdf-0.4.0_p20111006 (06 Oct 2011) + + 06 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> + +liblrdf-0.4.0_p20111006.ebuild: + New snapshot. 05 Oct 2011; Andreas Schuerch <nativemad@gentoo.org> liblrdf-0.4.0-r20.ebuild: diff --git a/media-libs/liblrdf/liblrdf-0.4.0_p20111006.ebuild b/media-libs/liblrdf/liblrdf-0.4.0_p20111006.ebuild new file mode 100644 index 000000000000..240719af4456 --- /dev/null +++ b/media-libs/liblrdf/liblrdf-0.4.0_p20111006.ebuild @@ -0,0 +1,37 @@ +# 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.4.0_p20111006.ebuild,v 1.1 2011/10/06 08:33:27 ssuominen Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="A library for the manipulation of RDF file in LADSPA plugins" +HOMEPAGE="http://lrdf.sourceforge.net/ http://github.com/swh/LRDF" +SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz" +#SRC_URI="mirror://gentoo/${P}.tar.xz" + +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_prepare() { + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + rm -f "${ED}"usr/lib*/liblrdf.la +} |