Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/raptor/
Date: Wed, 03 Oct 2018 14:51:22
Message-Id: 1538578234.16fc50a15d0996812009506989b6847406001491.asturm@gentoo
1 commit: 16fc50a15d0996812009506989b6847406001491
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 3 14:50:11 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 14:50:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16fc50a1
7
8 media-libs/raptor: Drop 2.0.15 (r0)
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-libs/raptor/raptor-2.0.15.ebuild | 67 ----------------------------------
14 1 file changed, 67 deletions(-)
15
16 diff --git a/media-libs/raptor/raptor-2.0.15.ebuild b/media-libs/raptor/raptor-2.0.15.ebuild
17 deleted file mode 100644
18 index 6cc7c0b3cd5..00000000000
19 --- a/media-libs/raptor/raptor-2.0.15.ebuild
20 +++ /dev/null
21 @@ -1,67 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit libtool
27 -
28 -MY_PN=${PN}2
29 -MY_P=${MY_PN}-${PV}
30 -
31 -DESCRIPTION="The RDF Parser Toolkit"
32 -HOMEPAGE="http://librdf.org/raptor/"
33 -SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"
34 -
35 -LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
36 -SLOT="2"
37 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 -IUSE="+curl debug json static-libs unicode"
39 -
40 -RDEPEND="dev-libs/libxml2
41 - dev-libs/libxslt
42 - curl? ( net-misc/curl )
43 - json? ( dev-libs/yajl )
44 - unicode? ( dev-libs/icu:= )
45 - !media-libs/raptor:0"
46 -DEPEND="${RDEPEND}
47 - >=sys-devel/bison-3
48 - >=sys-devel/flex-2.5.36
49 - virtual/pkgconfig"
50 -
51 -S="${WORKDIR}/${MY_P}"
52 -
53 -DOCS="AUTHORS ChangeLog NEWS NOTICE README"
54 -
55 -src_prepare() {
56 - default
57 - elibtoolize # Keep this for ~*-fbsd
58 -}
59 -
60 -src_configure() {
61 - # FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
62 -
63 - local myconf='--with-www=xml'
64 - use curl && myconf='--with-www=curl'
65 -
66 - econf \
67 - $(use_enable static-libs static) \
68 - $(use_enable debug) \
69 - $(usex unicode "--with-icu-config=\"${EPREFIX}\"/usr/bin/icu-config" '') \
70 - $(use_with json yajl) \
71 - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
72 - ${myconf}
73 -}
74 -
75 -src_test() {
76 - emake -j1 test
77 -}
78 -
79 -src_install() {
80 - default
81 - docinto html
82 - dodoc {NEWS,README,RELEASE,UPGRADING}.html
83 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
84 -
85 - # https://bugs.gentoo.org/467768
86 - local _rdocdir=/usr/share/doc/${PF}/html/${MY_PN}
87 - [[ -d ${ED}/${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${MY_PN}
88 -}