summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-05-18 16:32:52 +0000
committerMike Frysinger <vapier@gentoo.org>2015-05-18 16:32:52 +0000
commitdb6b4943417d96871e4e464bc2fe9ebcbdbde50e (patch)
tree3c022881f9a400a33c74a02f086170d7ae9c3ae9 /net-libs/libmicrohttpd
parentVersion bump, needed by www-apps/rt (diff)
downloadgentoo-2-db6b4943417d96871e4e464bc2fe9ebcbdbde50e.tar.gz
gentoo-2-db6b4943417d96871e4e464bc2fe9ebcbdbde50e.tar.bz2
gentoo-2-db6b4943417d96871e4e464bc2fe9ebcbdbde50e.zip
Disable building of examples as they are not actually installed; fix from Nam Nguyen (Chromium OS).
(Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'net-libs/libmicrohttpd')
-rw-r--r--net-libs/libmicrohttpd/ChangeLog6
-rw-r--r--net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild9
2 files changed, 10 insertions, 5 deletions
diff --git a/net-libs/libmicrohttpd/ChangeLog b/net-libs/libmicrohttpd/ChangeLog
index 597fef5c70e3..9c5516fb3cd1 100644
--- a/net-libs/libmicrohttpd/ChangeLog
+++ b/net-libs/libmicrohttpd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/libmicrohttpd
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.94 2015/05/14 11:55:27 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.95 2015/05/18 16:32:52 vapier Exp $
+
+ 18 May 2015; Mike Frysinger <vapier@gentoo.org> libmicrohttpd-0.9.42.ebuild:
+ Disable building of examples as they are not actually installed; fix from Nam
+ Nguyen (Chromium OS).
14 May 2015; Anthony G. Basile <blueness@gentoo.org> ChangeLog:
Fix gpg signature.
diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild
index 746c8e2c0fcb..aa866d4efc41 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild,v 1.1 2015/05/14 11:10:34 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.42.ebuild,v 1.2 2015/05/18 16:32:52 vapier Exp $
EAPI="5"
@@ -10,10 +10,10 @@ DESCRIPTION="A small C library that makes it easy to run an HTTP server as part
HOMEPAGE="http://www.gnu.org/software/libmicrohttpd/"
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
-IUSE="epoll messages ssl static-libs test"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
LICENSE="LGPL-2.1"
SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="epoll messages ssl static-libs test"
RDEPEND="ssl? (
dev-libs/libgcrypt:0
@@ -33,6 +33,7 @@ src_configure() {
econf \
--enable-bauth \
--enable-dauth \
+ --disable-examples \
--disable-spdy \
$(use_enable epoll) \
$(use_enable test curl) \
@@ -46,5 +47,5 @@ src_configure() {
src_install() {
default
- use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
+ use static-libs || find "${ED}" -name '*.la' -delete
}