diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-07-05 17:24:31 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-07-05 17:24:31 +0000 |
commit | ebd94dd74e0c0390cc5306a8d4ea03e82b9d9863 (patch) | |
tree | 7ca187d6fabb92806f424e501995da84916d7624 | |
parent | alpha stable (diff) | |
download | gentoo-2-ebd94dd74e0c0390cc5306a8d4ea03e82b9d9863.tar.gz gentoo-2-ebd94dd74e0c0390cc5306a8d4ea03e82b9d9863.tar.bz2 gentoo-2-ebd94dd74e0c0390cc5306a8d4ea03e82b9d9863.zip |
drop old one still using older lzo.
(Portage version: 2.1.3_rc6)
-rw-r--r-- | net-misc/vtun/files/digest-vtun-2.6 | 3 | ||||
-rw-r--r-- | net-misc/vtun/vtun-2.6.ebuild | 69 |
2 files changed, 0 insertions, 72 deletions
diff --git a/net-misc/vtun/files/digest-vtun-2.6 b/net-misc/vtun/files/digest-vtun-2.6 deleted file mode 100644 index 2eeda3ae79de..000000000000 --- a/net-misc/vtun/files/digest-vtun-2.6 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 309534fd03c5d13a19c43916f61f4bbf vtun-2.6.tar.gz 95637 -RMD160 9f666189740b78a88f6b0e2807add3267551198b vtun-2.6.tar.gz 95637 -SHA256 fc80dac6d622fdb2db16d772edc6ff7d0023ee6eb5f2acb79d894ee30197c2e5 vtun-2.6.tar.gz 95637 diff --git a/net-misc/vtun/vtun-2.6.ebuild b/net-misc/vtun/vtun-2.6.ebuild deleted file mode 100644 index 7df91d566a51..000000000000 --- a/net-misc/vtun/vtun-2.6.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-2.6.ebuild,v 1.14 2007/04/29 17:52:39 tove Exp $ - -inherit eutils - -IUSE="ssl" - -S=${WORKDIR}/vtun -DESCRIPTION="Create virtual tunnels over TCP/IP networks with traffic shaping, encryption, and compression" -SRC_URI="mirror://sourceforge/vtun/${P}.tar.gz" -HOMEPAGE="http://vtun.sourceforge.net/" -KEYWORDS="x86 sparc ~amd64 alpha ~ppc" -LICENSE="GPL-2" -SLOT="0" - -# NOTE: you also need the tun/tap driver compiled into your kernel -# to do tun/tap tunneling -DEPEND="virtual/libc - >=sys-libs/zlib-1.1.3 - =dev-libs/lzo-1* - sys-devel/bison - ssl? ( >=dev-libs/openssl-0.9.6c )" - -RDEPEND="virtual/libc - >=sys-libs/zlib-1.1.3 - ssl? ( >=dev-libs/openssl-0.9.6c )" - -src_unpack() { - unpack ${A} && cd ${S} || die - epatch ${FILESDIR}/${PN}-${PV}-makefile.patch -} - -src_compile() { - local use_opts - use_opts="" - if ! use ssl - then - use_opts="--disable-ssl" - fi - - econf ${use_opts} --with-ssl-headers=/usr/include/openssl || die - - make || die -} - -src_install () { - make DESTDIR=${D} prefix=/usr \ - mandir=/usr/share/man \ - infodir=/usr/share/info \ - datadir=/usr/share \ - sysconfdir=/etc \ - localstatedir=/var/lib \ - install || die - - dodoc ChangeLog Credits FAQ README README.Setup README.Shaper TODO - - newinitd ${FILESDIR}/vtun.rc vtun - - insinto etc - doins ${FILESDIR}/vtund-start.conf -} - -pkg_postinst () { - einfo ">>> You will need the Universal TUN/TAP driver compiled into" - einfo ">>> your kernel or as a module to use the associated tunnel" - einfo ">>> modes in vtun. 2.2 users will need to download and install" - einfo ">>> the driver from http://vtun.sourceforge.net/tun" -} |