diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-28 03:46:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-28 03:46:54 +0000 |
commit | 0b05782091fb9995a1abe173c0bc2d5beffce82c (patch) | |
tree | 9274cf389c48eda48c5d95e4f7646a77c532df52 /media-libs/raptor | |
parent | cuddle function brackets (diff) | |
download | gentoo-2-0b05782091fb9995a1abe173c0bc2d5beffce82c.tar.gz gentoo-2-0b05782091fb9995a1abe173c0bc2d5beffce82c.tar.bz2 gentoo-2-0b05782091fb9995a1abe173c0bc2d5beffce82c.zip |
old
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'media-libs/raptor')
-rw-r--r-- | media-libs/raptor/files/digest-raptor-1.4.5 | 1 | ||||
-rw-r--r-- | media-libs/raptor/raptor-1.4.5.ebuild | 74 |
2 files changed, 0 insertions, 75 deletions
diff --git a/media-libs/raptor/files/digest-raptor-1.4.5 b/media-libs/raptor/files/digest-raptor-1.4.5 deleted file mode 100644 index 4092cc01f722..000000000000 --- a/media-libs/raptor/files/digest-raptor-1.4.5 +++ /dev/null @@ -1 +0,0 @@ -MD5 6ae71326911a0e966de83605b885f8dc raptor-1.4.5.tar.gz 980107 diff --git a/media-libs/raptor/raptor-1.4.5.ebuild b/media-libs/raptor/raptor-1.4.5.ebuild deleted file mode 100644 index c8e753c7fa46..000000000000 --- a/media-libs/raptor/raptor-1.4.5.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.5.ebuild,v 1.5 2005/10/31 12:28:04 flameeyes Exp $ - -inherit eutils - -DESCRIPTION="The RDF Parser Toolkit" -HOMEPAGE="http://librdf.org/raptor/" -SRC_URI="http://librdf.org/dist/source/${P}.tar.gz" - -LICENSE="LGPL-2 Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ia64 ppc ppc64 ~ppc-macos sparc x86" -IUSE="curl xml2 gnome ssl" - -DEPEND="virtual/libc - gnome? ( >=dev-libs/glib-2.2.1 dev-util/pkgconfig ) - xml2? ( >=dev-libs/libxml2-2.4.0 ) - !xml2? ( dev-libs/expat ) - ssl? ( dev-libs/openssl ) - curl? ( net-misc/curl )" -RDEPEND="virtual/libc - gnome? ( >=dev-libs/glib-2.2.1 ) - xml2? ( >=dev-libs/libxml2-2.4.0 ) - !xml2? ( dev-libs/expat ) - ssl? ( dev-libs/openssl ) - curl? ( net-misc/curl )" - -# compilation with libwww currently breaks and for using libfetch I didn't find the right USE flag -#IUSE="curl xml2 libwww gnome" -#DEPEND="virtual/libc -# gnome? ( >=dev-libs/glib-2.2.1 dev-util/pkgconfig ) -# xml2? ( >=dev-libs/libxml2-2.4.0 ) : ( dev-libs/expat ) -# ssl? ( dev-libs/openssl ) -# curl? ( net-misc/curl ) : ( !xml2? ( libwww? ( net-libs/libwww ) ) ) -# " -#RDEPEND="virtual/libc -# gnome? ( >=dev-libs/glib-2.2.1 ) -# xml2? ( >=dev-libs/libxml2-2.4.0 ) : ( dev-libs/expat ) -# ssl? ( dev-libs/openssl ) -# curl? ( net-misc/curl ) : ( !xml2? ( libwww? ( net-libs/libwww ) ) )" - -DOC="AUTHORS ChangeLog NEWS README" -HTML="NEWS.html README.html" - -src_unpack() { - unpack ${A} - epunt_cxx -} - -src_compile() { - myraptorconf="" - - use xml2 \ - && myraptorconf="${myraptorconf} --with-xml-parser=libxml" \ - || myraptorconf="${myraptorconf} --with-xml-parser=expat" - - use curl && myraptorconf="${myraptorconf} --with-www=curl" \ - || use xml2 && myraptorconf="${myraptorconf} --with-www=xml" \ - || myraptorconf="${myraptorconf} --with-www=none" -# || use libwww && myraptorconf="${myraptorconf} --with-www=libwww" \ - econf \ - `use_enable gnome nfc-check` \ - ${myraptorconf} \ - || die "configure failed" - emake || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die - - dodoc ${DOC} - dohtml ${HTML} -} |