diff options
author | Caleb Tennis <caleb@gentoo.org> | 2008-05-14 12:08:44 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2008-05-14 12:08:44 +0000 |
commit | cac17f97f86ce88397d8c1b20320613f4ccf7929 (patch) | |
tree | 7ba936b14149cdafc9d1d4358e28e19c45ca4350 /dev-libs | |
parent | Stable on ppc64; bug #221063 (diff) | |
download | gentoo-2-cac17f97f86ce88397d8c1b20320613f4ccf7929.tar.gz gentoo-2-cac17f97f86ce88397d8c1b20320613f4ccf7929.tar.bz2 gentoo-2-cac17f97f86ce88397d8c1b20320613f4ccf7929.zip |
version bump and fix swig depg per 221465
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/redland-bindings/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/redland-bindings/redland-bindings-1.0.7.1.ebuild | 53 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-libs/redland-bindings/ChangeLog b/dev-libs/redland-bindings/ChangeLog index 3203ea179d6a..badea2463357 100644 --- a/dev-libs/redland-bindings/ChangeLog +++ b/dev-libs/redland-bindings/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/redland-bindings # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland-bindings/ChangeLog,v 1.12 2008/01/19 20:45:21 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland-bindings/ChangeLog,v 1.13 2008/05/14 12:08:44 caleb Exp $ + +*redland-bindings-1.0.7.1 (14 May 2008) + + 14 May 2008; Caleb Tennis <caleb@gentoo.org> + +redland-bindings-1.0.7.1.ebuild: + version bump, move swig to RDEPEND (#221465) 19 Jan 2008; Samuli Suominen <drac@gentoo.org> metadata.xml: sound herd will take this ebuild. diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.7.1.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.7.1.ebuild new file mode 100644 index 000000000000..b1b52f9da24d --- /dev/null +++ b/dev-libs/redland-bindings/redland-bindings-1.0.7.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland-bindings/redland-bindings-1.0.7.1.ebuild,v 1.1 2008/05/14 12:08:44 caleb Exp $ + +inherit eutils mono + +DESCRIPTION="Language bindings for Redland" +HOMEPAGE="http://librdf.org/" +SRC_URI="http://download.librdf.org/source/${P}.tar.gz" + +LICENSE="LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="perl python java tcl php ruby mono" + +DEPEND=">=dev-libs/redland-1.0.7 + perl? ( dev-lang/perl ) + python? ( dev-lang/python ) + java? ( virtual/jdk ) + tcl? ( dev-lang/tcl ) + php? ( virtual/php ) + ruby? ( dev-lang/ruby dev-ruby/log4r ) + mono? ( dev-lang/mono )" + +RDEPEND="${DEPEND} + >=dev-lang/swig-1.3.25" + +src_unpack() { + unpack ${A} + cd "${S}" + # epatch "${FILESDIR}"/${PN}-1.0.0.2-configure.patch +} + +src_compile() { + econf \ + $(use_with perl) \ + $(use_with python) \ + $(use_with java) \ + $(use_with java jdk ${JAVA_HOME}) \ + $(use_with tcl tcl) \ + $(use_with php) \ + $(use_with ruby) \ + $(use_with mono ecma-cli mono) \ + --with-redland=system \ + || die + emake || die +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc AUTHORS ChangeLog* INSTALL NEWS README TODO + dohtml *.html +} |