summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-10-18 16:52:48 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-10-18 16:52:48 +0000
commit72cf0c8764d262d790f027d9b0376ec2259e0ac0 (patch)
tree60c0ffd1beca84fa6aeb3b986ebde79b5603c45a /media-libs/raptor
parentppc/ppc64 stable wrt #382641 (diff)
downloadgentoo-2-72cf0c8764d262d790f027d9b0376ec2259e0ac0.tar.gz
gentoo-2-72cf0c8764d262d790f027d9b0376ec2259e0ac0.tar.bz2
gentoo-2-72cf0c8764d262d790f027d9b0376ec2259e0ac0.zip
old
(Portage version: 2.2.0_alpha67/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/raptor')
-rw-r--r--media-libs/raptor/ChangeLog5
-rw-r--r--media-libs/raptor/raptor-1.4.20.ebuild59
2 files changed, 4 insertions, 60 deletions
diff --git a/media-libs/raptor/ChangeLog b/media-libs/raptor/ChangeLog
index 43a34e57aa28..529123b4d0ff 100644
--- a/media-libs/raptor/ChangeLog
+++ b/media-libs/raptor/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/raptor
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.110 2011/10/18 16:51:50 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.111 2011/10/18 16:52:48 ssuominen Exp $
+
+ 18 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> -raptor-1.4.20.ebuild:
+ old
18 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> raptor-2.0.4.ebuild:
ppc/ppc64 stable wrt #382641
diff --git a/media-libs/raptor/raptor-1.4.20.ebuild b/media-libs/raptor/raptor-1.4.20.ebuild
deleted file mode 100644
index c8028024ccda..000000000000
--- a/media-libs/raptor/raptor-1.4.20.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.20.ebuild,v 1.11 2011/07/24 08:56:50 angelos Exp $
-
-EAPI=2
-inherit eutils libtool
-
-DESCRIPTION="The RDF Parser Toolkit"
-HOMEPAGE="http://librdf.org/raptor"
-SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
-
-LICENSE="LGPL-2.1 Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="curl debug unicode xml"
-
-RDEPEND="unicode? ( dev-libs/glib:2 )
- xml? ( >=dev-libs/libxml2-2.6.8 )
- !xml? ( dev-libs/expat )
- curl? ( net-misc/curl )
- dev-libs/libxslt"
-DEPEND="${RDEPEND}
- sys-devel/flex
- dev-util/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-2.0.3-curl-headers.patch
- epunt_cxx
- elibtoolize # Required by FreeBSD .so versioning
-}
-
-src_configure() {
- local myconf
-
- if use xml; then
- myconf="${myconf} --with-xml-parser=libxml"
- else
- myconf="${myconf} --with-xml-parser=expat"
- fi
-
- if use curl; then
- myconf="${myconf} --with-www=curl"
- elif use xml; then
- myconf="${myconf} --with-www=xml"
- else
- myconf="${myconf} --with-www=none"
- fi
-
- econf \
- $(use_enable unicode nfc-check) \
- $(use_enable debug) \
- ${myconf}
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS NOTICE README
- dohtml NEWS.html README.html RELEASE.html
-}