summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2014-03-04 22:30:42 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2014-03-04 22:30:42 +0000
commitea6e12e467490248c6be7143b569d5e398e7270f (patch)
treee133bb7b87a1feebd4165b899d2b832d65570a1b /media-libs/raptor
parentEAPI bump, add subslot dependency on dev-libs/icu (diff)
downloadgentoo-2-ea6e12e467490248c6be7143b569d5e398e7270f.tar.gz
gentoo-2-ea6e12e467490248c6be7143b569d5e398e7270f.tar.bz2
gentoo-2-ea6e12e467490248c6be7143b569d5e398e7270f.zip
Remove old so we can close bug 468042
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'media-libs/raptor')
-rw-r--r--media-libs/raptor/ChangeLog5
-rw-r--r--media-libs/raptor/raptor-2.0.8.ebuild60
2 files changed, 4 insertions, 61 deletions
diff --git a/media-libs/raptor/ChangeLog b/media-libs/raptor/ChangeLog
index 6b17071be5cf..86d686590ea3 100644
--- a/media-libs/raptor/ChangeLog
+++ b/media-libs/raptor/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/raptor
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.156 2014/02/04 23:33:05 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.157 2014/03/04 22:30:42 dilfridge Exp $
+
+ 04 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> -raptor-2.0.8.ebuild:
+ Remove old so we can close bug 468042
04 Feb 2014; Andreas K. Huettel <dilfridge@gentoo.org> raptor-2.0.8.ebuild,
raptor-2.0.9.ebuild:
diff --git a/media-libs/raptor/raptor-2.0.8.ebuild b/media-libs/raptor/raptor-2.0.8.ebuild
deleted file mode 100644
index eb05451c50be..000000000000
--- a/media-libs/raptor/raptor-2.0.8.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.8.ebuild,v 1.13 2014/02/04 23:33:05 dilfridge Exp $
-
-EAPI=4
-inherit eutils libtool
-
-MY_PN=${PN}2
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="The RDF Parser Toolkit"
-HOMEPAGE="http://librdf.org/raptor/"
-SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
-SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="+curl debug json static-libs unicode"
-
-RDEPEND="dev-libs/libxml2
- dev-libs/libxslt
- curl? ( net-misc/curl )
- json? ( dev-libs/yajl )
- unicode? ( dev-libs/icu )
- !media-libs/raptor:0"
-DEPEND="${RDEPEND}
- sys-devel/flex
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS="AUTHORS ChangeLog NEWS NOTICE README"
-
-src_prepare() {
- elibtoolize # Keep this for ~*-fbsd
-}
-
-src_configure() {
- # FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
-
- local myconf='--with-www=xml'
- use curl && myconf='--with-www=curl'
-
- econf \
- $(use_enable static-libs static) \
- $(use_enable debug) \
- $(use unicode && echo --with-icu-config="${EPREFIX}"/usr/bin/icu-config) \
- $(use_with json yajl) \
- --with-xml2-config=no \
- --with-curl-config=no \
- --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
- ${myconf}
-}
-
-src_install() {
- default
- dohtml {NEWS,README,RELEASE,UPGRADING}.html
- prune_libtool_files --all
- dosym /usr/share/doc/${PF}/html/${MY_PN} /usr/share/gtk-doc/html/${MY_PN}
-}