diff options
author | 2021-04-28 21:12:00 +0300 | |
---|---|---|
committer | 2021-05-10 09:29:48 +0000 | |
commit | f85657ad52f323fed27d29447505fff0b39e89b8 (patch) | |
tree | ddf7bc01b69a3b84352f5ff4892552d526052081 /net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild | |
parent | net-mail/cyrus-imapd: tidy up ebuild for 3.4.1 (diff) | |
download | gentoo-f85657ad52f323fed27d29447505fff0b39e89b8.tar.gz gentoo-f85657ad52f323fed27d29447505fff0b39e89b8.tar.bz2 gentoo-f85657ad52f323fed27d29447505fff0b39e89b8.zip |
net-libs/libmicrohttpd: new upstream version 0.9.73
Signed-off-by: Karlson2k (Evgeny Grin) <k2k@narod.ru>
Closes: https://github.com/gentoo/gentoo/pull/20582
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild')
-rw-r--r-- | net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild new file mode 100644 index 000000000000..b86323177805 --- /dev/null +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit multilib-minimal + +MY_P="${P/_/}" + +DESCRIPTION="Small C library 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/12" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+epoll ssl static-libs test thread-names" +RESTRICT="!test? ( test )" + +BDEPEND=" + ssl? ( virtual/pkgconfig ) + test? ( virtual/pkgconfig ) + " + +RDEPEND="ssl? ( >net-libs/gnutls-2.12.20:= )" + +DEPEND="${RDEPEND} + test? ( net-misc/curl[ssl?] ) + virtual/pkgconfig + " + +S=${WORKDIR}/${MY_P} + +DOCS="AUTHORS NEWS README ChangeLog" + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf \ + --enable-shared \ + $(use_enable static-libs static) \ + --disable-nls \ + --enable-bauth \ + --enable-dauth \ + --disable-examples \ + --enable-messages \ + --enable-postprocessor \ + --enable-httpupgrade \ + --disable-experimental \ + --disable-heavy-tests \ + $(use_enable thread-names) \ + $(use_enable epoll) \ + $(use_enable test curl) \ + $(use_enable ssl https) \ + $(use_with ssl gnutls) +} + +multilib_src_install_all() { + default + + use static-libs || find "${ED}" -name '*.la' -delete +} |