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: ChangeLog libmicrohttpd-0.9.19.ebuild libmicrohttpd-0.9.15.ebuild
Date: Sat, 03 Mar 2012 13:59:04
Message-Id: 20120303135845.2E8BD2004C@flycatcher.gentoo.org
1 chithanh 12/03/03 13:58:45
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.19.ebuild
5 Removed: libmicrohttpd-0.9.15.ebuild
6 Log:
7 Version bump, bug #406377.
8
9 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.9 net-libs/libmicrohttpd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 16 Oct 2011 01:27:10 -0000 1.8
25 +++ ChangeLog 3 Mar 2012 13:58:44 -0000 1.9
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/libmicrohttpd
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.8 2011/10/16 01:27:10 chithanh Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.9 2012/03/03 13:58:44 chithanh Exp $
32 +
33 +*libmicrohttpd-0.9.19 (03 Mar 2012)
34 +
35 + 03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
36 + -libmicrohttpd-0.9.15.ebuild, +libmicrohttpd-0.9.19.ebuild:
37 + Version bump, bug #406377.
38
39 *libmicrohttpd-0.9.15 (16 Oct 2011)
40
41
42
43
44 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.19.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.19.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.19.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libmicrohttpd-0.9.19.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.19.ebuild,v 1.1 2012/03/03 13:58:44 chithanh Exp $
54
55 EAPI=2
56
57 MY_P=${P/_/}
58
59 DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application."
60 HOMEPAGE="http://gnunet.org/libmicrohttpd/"
61 SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
62
63 IUSE="messages ssl test"
64 KEYWORDS="~amd64 ~x86"
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67
68 RDEPEND="ssl? (
69 dev-libs/libgcrypt
70 net-libs/gnutls
71 )
72 net-misc/curl"
73 # Some tests fail if curl is built against nss, bug #334067
74 DEPEND="${RDEPEND}
75 test? (
76 ssl? ( || (
77 >=net-misc/curl-7.21[ssl,-nss]
78 >=net-misc/curl-7.21[ssl,gnutls]
79 ) )
80 )"
81
82 S=${WORKDIR}/${MY_P}
83
84 src_configure() {
85 econf \
86 --enable-curl \
87 $(use_enable messages) \
88 $(use_enable ssl https) \
89 $(use_with ssl gnutls)
90 }
91
92 src_compile() {
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 emake install DESTDIR="${D}" || die "make install failed"
98 dodoc AUTHORS NEWS README ChangeLog || die
99 }