Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/uriparser: uriparser-0.7.4.ebuild ChangeLog
Date: Sun, 01 Mar 2009 18:14:04
Message-Id: E1LdqAt-0006QI-9L@stork.gentoo.org
1 patrick 09/03/01 18:14:03
2
3 Modified: ChangeLog
4 Added: uriparser-0.7.4.ebuild
5 Log:
6 Bump to 0.7.4, closes #253648
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 dev-libs/uriparser/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 21 Sep 2008 16:38:32 -0000 1.19
23 +++ ChangeLog 1 Mar 2009 18:14:03 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/uriparser
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.19 2008/09/21 16:38:32 rbu Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.20 2009/03/01 18:14:03 patrick Exp $
30 +
31 +*uriparser-0.7.4 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o> +uriparser-0.7.4.ebuild:
34 + Bump to 0.7.4, closes #253648
35
36 *uriparser-0.7.2 (21 Sep 2008)
37
38
39
40
41 1.1 dev-libs/uriparser/uriparser-0.7.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/uriparser/uriparser-0.7.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: uriparser-0.7.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/uriparser-0.7.4.ebuild,v 1.1 2009/03/01 18:14:03 patrick Exp $
51
52 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C"
53 HOMEPAGE="http://uriparser.sourceforge.net/"
54 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
55
56 LICENSE="BSD"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
59 IUSE="doc"
60
61 RDEPEND=""
62 DEPEND="doc? ( app-doc/doxygen )"
63
64 src_compile() {
65 econf --disable-dependency-tracking
66 emake || die "emake failed"
67
68 if use doc; then
69 cd doc
70 econf
71 doxygen Doxyfile || die "doxygen failed."
72 fi
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "make install failed"
77 dodoc AUTHORS ChangeLog THANKS doc/*.txt
78 dohtml doc/*.htm
79
80 if use doc; then
81 dohtml doc/html/*
82 fi
83 }