+++ /dev/null
-DIST miredo-1.2.5.tar.xz 474236 BLAKE2B 8766771c950ada7b172287595a93a4a14aec75d256d0b4e862097edad06faf805423de99ade00e796d3e91c130d6e069fa381abe7a49db80e5f8ed16fbfdf9c1 SHA512 94bc71b7093783ad103a0aceb95ad3de1739e4ec1d763b3c6cea9bb1768f55359448957f623ee3f966955c555bb9f71ff0216d9d4e8d2ff244bb058731702c70
-DIST miredo-1.2.6.tar.xz 477668 BLAKE2B ca6ddc90badcaed16e3925c4e67c0770bdcb909a97ddf48d8f6ee3c27ad6a7078c33edf94f6e491a4d7bab02b7b35a6006a778248fa0fd86efec973e56695c5d SHA512 9cbc604aecde566f921834a220be7675981e1c603cbcc81c3e2e9c58fdcdae2e78ec6ffc180939d5b8f6d7598ba3967270532b2c0c04de8b688a86c436719caf
+++ /dev/null
---- configure.ac.ori 2012-06-14 21:55:13.756603416 +0200
-+++ configure.ac 2012-06-14 23:12:01.425399836 +0200
-@@ -150,16 +150,23 @@
-
- # POSIX capabilities
- LIBCAP=""
--AC_CHECK_HEADERS([sys/capability.h], [
-- AC_CHECK_LIB(cap, cap_set_proc, [
-- LIBCAP="-lcap"
-- AC_DEFINE(HAVE_LIBCAP, 1,
-- [Define to 1 if you have the `cap' library (-lcap).])
-- ])
-+AC_ARG_WITH(libcap,
-+ AS_HELP_STRING([--with-libcap], [enable POSIX 1003.1e capabilities]),
-+ with_libcap=$withval,
-+ with_libcap=auto)
-+AC_MSG_CHECKING([whether to enable POSIX 1003.1e capabilities])
-+AC_MSG_RESULT($with_libcap)
-+
-+AS_IF([test "x$with_libcap" != "xno"], [
-+ AC_CHECK_HEADERS([sys/capability.h])
-+ AC_CHECK_LIB(cap, cap_set_proc, [
-+ LIBCAP="-lcap"
-+ AC_DEFINE(HAVE_LIBCAP, 1,
-+ [Define to 1 if you have the cap library (-lcap).])
-+ ])
- ])
- AC_SUBST(LIBCAP)
-
--
- # Judy
- AC_ARG_WITH(Judy,
- [AS_HELP_STRING(--with-Judy,
+++ /dev/null
-Index: miredo-1.2.5/misc/client-hook.iproute
-===================================================================
---- miredo-1.2.5.orig/misc/client-hook.iproute
-+++ miredo-1.2.5/misc/client-hook.iproute
-@@ -5,7 +5,10 @@
- # Distributed under the terms of the GNU General Public License version 2.
-
- # Linux iproute2 path:
--IP="/sbin/ip"
-+IP="ip"
-+
-+test -x "/sbin/ip" && IP=/sbin/ip
-+test -x "/bin/ip" && IP=/bin/ip
-
- # Linux default route default metric is 1024
- # (we put 1029 so that Teredo is used as a last resort):
-@@ -23,11 +26,6 @@ PRIO=32765
- # (default: specified by the Teredo server, or 1280)
- #MTU=1400
-
--if ! test -x "$IP"; then
-- echo "$0: iproute2 is required! Please install it." >&2
-- exit 1
--fi
--
- # Nothing to do with destroy event
- if test "$STATE" = "destroy"; then exit 0; fi
-
+++ /dev/null
-# Options to pass to the daemon
-EXTRA_OPTS=""
+++ /dev/null
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need localmount
- after net modules
- use dns logger
-}
-
-command=/usr/sbin/${SVCNAME}
-command_args="${MIREDO_OPTS}"
-pidfile=/var/run/${SVCNAME}.pid
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>xmw@gentoo.org</email>
- <name>Michael Weber</name>
-</maintainer>
-<longdescription lang="en">
-Miredo is an open-source Teredo IPv6 tunneling software, for Linux and the
-BSD operating systems. It includes functional implementations of all
-components of the Teredo specification (client, relay and server). It is
-meant to provide IPv6 connectivity even from behind NAT devices.
-</longdescription>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils linux-info user
-
-DESCRIPTION="Miredo is an open-source Teredo IPv6 tunneling software"
-HOMEPAGE="http://www.remlab.net/miredo/"
-SRC_URI="http://www.remlab.net/files/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+caps"
-
-RDEPEND="sys-apps/iproute2
- dev-libs/judy
- caps? ( sys-libs/libcap )"
-DEPEND="${RDEPEND}
- app-arch/xz-utils"
-
-CONFIG_CHECK="~IPV6" #318777
-
-#tries to connect to external networks (#339180)
-RESTRICT="test"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO THANKS )
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-configure-libcap.diff
- epatch "${FILESDIR}"/${P}-ip-path.patch
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- --enable-miredo-user \
- --localstatedir=/var \
- $(use_with caps libcap)
-}
-
-src_install() {
- default
- prune_libtool_files
-
- newinitd "${FILESDIR}"/miredo.rc.2 miredo
- newconfd "${FILESDIR}"/miredo.conf.2 miredo
- newinitd "${FILESDIR}"/miredo.rc.2 miredo-server
- newconfd "${FILESDIR}"/miredo.conf.2 miredo-server
-
- insinto /etc/miredo
- doins misc/miredo-server.conf
-}
-
-pkg_preinst() {
- enewgroup miredo
- enewuser miredo -1 -1 /var/empty miredo
-}
+++ /dev/null
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils linux-info user
-
-DESCRIPTION="Miredo is an open-source Teredo IPv6 tunneling software"
-HOMEPAGE="http://www.remlab.net/miredo/"
-SRC_URI="http://www.remlab.net/files/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+caps"
-
-RDEPEND="sys-apps/iproute2
- dev-libs/judy
- caps? ( sys-libs/libcap )"
-DEPEND="${RDEPEND}
- app-arch/xz-utils"
-
-CONFIG_CHECK="~IPV6" #318777
-
-#tries to connect to external networks (#339180)
-RESTRICT="test"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO THANKS )
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.2.5-configure-libcap.diff
- epatch "${FILESDIR}"/${PN}-1.2.5-ip-path.patch
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- --enable-miredo-user \
- --localstatedir=/var \
- $(use_with caps libcap)
-}
-
-src_install() {
- default
- prune_libtool_files
-
- newinitd "${FILESDIR}"/miredo.rc.2 miredo
- newconfd "${FILESDIR}"/miredo.conf.2 miredo
- newinitd "${FILESDIR}"/miredo.rc.2 miredo-server
- newconfd "${FILESDIR}"/miredo.conf.2 miredo-server
-
- insinto /etc/miredo
- doins misc/miredo-server.conf
-}
-
-pkg_preinst() {
- enewgroup miredo
- enewuser miredo -1 -1 /var/empty miredo
-}
# and start actively maintaining it. Otherwise -- removal in 90 days.
sys-apps/paludis
-# Pacho Ramos <pacho@gentoo.org> (17 Jun 2018)
-# Dead since 2013, not compatible with latest profiles (#642568). Removal in
-# a month
-net-vpn/miredo
-
# Mart Raudsepp <leio@gentoo.org> (16 Jun 2018)
# No upstream (website disappeared), no upstream plugin maintainer,
# and pretty much a fringe format anyway.
move net-misc/vpncwatch net-vpn/vpncwatch
move net-misc/wireguard net-vpn/wireguard
move net-misc/vtun net-vpn/vtun
-move net-misc/miredo net-vpn/miredo
move net-misc/isatapd net-vpn/isatapd
move net-misc/iodine net-vpn/iodine
move net-misc/corkscrew net-vpn/corkscrew