Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libmicrohttpd: libmicrohttpd-0.9.20.ebuild ChangeLog
Date: Sat, 09 Jun 2012 22:35:59
Message-Id: 20120609223542.C59D32004B@flycatcher.gentoo.org
1 chithanh 12/06/09 22:35:42
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.20.ebuild
5 Log:
6 Version bump. Drop runtime dependency on curl, bug #417911. Update for new use_expand, bug #412445.
7
8 (Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 net-libs/libmicrohttpd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 22 May 2012 22:54:13 -0000 1.12
24 +++ ChangeLog 9 Jun 2012 22:35:42 -0000 1.13
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-libs/libmicrohttpd
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.12 2012/05/22 22:54:13 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.13 2012/06/09 22:35:42 chithanh Exp $
30 +
31 +*libmicrohttpd-0.9.20 (09 Jun 2012)
32 +
33 + 09 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +libmicrohttpd-0.9.20.ebuild:
35 + Version bump. Drop runtime dependency on curl, bug #417911. Update for new
36 + use_expand, bug #412445.
37
38 22 May 2012; Jeff Horelick <jdhore@g.o> libmicrohttpd-0.9.19.ebuild:
39 marked x86 per bug 415907
40
41
42
43 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.20.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.20.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.20.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libmicrohttpd-0.9.20.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.20.ebuild,v 1.1 2012/06/09 22:35:42 chithanh Exp $
53
54 EAPI=4
55
56 MY_P=${P/_/}
57
58 DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application."
59 HOMEPAGE="http://gnunet.org/libmicrohttpd/"
60 SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
61
62 IUSE="messages ssl static-libs test"
63 KEYWORDS="~amd64 ~x86"
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66
67 RDEPEND="ssl? (
68 dev-libs/libgcrypt
69 net-libs/gnutls
70 )"
71 # Some tests fail if curl is built against nss, bug #334067
72 DEPEND="${RDEPEND}
73 test? (
74 ssl? ( || (
75 >=net-misc/curl-7.21[ssl,-nss(-),-curl_ssl_nss(-)]
76 >=net-misc/curl-7.21[ssl,gnutls]
77 ) )
78 )"
79
80 S=${WORKDIR}/${MY_P}
81
82 DOCS="AUTHORS NEWS README ChangeLog"
83
84 src_configure() {
85 econf \
86 $(use_enable test curl) \
87 $(use_enable messages) \
88 $(use_enable ssl https) \
89 $(use_with ssl gnutls) \
90 $(use_enable static-libs static)
91 }
92
93 src_install() {
94 default
95
96 use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
97 }