Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/uriparser: ChangeLog uriparser-0.7.0.ebuild uriparser-0.5.1.ebuild
Date: Mon, 14 Apr 2008 16:20:06
Message-Id: E1JlRPV-0005Dn-PD@stork.gentoo.org
1 drac 08/04/14 16:20:01
2
3 Modified: ChangeLog
4 Added: uriparser-0.7.0.ebuild
5 Removed: uriparser-0.5.1.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.1.5_rc3)
9
10 Revision Changes Path
11 1.12 dev-libs/uriparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 27 Oct 2007 17:27:07 -0000 1.11
24 +++ ChangeLog 14 Apr 2008 16:20:01 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/uriparser
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.11 2007/10/27 17:27:07 nixnut Exp $
29 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.12 2008/04/14 16:20:01 drac Exp $
31 +
32 +*uriparser-0.7.0 (14 Apr 2008)
33 +
34 + 14 Apr 2008; Samuli Suominen <drac@g.o> -uriparser-0.5.1.ebuild,
35 + +uriparser-0.7.0.ebuild:
36 + Version bump.
37
38 27 Oct 2007; nixnut <nixnut@g.o> uriparser-0.5.2.ebuild:
39 Stable on ppc wrt bug 196074
40
41
42
43 1.1 dev-libs/uriparser/uriparser-0.7.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: uriparser-0.7.0.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/uriparser-0.7.0.ebuild,v 1.1 2008/04/14 16:20:01 drac Exp $
53
54 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C"
55 HOMEPAGE="http://uriparser.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE="doc"
62
63 RDEPEND=""
64 DEPEND="doc? ( app-doc/doxygen )"
65
66 src_compile() {
67 econf --disable-dependency-tracking
68 emake || die "emake failed"
69
70 if use doc; then
71 cd "${S}/doc"
72 doxygen Doxyfile || die "doxygen failed."
73 fi
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "make install failed"
78 dodoc AUTHORS ChangeLog
79
80 if use doc; then
81 dohtml doc/html/*
82 fi
83 }
84
85
86
87 --
88 gentoo-commits@l.g.o mailing list