diff options
author | 2004-02-13 03:04:30 +0000 | |
---|---|---|
committer | 2004-02-13 03:04:30 +0000 | |
commit | 7c6f0238baf034ddc8de25b8d2541cffe1d631dd (patch) | |
tree | 373e0e13bd2550e4d12b51652e1054d2c2fc63a0 /media-libs/raptor | |
parent | Initial import, hard-masked (Manifest recommit) (diff) | |
download | gentoo-2-7c6f0238baf034ddc8de25b8d2541cffe1d631dd.tar.gz gentoo-2-7c6f0238baf034ddc8de25b8d2541cffe1d631dd.tar.bz2 gentoo-2-7c6f0238baf034ddc8de25b8d2541cffe1d631dd.zip |
Added optional curl and ssl dependencies. Closes bug #34870.
Diffstat (limited to 'media-libs/raptor')
-rw-r--r-- | media-libs/raptor/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/raptor/raptor-0.9.12.ebuild | 18 | ||||
-rw-r--r-- | media-libs/raptor/raptor-0.9.8.ebuild | 18 |
3 files changed, 29 insertions, 13 deletions
diff --git a/media-libs/raptor/ChangeLog b/media-libs/raptor/ChangeLog index 737e00426943..8648814891c2 100644 --- a/media-libs/raptor/ChangeLog +++ b/media-libs/raptor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/raptor # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.5 2004/01/27 07:17:08 torbenh Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.6 2004/02/13 03:04:30 eradicator Exp $ + + 12 Feb 2004; Jeremy Huddleston <eradicator@gentoo.org> raptor-0.9.12.ebuild, + raptor-0.9.8.ebuild: + Added optional curl and ssl dependencies. Closes bug #34870. 27 Jan 2004; <torbenh@gentoo.org> raptor-0.9.12.ebuild: bumped 0.9.12 to stable diff --git a/media-libs/raptor/raptor-0.9.12.ebuild b/media-libs/raptor/raptor-0.9.12.ebuild index 76b5647d3d6d..7f03b5922fcd 100644 --- a/media-libs/raptor/raptor-0.9.12.ebuild +++ b/media-libs/raptor/raptor-0.9.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-0.9.12.ebuild,v 1.3 2004/01/27 07:17:08 torbenh Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-0.9.12.ebuild,v 1.4 2004/02/13 03:04:30 eradicator Exp $ DESCRIPTION="The RDF Parser Toolkit" HOMEPAGE="http://www.redland.opensource.ac.uk/raptor/" @@ -8,16 +8,20 @@ SRC_URI="http://www.redland.opensource.ac.uk/dist/source/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~sparc" -IUSE="" +IUSE="curl" DEPEND="virtual/glibc + ssl? ( dev-libs/openssl ) + curl? ( net-ftp/curl ) >=dev-libs/libxml2-2.4.24" + S=${WORKDIR}/${P} -src_compile() { - econf || die - emake || die -} +DOC="AUTHORS COPYING COPYING.LIB ChangeLog INSTALL LICENSE.txt NEWS README" +HTML="INSTALL.html LICENSE.html MPL.html NEWS.html README.html" src_install() { - einstall || die + make DESTDIR=${D} install || die + + dodoc ${DOC} + dohtml ${HTML} } diff --git a/media-libs/raptor/raptor-0.9.8.ebuild b/media-libs/raptor/raptor-0.9.8.ebuild index 62797918ac37..a7465fcbcb13 100644 --- a/media-libs/raptor/raptor-0.9.8.ebuild +++ b/media-libs/raptor/raptor-0.9.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-0.9.8.ebuild,v 1.2 2004/01/27 07:17:08 torbenh Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-0.9.8.ebuild,v 1.3 2004/02/13 03:04:30 eradicator Exp $ DESCRIPTION="The RDF Parser Toolkit" HOMEPAGE="http://www.redland.opensource.ac.uk/raptor/" @@ -8,16 +8,24 @@ SRC_URI="http://www.redland.opensource.ac.uk/dist/source/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -IUSE="" +IUSE="curl" DEPEND="virtual/glibc >=dev-libs/libxml2-2.4.24" S=${WORKDIR}/${P} +DOC="AUTHORS COPYING COPYING.LIB ChangeLog INSTALL LICENSE.txt NEWS README" +HTML="INSTALL.html LICENSE.html MPL.html NEWS.html README.html" + src_compile() { - econf - make || die + econf || die + + # borks with multiple threads + emake -j1 || die } src_install() { - einstall + make DESTDIR=${D} install || die + + dodoc ${DOC} + dohtml ${HTML} } |