summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Espen Oversand <sigsegv@radiotube.org>2023-06-10 21:00:05 +0200
committerSam James <sam@gentoo.org>2023-06-10 22:36:32 +0100
commita12ebe4a213e68522f1b4ad7d095c404f6800255 (patch)
tree9e5dc72d7d5258436809c38651a88c9dcb96f032 /net-vpn
parentapp-cdr/isoimagewriter: drop 0.9-r1 (diff)
downloadgentoo-a12ebe4a213e68522f1b4ad7d095c404f6800255.tar.gz
gentoo-a12ebe4a213e68522f1b4ad7d095c404f6800255.tar.bz2
gentoo-a12ebe4a213e68522f1b4ad7d095c404f6800255.zip
net-vpn/vtun: drop 3.0.4-r2
Signed-off-by: Jan-Espen Oversand <sigsegv@radiotube.org> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-vpn')
-rw-r--r--net-vpn/vtun/vtun-3.0.4-r2.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/net-vpn/vtun/vtun-3.0.4-r2.ebuild b/net-vpn/vtun/vtun-3.0.4-r2.ebuild
deleted file mode 100644
index 6f2661a261b8..000000000000
--- a/net-vpn/vtun/vtun-3.0.4-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-DESCRIPTION="Create tunnels over TCP/IP networks with shaping, encryption, and compression"
-SRC_URI="https://sourceforge.net/projects/vtun/files/${PN}/${PV}/${P}.tar.gz"
-HOMEPAGE="https://vtun.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86"
-IUSE="lzo socks5 ssl zlib"
-
-RDEPEND="
- lzo? ( dev-libs/lzo:2 )
- socks5? ( net-proxy/dante )
- ssl? ( dev-libs/openssl:0= )
- zlib? ( sys-libs/zlib )
- dev-libs/libbsd"
-DEPEND="${RDEPEND}"
-BDEPEND="
- app-alternatives/lex
- app-alternatives/yacc
-"
-
-DOCS=( ChangeLog Credits FAQ README README.Setup README.Shaper TODO )
-CONFIG_CHECK="~TUN"
-
-PATCHES=(
- "${FILESDIR}"/${P}-libssl-ctx.patch
- "${FILESDIR}"/${P}-includes.patch
- "${FILESDIR}"/${P}-naughty-inlines.patch
- "${FILESDIR}"/${P}-autoconf-fork-not-working.patch
-)
-
-src_prepare() {
- default
- sed -i -e '/^LDFLAGS/s|=|+=|g' Makefile.in || die
- sed -i 's:$(BIN_DIR)/strip $(DESTDIR)$(SBIN_DIR)/vtund::' Makefile.in || die
-}
-
-src_configure() {
- econf \
- $(use_enable ssl) \
- $(use_enable zlib) \
- $(use_enable lzo) \
- $(use_enable socks5 socks) \
- --enable-shaper
-}
-
-src_install() {
- default
- newinitd "${FILESDIR}"/vtun.rc vtun
- insinto /etc
- doins "${FILESDIR}"/vtund-start.conf
- rm -r "${ED}"/var || die
-}