diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-25 05:17:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-25 05:17:24 +0000 |
commit | 682a5577ca97f956dc0c51ccac8ed406227feddb (patch) | |
tree | 43e6a10e38cf62f8ee949c13e6147e77b31f9aae /dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild | |
parent | Add sys-cluster/torque:server (diff) | |
download | historical-682a5577ca97f956dc0c51ccac8ed406227feddb.tar.gz historical-682a5577ca97f956dc0c51ccac8ed406227feddb.tar.bz2 historical-682a5577ca97f956dc0c51ccac8ed406227feddb.zip |
Version bump #148173 by Lars Bröcker.
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild')
-rw-r--r-- | dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild new file mode 100644 index 000000000000..f63be67c00ee --- /dev/null +++ b/dev-libs/redland-bindings/redland-bindings-1.0.4.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2006 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.4.1.ebuild,v 1.1 2006/09/25 05:17:24 vapier 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 MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="perl python java tcltk php ruby mono" + +DEPEND=">=dev-libs/redland-1.0.4 + >=dev-lang/swig-1.3.25 + perl? ( dev-lang/perl ) + python? ( dev-lang/python ) + java? ( virtual/jdk ) + tcltk? ( dev-lang/tcl ) + php? ( virtual/php ) + ruby? ( dev-lang/ruby ) + mono? ( dev-lang/mono )" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i 's:$(INSTALL_PROGRAM) $(TCL_PACKAGE):$(INSTALL_PROGRAM) -D $(TCL_PACKAGE):' tcl/Makefile.in + epatch "${FILESDIR}"/${PN}-1.0.0.2-configure.patch + epatch "${FILESDIR}"/${PN}-1.0.0.2-DESTDIR.patch +} + +src_compile() { + econf \ + $(use_with perl) \ + $(use_with python) \ + $(use_with java) \ + $(use_with java jdk ${JAVA_HOME}) \ + $(use_with tcltk 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 +} |