From 27ba62d0c7fcabdc79ce82a064b43d67b3b11cca Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Sat, 31 Oct 2015 15:15:04 -0400 Subject: net-libs/libmicrohttpd: Add a subslot The soname version changed from 10 to 11, so add a matching subslot. Package-Manager: portage-2.2.23_p10 --- .../libmicrohttpd/libmicrohttpd-0.9.45-r1.ebuild | 59 ++++++++++++++++++++++ net-libs/libmicrohttpd/libmicrohttpd-0.9.45.ebuild | 59 ---------------------- 2 files changed, 59 insertions(+), 59 deletions(-) create mode 100644 net-libs/libmicrohttpd/libmicrohttpd-0.9.45-r1.ebuild delete mode 100644 net-libs/libmicrohttpd/libmicrohttpd-0.9.45.ebuild (limited to 'net-libs') diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.45-r1.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.45-r1.ebuild new file mode 100644 index 000000000000..dac0251b6346 --- /dev/null +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.45-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +MY_P="${P/_/}" + +DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application" +HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" +SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/11" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="epoll messages ssl static-libs test" + +RDEPEND="ssl? ( + dev-libs/libgcrypt:0= + net-libs/gnutls + )" + +# We disable tests below because they're broken, +# but if enabled, we'll need this. +DEPEND="${RDEPEND} + test? ( + ssl? ( net-misc/curl[ssl] ) + )" + +S=${WORKDIR}/${MY_P} + +DOCS="AUTHORS NEWS README ChangeLog" + +src_configure() { + econf \ + --enable-bauth \ + --enable-dauth \ + --disable-examples \ + --disable-spdy \ + --enable-postprocessor \ + --runstatedir=/run \ + $(use_enable epoll) \ + $(use_enable test curl) \ + $(use_enable messages) \ + $(use_enable ssl https) \ + $(use_with ssl gnutls) \ + $(use_enable static-libs static) +} + +# tests are broken in the portage environment. +src_test() { + : +} + +src_install() { + default + + use static-libs || find "${ED}" -name '*.la' -delete +} diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.45.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.45.ebuild deleted file mode 100644 index a5624d651fba..000000000000 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.45.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -MY_P="${P/_/}" - -DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application" -HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" -SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" - -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= - net-libs/gnutls - )" - -# We disable tests below because they're broken, -# but if enabled, we'll need this. -DEPEND="${RDEPEND} - test? ( - ssl? ( net-misc/curl[ssl] ) - )" - -S=${WORKDIR}/${MY_P} - -DOCS="AUTHORS NEWS README ChangeLog" - -src_configure() { - econf \ - --enable-bauth \ - --enable-dauth \ - --disable-examples \ - --disable-spdy \ - --enable-postprocessor \ - --runstatedir=/run \ - $(use_enable epoll) \ - $(use_enable test curl) \ - $(use_enable messages) \ - $(use_enable ssl https) \ - $(use_with ssl gnutls) \ - $(use_enable static-libs static) -} - -# tests are broken in the portage environment. -src_test() { - : -} - -src_install() { - default - - use static-libs || find "${ED}" -name '*.la' -delete -} -- cgit v1.2.3-65-gdbad