summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2012-09-16 13:01:03 +0000
committerSergey Popov <pinkbyte@gentoo.org>2012-09-16 13:01:03 +0000
commit37903b6b2c72446943a80e15e01a459bcefca517 (patch)
tree73ca724cac24b40514cfef19cc5c0f39ca1fc343 /net-misc
parentStable ppc, bug #425814 (diff)
downloadgentoo-2-37903b6b2c72446943a80e15e01a459bcefca517.tar.gz
gentoo-2-37903b6b2c72446943a80e15e01a459bcefca517.tar.bz2
gentoo-2-37903b6b2c72446943a80e15e01a459bcefca517.zip
Drop old revision
(Portage version: 2.2.0_alpha125/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/vtun/ChangeLog5
-rw-r--r--net-misc/vtun/vtun-3.0.2-r1.ebuild58
2 files changed, 4 insertions, 59 deletions
diff --git a/net-misc/vtun/ChangeLog b/net-misc/vtun/ChangeLog
index 802b5c79fbb2..eed845958e0e 100644
--- a/net-misc/vtun/ChangeLog
+++ b/net-misc/vtun/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/vtun
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.53 2012/09/16 12:57:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.54 2012/09/16 13:01:03 pinkbyte Exp $
+
+ 16 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> -vtun-3.0.2-r1.ebuild:
+ Drop old revision
16 Sep 2012; Anthony G. Basile <blueness@gentoo.org> vtun-3.0.2-r2.ebuild:
Stable ppc, bug #425814
diff --git a/net-misc/vtun/vtun-3.0.2-r1.ebuild b/net-misc/vtun/vtun-3.0.2-r1.ebuild
deleted file mode 100644
index f199b3e47c14..000000000000
--- a/net-misc/vtun/vtun-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-3.0.2-r1.ebuild,v 1.5 2012/06/08 12:15:27 phajdan.jr Exp $
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Create virtual tunnels over TCP/IP networks with traffic shaping, encryption, and compression."
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://vtun.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86"
-IUSE="lzo socks5 ssl zlib"
-
-RDEPEND="ssl? ( dev-libs/openssl )
- lzo? ( dev-libs/lzo:2 )
- zlib? ( sys-libs/zlib )
- socks5? ( net-proxy/dante )"
-DEPEND="${RDEPEND}
- sys-devel/bison"
-
-src_prepare() {
- sed -i Makefile.in \
- -e '/^LDFLAGS/s|=|+=|g' \
- || die "sed Makefile"
- epatch "${FILESDIR}"/${P}-includes.patch
-}
-
-src_configure() {
- econf \
- $(use_enable ssl) \
- $(use_enable zlib) \
- $(use_enable lzo) \
- $(use_enable socks5 socks) \
- --enable-shaper
-}
-
-src_compile() {
- # Parallel make fails, bug 364923
- emake -j1
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc ChangeLog Credits FAQ README README.Setup README.Shaper TODO
- newinitd "${FILESDIR}"/vtun.rc vtun
- insinto etc
- doins "${FILESDIR}"/vtund-start.conf
-}
-
-pkg_postinst() {
- elog "You will need the Universal TUN/TAP driver compiled into"
- elog "your kernel or as a module to use the associated tunnel"
- elog "modes in vtun."
-}