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.11.ebuild libmicrohttpd-0.9.8.ebuild
Date: Mon, 30 May 2011 10:41:50
Message-Id: 20110530104140.6907F20054@flycatcher.gentoo.org
1 chithanh 11/05/30 10:41:40
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.11.ebuild
5 Removed: libmicrohttpd-0.9.8.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha34/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.6 net-libs/libmicrohttpd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 20 Mar 2011 21:42:39 -0000 1.5
25 +++ ChangeLog 30 May 2011 10:41:39 -0000 1.6
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.5 2011/03/20 21:42:39 chithanh Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.6 2011/05/30 10:41:39 chithanh Exp $
31 +
32 +*libmicrohttpd-0.9.11 (30 May 2011)
33 +
34 + 30 May 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 + -libmicrohttpd-0.9.8.ebuild, +libmicrohttpd-0.9.11.ebuild:
36 + Version bump.
37
38 *libmicrohttpd-0.9.8 (20 Mar 2011)
39
40
41
42
43 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.11.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.11.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.11.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libmicrohttpd-0.9.11.ebuild
49 ===================================================================
50 # Copyright 1999-2011 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.11.ebuild,v 1.1 2011/05/30 10:41:39 chithanh Exp $
53
54 EAPI=2
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 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 net-misc/curl"
72 # Some tests fail if curl is built against nss, bug #334067
73 DEPEND="${RDEPEND}
74 test? (
75 ssl? ( || (
76 >=net-misc/curl-7.21[ssl,-nss]
77 >=net-misc/curl-7.21[ssl,gnutls]
78 ) )
79 )"
80
81 S=${WORKDIR}/${MY_P}
82
83 src_configure() {
84 econf \
85 --enable-curl \
86 $(use_enable messages) \
87 $(use_enable ssl https) \
88 $(use_with ssl gnutls)
89 }
90
91 src_compile() {
92 emake || die "emake failed"
93 }
94
95 src_install() {
96 emake install DESTDIR="${D}" || die "make install failed"
97 dodoc AUTHORS NEWS README ChangeLog || die
98 }