From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 457F9138359 for ; Sun, 22 Nov 2020 16:01:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 618DEE0788; Sun, 22 Nov 2020 16:01:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 410E7E0788 for ; Sun, 22 Nov 2020 16:01:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E2A31340DFB for ; Sun, 22 Nov 2020 16:01:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6911D42C for ; Sun, 22 Nov 2020 16:01:23 +0000 (UTC) From: "Erik Mackdanz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Erik Mackdanz" Message-ID: <1606060866.795c402bc6547bacb4a570885ccec543305b689e.stasibear@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild X-VCS-Directories: net-libs/libnpupnp/ X-VCS-Committer: stasibear X-VCS-Committer-Name: Erik Mackdanz X-VCS-Revision: 795c402bc6547bacb4a570885ccec543305b689e X-VCS-Branch: master Date: Sun, 22 Nov 2020 16:01:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e0307858-8d7e-4d0a-acfd-97db584f69c7 X-Archives-Hash: 98b25897351bcd617ddbc1542f094bfc commit: 795c402bc6547bacb4a570885ccec543305b689e Author: Erik Mackdanz gentoo org> AuthorDate: Sun Nov 22 16:01:06 2020 +0000 Commit: Erik Mackdanz gentoo org> CommitDate: Sun Nov 22 16:01:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795c402b net-libs/libnpupnp: revbump for prior flags change Should have revbumped with 324522b51aefdbad70ff7e5c3a1a8beb3698519a, doing it now. Signed-off-by: Erik Mackdanz gentoo.org> Package-Manager: Portage-3.0.9, Repoman-3.0.2 net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild new file mode 100644 index 00000000000..733dfdc3381 --- /dev/null +++ b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp" +HOMEPAGE="https://framagit.org/medoc92/npupnp" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/expat + net-libs/libmicrohttpd + net-misc/curl +" + +src_prepare() { + default + ./autogen.sh || die +} + +src_configure() { + econf \ + --enable-client \ + --enable-debug \ + --enable-device \ + --enable-gena \ + --enable-ipv6 \ + --enable-optssdp \ + --enable-reuseaddr \ + --enable-soap \ + --enable-ssdp \ + --enable-tools \ + --enable-webserver +}