Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/uriparser: ChangeLog uriparser-0.5.2.ebuild uriparser-0.3.4.ebuild uriparser-0.4.1.ebuild
Date: Thu, 13 Sep 2007 10:58:18
Message-Id: E1IVmHl-0006cs-7s@stork.gentoo.org
1 rbu 07/09/13 10:51:01
2
3 Modified: ChangeLog
4 Added: uriparser-0.5.2.ebuild
5 Removed: uriparser-0.3.4.ebuild uriparser-0.4.1.ebuild
6 Log:
7 Cleanup and version bump. This release introduces reference creation and filename to/from URI conversion.
8 (Portage version: 2.1.3.7)
9
10 Revision Changes Path
11 1.8 dev-libs/uriparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 9 Aug 2007 23:33:55 -0000 1.7
24 +++ ChangeLog 13 Sep 2007 10:51:00 -0000 1.8
25 @@ -1,6 +1,13 @@
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.7 2007/08/09 23:33:55 rbu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.8 2007/09/13 10:51:00 rbu Exp $
30 +
31 +*uriparser-0.5.2 (13 Sep 2007)
32 +
33 + 13 Sep 2007; Robert Buchholz <rbu@g.o> -uriparser-0.3.4.ebuild,
34 + -uriparser-0.4.1.ebuild, +uriparser-0.5.2.ebuild:
35 + Cleanup and version bump. This release introduces reference creation and
36 + filename to/from URI conversion.
37
38 *uriparser-0.5.1 (09 Aug 2007)
39
40
41
42
43 1.1 dev-libs/uriparser/uriparser-0.5.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.5.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.5.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: uriparser-0.5.2.ebuild
49 ===================================================================
50 # Copyright 1999-2007 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.5.2.ebuild,v 1.1 2007/09/13 10:51:00 rbu 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 LICENSE="BSD"
58 SLOT="0"
59
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE="doc"
62
63 DEPEND="doc? ( app-doc/doxygen )"
64 RDEPEND=""
65
66 src_compile() {
67 econf || die "configure failed"
68 emake || die "emake failed"
69
70 if use doc; then
71 ebegin "Creating documentation"
72 cd "${S}/doc"
73 doxygen Doxyfile
74 eend 0
75 fi
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "make install failed"
80 dodoc AUTHORS ChangeLog
81
82 if use doc; then
83 dohtml doc/html/*
84 fi
85 }
86
87
88
89 --
90 gentoo-commits@g.o mailing list