diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-02-06 22:11:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-02-06 22:11:14 +0000 |
commit | f9d4e71bb4436f5f81edb55469960cfd499debec (patch) | |
tree | 00e8146b87343c31a471c20eed8d49dd7460c19c /media-libs/raptor | |
parent | amd64 lovin (diff) | |
download | gentoo-2-f9d4e71bb4436f5f81edb55469960cfd499debec.tar.gz gentoo-2-f9d4e71bb4436f5f81edb55469960cfd499debec.tar.bz2 gentoo-2-f9d4e71bb4436f5f81edb55469960cfd499debec.zip |
Version bump.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-libs/raptor')
-rw-r--r-- | media-libs/raptor/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/raptor/files/digest-raptor-1.4.5 | 1 | ||||
-rw-r--r-- | media-libs/raptor/raptor-1.4.5.ebuild | 67 |
3 files changed, 74 insertions, 1 deletions
diff --git a/media-libs/raptor/ChangeLog b/media-libs/raptor/ChangeLog index 97c352d42377..2a669e648fca 100644 --- a/media-libs/raptor/ChangeLog +++ b/media-libs/raptor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/raptor # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.21 2005/01/03 09:36:16 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.22 2005/02/06 22:11:14 vapier Exp $ + +*raptor-1.4.5 (06 Feb 2005) + + 06 Feb 2005; Mike Frysinger <vapier@gentoo.org> +raptor-1.4.5.ebuild: + Version bump. 03 Jan 2005; Markus Rothe <corsair@gentoo.org> raptor-1.4.2.ebuild: Added ~ppc64 to KEYWORDS diff --git a/media-libs/raptor/files/digest-raptor-1.4.5 b/media-libs/raptor/files/digest-raptor-1.4.5 new file mode 100644 index 000000000000..4092cc01f722 --- /dev/null +++ b/media-libs/raptor/files/digest-raptor-1.4.5 @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000000..70558e80f7ea --- /dev/null +++ b/media-libs/raptor/raptor-1.4.5.ebuild @@ -0,0 +1,67 @@ +# 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.1 2005/02/06 22:11:14 vapier Exp $ + +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 ~ppc ~ppc-macos sparc x86 ~ppc64" +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 INSTALL NEWS README" +HTML="INSTALL.html NEWS.html README.html" + +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} +} |