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.1.ebuild uriparser-0.7.0.ebuild
Date: Sun, 04 May 2008 18:16:09
Message-Id: E1Jsikn-0004Oo-TU@stork.gentoo.org
1 drac 08/05/04 18:16:05
2
3 Modified: ChangeLog
4 Added: uriparser-0.7.1.ebuild
5 Removed: uriparser-0.7.0.ebuild
6 Log:
7 Version bump with more complete documentation install.
8 (Portage version: 2.1.5_rc6)
9
10 Revision Changes Path
11 1.13 dev-libs/uriparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 14 Apr 2008 16:20:01 -0000 1.12
24 +++ ChangeLog 4 May 2008 18:16:05 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/uriparser
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.12 2008/04/14 16:20:01 drac Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.13 2008/05/04 18:16:05 drac Exp $
30 +
31 +*uriparser-0.7.1 (04 May 2008)
32 +
33 + 04 May 2008; Samuli Suominen <drac@g.o> -uriparser-0.7.0.ebuild,
34 + +uriparser-0.7.1.ebuild:
35 + Version bump with more complete documentation install.
36
37 *uriparser-0.7.0 (14 Apr 2008)
38
39
40
41
42 1.1 dev-libs/uriparser/uriparser-0.7.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uriparser-0.7.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/uriparser-0.7.1.ebuild,v 1.1 2008/05/04 18:16:05 drac Exp $
52
53 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C"
54 HOMEPAGE="http://uriparser.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
60 IUSE="doc"
61
62 RDEPEND=""
63 DEPEND="doc? ( app-doc/doxygen )"
64
65 src_compile() {
66 econf --disable-dependency-tracking
67 emake || die "emake failed"
68
69 if use doc; then
70 cd doc
71 econf
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 THANKS doc/*.txt
79 dohtml doc/*.htm
80
81 if use doc; then
82 dohtml doc/html/*
83 fi
84 }
85
86
87
88 --
89 gentoo-commits@l.g.o mailing list