net-misc/miniupnpd: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Thu, 6 Sep 2018 20:52:18 +0000 (22:52 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 6 Sep 2018 21:22:04 +0000 (23:22 +0200)
net-misc/miniupnpd/Manifest
net-misc/miniupnpd/miniupnpd-2.0.20180503.ebuild [deleted file]

index 364e949bb86cb059b3829f93f440795c7444ae37..020b8d4282c98e992c5c31f3347e18b74df38f3e 100644 (file)
@@ -1,2 +1 @@
-DIST miniupnpd-2.0.20180503.tar.gz 225454 BLAKE2B d08c1fe050fce4a6f2348ff17f9d03feae04ca99a1b70fd7cc1734f56374f2be73708c5b495cf1a23ae76bd1f0042a90442793a87adb3ed9d0c49678dd8eb0b8 SHA512 7615f28d8e41bbe5b7343159a526ba33e643d14e2be7c2382461fda36ecfb3420ef2903e0cc9fa92ffe376f8609feb9403a316244eec0459e78a6b5ad96462ee
 DIST miniupnpd-2.1.20180706.tar.gz 233675 BLAKE2B 641be6dc6a32383a02711139ac56236dc285041f2bda595a909ed5281a5163d1300212892e011f6256c6cf73b877f0e5e2e93efbfb08a77b0ae7d3dde94c28f6 SHA512 90881e08754f9fe3d1ef01da1fe437626d1fef09bea5eab9c1bcf3347e1197038ab87de8c7c454083ba90a86760230a323a6c293307b0fcecefbd5cfb658d227
diff --git a/net-misc/miniupnpd/miniupnpd-2.0.20180503.ebuild b/net-misc/miniupnpd/miniupnpd-2.0.20180503.ebuild
deleted file mode 100644 (file)
index 9f786c4..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="MiniUPnP IGD Daemon"
-HOMEPAGE="http://miniupnp.free.fr/"
-SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="+leasefile igd2 ipv6 pcp-peer portinuse strict"
-
-RDEPEND=">=net-firewall/iptables-1.4.6:0=[ipv6?]
-       net-libs/libnfnetlink:=
-       net-libs/libmnl:=
-       dev-libs/gmp:0=
-       sys-apps/util-linux
-       dev-libs/openssl:0="
-DEPEND="${RDEPEND}
-       sys-apps/lsb-release"
-
-src_prepare() {
-       default
-       mv Makefile.linux Makefile || die
-}
-
-src_configure() {
-       local -a opts
-       opts=(
-               --vendorcfg
-               $(usex igd2 '--igd2' '')
-               $(usex ipv6 '--ipv6' '')
-               $(usex leasefile '--leasefile' '')
-               $(usex portinuse '--portinuse' '')
-               $(usex pcp-peer '--pcp-peer' '')
-               $(usex strict '--strict' '')
-       )
-
-       emake CONFIG_OPTIONS="${opts[*]}" config.h
-}
-
-src_compile() {
-       # By default, it builds a bunch of unittests that are missing wrapper
-       # scripts in the tarball
-       emake CC="$(tc-getCC)" STRIP=true miniupnpd
-}
-
-src_install() {
-       emake PREFIX="${ED}" STRIP=true install
-
-       newinitd "${FILESDIR}"/${PN}-init.d-r1 ${PN}
-       newconfd "${FILESDIR}"/${PN}-conf.d-r1 ${PN}
-}
-
-pkg_postinst() {
-       elog "Please correct the external interface in the top of the two"
-       elog "scripts in /etc/miniupnpd and edit the config file in there too"
-}