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.26.ebuild ChangeLog
Date: Sat, 30 Mar 2013 21:11:28
Message-Id: 20130330211124.F27A02171E@flycatcher.gentoo.org
1 blueness 13/03/30 21:11:24
2
3 Modified: ChangeLog
4 Added: libmicrohttpd-0.9.26.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.30 net-libs/libmicrohttpd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 6 Feb 2013 01:20:08 -0000 1.29
24 +++ ChangeLog 30 Mar 2013 21:11:24 -0000 1.30
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.29 2013/02/06 01:20:08 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.30 2013/03/30 21:11:24 blueness Exp $
30 +
31 +*libmicrohttpd-0.9.26 (30 Mar 2013)
32 +
33 + 30 Mar 2013; Anthony G. Basile <blueness@g.o>
34 + +files/libmicrohttpd-0.9.26-fix-doc-build.patch, +libmicrohttpd-0.9.26.ebuild:
35 + Version bump
36
37 *libmicrohttpd-0.9.25 (06 Feb 2013)
38
39
40
41
42 1.1 net-libs/libmicrohttpd/libmicrohttpd-0.9.26.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.26.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.26.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmicrohttpd-0.9.26.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.26.ebuild,v 1.1 2013/03/30 21:11:24 blueness Exp $
52
53 EAPI="5"
54
55 inherit eutils autotools
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://www.gnu.org/software/libmicrohttpd/"
61 SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
62
63 IUSE="messages ssl static-libs test"
64 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67
68 RDEPEND="ssl? (
69 dev-libs/libgcrypt
70 net-libs/gnutls
71 )"
72
73 DEPEND="${RDEPEND}
74 test? (
75 ssl? ( >=net-misc/curl-7.25.0-r1[ssl] )
76 )"
77
78 S=${WORKDIR}/${MY_P}
79
80 DOCS="AUTHORS NEWS README ChangeLog"
81
82 src_prepare() {
83 epatch "${FILESDIR}"/${P}-fix-doc-build.patch
84 eautoreconf
85 }
86
87 src_configure() {
88 econf \
89 --enable-bauth \
90 --enable-dauth \
91 $(use_enable test curl) \
92 $(use_enable messages) \
93 $(use_enable messages postprocessor) \
94 $(use_enable ssl https) \
95 $(use_with ssl gnutls) \
96 $(use_enable static-libs static)
97 }
98
99 src_install() {
100 default
101
102 use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
103 }