Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.18.ebuild
Date: Tue, 05 Aug 2008 14:56:30
Message-Id: E1KQNxb-0005hL-KX@stork.gentoo.org
1 aballier 08/08/05 14:56:27
2
3 Modified: ChangeLog
4 Added: raptor-1.4.18.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.25.7 x86_64)
8
9 Revision Changes Path
10 1.59 media-libs/raptor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 12 May 2008 09:39:42 -0000 1.58
23 +++ ChangeLog 5 Aug 2008 14:56:27 -0000 1.59
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/raptor
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.58 2008/05/12 09:39:42 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.59 2008/08/05 14:56:27 aballier Exp $
29 +
30 +*raptor-1.4.18 (05 Aug 2008)
31 +
32 + 05 Aug 2008; Alexis Ballier <aballier@g.o> +raptor-1.4.18.ebuild:
33 + version bump
34
35 12 May 2008; Alexis Ballier <aballier@g.o> raptor-1.4.16.ebuild,
36 raptor-1.4.17.ebuild:
37
38
39
40 1.1 media-libs/raptor/raptor-1.4.18.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.18.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.18.ebuild?rev=1.1&content-type=text/plain
44
45 Index: raptor-1.4.18.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.18.ebuild,v 1.1 2008/08/05 14:56:27 aballier Exp $
50
51 inherit eutils
52
53 DESCRIPTION="The RDF Parser Toolkit"
54 HOMEPAGE="http://librdf.org/raptor"
55 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
56
57 LICENSE="LGPL-2.1 Apache-2.0"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
60 IUSE="curl unicode xml"
61
62 RDEPEND="unicode? ( >=dev-libs/glib-2 )
63 xml? ( >=dev-libs/libxml2-2.6.8 )
64 !xml? ( dev-libs/expat )
65 curl? ( net-misc/curl )
66 dev-libs/libxslt"
67 DEPEND="${RDEPEND}
68 sys-devel/flex
69 dev-util/pkgconfig"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epunt_cxx
75 }
76
77 src_compile() {
78 local myconf=""
79
80 if use xml; then
81 myconf="${myconf} --with-xml-parser=libxml"
82 else
83 myconf="${myconf} --with-xml-parser=expat"
84 fi
85
86 if use curl; then
87 myconf="${myconf} --with-www=curl"
88 elif use xml; then
89 myconf="${myconf} --with-www=xml"
90 else
91 myconf="${myconf} --with-www=none"
92 fi
93
94 econf $(use_enable unicode nfc-check) \
95 ${myconf}
96
97 emake || die "emake failed."
98 }
99
100 src_install() {
101 emake DESTDIR="${D}" install || die "emake install failed."
102 dodoc AUTHORS ChangeLog NEWS NOTICE README
103 dohtml NEWS.html README.html RELEASE.html
104 }