Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libmicrohttpd: libmicrohttpd-0.9.34.ebuild ChangeLog
Date: Mon, 24 Feb 2014 23:47:09
Message-Id: 20140224234703.396C42004C@flycatcher.gentoo.org
1 blueness 14/02/24 23:47:03
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.34.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.61 net-libs/libmicrohttpd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 2 Feb 2014 11:08:10 -0000 1.60
24 +++ ChangeLog 24 Feb 2014 23:47:03 -0000 1.61
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-libs/libmicrohttpd
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.60 2014/02/02 11:08:10 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.61 2014/02/24 23:47:03 blueness Exp $
30 +
31 +*libmicrohttpd-0.9.34 (24 Feb 2014)
32 +
33 + 24 Feb 2014; Anthony G. Basile <blueness@g.o>
34 + +libmicrohttpd-0.9.34.ebuild,
35 + -files/libmicrohttpd-0.9.28-fix-no-messages.patch:
36 + Version bump
37
38 02 Feb 2014; Agostino Sarubbo <ago@g.o> libmicrohttpd-0.9.32.ebuild:
39 Stable for alpha, wrt bug #487344
40
41
42
43 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.34.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.34.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.34.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libmicrohttpd-0.9.34.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.34.ebuild,v 1.1 2014/02/24 23:47:03 blueness Exp $
53
54 EAPI="5"
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://www.gnu.org/software/libmicrohttpd/"
60 SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
61
62 IUSE="epoll messages ssl static-libs test"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66
67 RDEPEND="ssl? (
68 dev-libs/libgcrypt
69 net-libs/gnutls
70 )"
71
72 DEPEND="${RDEPEND}
73 test? (
74 ssl? ( >=net-misc/curl-7.25.0-r1[ssl] )
75 )"
76
77 S=${WORKDIR}/${MY_P}
78
79 DOCS="AUTHORS NEWS README ChangeLog"
80
81 src_configure() {
82 econf \
83 --enable-bauth \
84 --enable-dauth \
85 --disable-spdy \
86 $(use_enable epoll) \
87 $(use_enable test curl) \
88 $(use_enable messages) \
89 $(use_enable messages postprocessor) \
90 $(use_enable ssl https) \
91 $(use_with ssl gnutls) \
92 $(use_enable static-libs static)
93 }
94
95 src_install() {
96 default
97
98 use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
99 }