Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/uriparser: ChangeLog uriparser-0.8.2.ebuild
Date: Tue, 28 Apr 2015 14:40:05
Message-Id: 20150427190256.64E3798E@oystercatcher.gentoo.org
1 sping 15/04/27 19:02:56
2
3 Modified: ChangeLog
4 Added: uriparser-0.8.2.ebuild
5 Log:
6 dev-libs/uriparser: 0.8.2
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
9
10 Revision Changes Path
11 1.50 dev-libs/uriparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 21 Nov 2014 17:04:09 -0000 1.49
24 +++ ChangeLog 27 Apr 2015 19:02:56 -0000 1.50
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/uriparser
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.49 2014/11/21 17:04:09 sping Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.50 2015/04/27 19:02:56 sping Exp $
31 +
32 +*uriparser-0.8.2 (27 Apr 2015)
33 +
34 + 27 Apr 2015; Sebastian Pipping <sping@g.o> +uriparser-0.8.2.ebuild:
35 + Bump to 0.8.2
36
37 21 Nov 2014; Sebastian Pipping <sping@g.o> uriparser-0.8.1.ebuild,
38 +files/uriparser-0.8.1-doc-install.patch:
39
40
41
42 1.1 dev-libs/uriparser/uriparser-0.8.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uriparser-0.8.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 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.8.2.ebuild,v 1.1 2015/04/27 19:02:56 sping Exp $
52
53 EAPI=4
54
55 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C"
56 HOMEPAGE="http://uriparser.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
62 IUSE="doc qt4 test unicode"
63
64 RDEPEND=""
65 DEPEND="virtual/pkgconfig
66 doc? ( >=app-doc/doxygen-1.5.8
67 qt4? ( dev-qt/qthelp:4 ) )
68 test? ( >=dev-util/cpptest-1.1.1 )"
69
70 REQUIRED_USE="test? ( unicode )"
71
72 src_configure() {
73 econf \
74 --disable-sizedown \
75 $(use_enable test) \
76 --enable-char \
77 $(use_enable unicode wchar_t) \
78 $(use_enable doc) \
79 --disable-dependency-tracking \
80 --docdir=/usr/share/doc/${PF}/
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "make install failed"
85 dodoc AUTHORS ChangeLog THANKS || die
86
87 if use doc && use qt4; then
88 insinto /usr/share/doc/${PF}/
89 doins doc/*.qch || die # Using doins to avoid dodoc's compression
90 fi
91 }