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.32.ebuild ChangeLog
Date: Tue, 03 Dec 2013 21:46:44
Message-Id: 20131203214638.ACAD62004B@flycatcher.gentoo.org
1 blueness 13/12/03 21:46:38
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.32.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.46 net-libs/libmicrohttpd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 25 Nov 2013 20:57:09 -0000 1.45
24 +++ ChangeLog 3 Dec 2013 21:46:38 -0000 1.46
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libmicrohttpd
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.45 2013/11/25 20:57:09 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.46 2013/12/03 21:46:38 blueness Exp $
30 +
31 +*libmicrohttpd-0.9.32 (03 Dec 2013)
32 +
33 + 03 Dec 2013; Anthony G. Basile <blueness@g.o>
34 + +libmicrohttpd-0.9.32.ebuild:
35 + Version bump
36
37 25 Nov 2013; Jeroen Roovers <jer@g.o> libmicrohttpd-0.9.28.ebuild,
38 libmicrohttpd-0.9.30.ebuild, libmicrohttpd-0.9.31.ebuild:
39
40
41
42 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.32.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.32.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.32.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmicrohttpd-0.9.32.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.32.ebuild,v 1.1 2013/12/03 21:46:38 blueness Exp $
52
53 EAPI="5"
54
55 MY_P="${P/_/}"
56
57 DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application."
58 HOMEPAGE="http://www.gnu.org/software/libmicrohttpd/"
59 SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
60
61 IUSE="epoll messages ssl static-libs test"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65
66 RDEPEND="ssl? (
67 dev-libs/libgcrypt
68 net-libs/gnutls
69 )"
70
71 DEPEND="${RDEPEND}
72 test? (
73 ssl? ( >=net-misc/curl-7.25.0-r1[ssl] )
74 )"
75
76 S=${WORKDIR}/${MY_P}
77
78 DOCS="AUTHORS NEWS README ChangeLog"
79
80 src_configure() {
81 econf \
82 --enable-bauth \
83 --enable-dauth \
84 --disable-spdy \
85 $(use_enable epoll) \
86 $(use_enable test curl) \
87 $(use_enable messages) \
88 $(use_enable messages postprocessor) \
89 $(use_enable ssl https) \
90 $(use_with ssl gnutls) \
91 $(use_enable static-libs static)
92 }
93
94 src_install() {
95 default
96
97 use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
98 }