summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston A. Elder <prez@gentoo.org>2002-05-28 04:33:05 +0000
committerPreston A. Elder <prez@gentoo.org>2002-05-28 04:33:05 +0000
commitf9efb0ff6de6c24e556872db187d4fc68a5fa7b7 (patch)
tree276ffad0567bfe86ef1ab93f21d8772262e856c9 /app-crypt
parentRemove vtun (diff)
downloadhistorical-f9efb0ff6de6c24e556872db187d4fc68a5fa7b7.tar.gz
historical-f9efb0ff6de6c24e556872db187d4fc68a5fa7b7.tar.bz2
historical-f9efb0ff6de6c24e556872db187d4fc68a5fa7b7.zip
Removed vtun, since its in net-misc
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/vtun/ChangeLog9
-rw-r--r--app-crypt/vtun/vtun-2.5.ebuild58
2 files changed, 0 insertions, 67 deletions
diff --git a/app-crypt/vtun/ChangeLog b/app-crypt/vtun/ChangeLog
deleted file mode 100644
index caada575fd0c..000000000000
--- a/app-crypt/vtun/ChangeLog
+++ /dev/null
@@ -1,9 +0,0 @@
-# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
-# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/vtun/ChangeLog,v 1.1 2002/05/23 21:53:27 prez Exp $
-
-*vtun-2.5 (23 May 2002)
-
- 23 May 2002; Preston A. Elder <prez@gentoo.org> vtun-2.5.ebuild:
- Initial revision.
- \ No newline at end of file
diff --git a/app-crypt/vtun/vtun-2.5.ebuild b/app-crypt/vtun/vtun-2.5.ebuild
deleted file mode 100644
index 70e3c88c7f25..000000000000
--- a/app-crypt/vtun/vtun-2.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/vtun/vtun-2.5.ebuild,v 1.3 2002/05/27 17:27:34 drobbins Exp $
-
-DESCRIPTION="Tunneling software to use the universal tunnel"
-HOMEPAGE="http://vtun.sourceforge.net"
-LICENSE="GPL-2"
-DEPEND=">=sys-libs/zlib-1.1.4
- >=dev-libs/lzo-1.07
- >=dev-libs/openssl-0.9.6c-r1
- >=sys-kernel/linux-headers-2.4.18"
-#RDEPEND=""
-SRC_URI="mirror://sourceforge/vtun/${P}.tar.gz"
-S=${WORKDIR}/vtun
-
-src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
- mv config.h config.h.orig
- mv cfg_file.y cfg_file.y.orig
- sed "s,/* #undef HAVE_LINUX_IF_TUN_H */,#define HAVE_LINUX_IF_TUN_H 1," \
- config.h.orig >config.h
- sed "s,expect 18,expect 20," \
- cfg_file.y.orig >cfg_file.y
-
- # Rename this, because its from cyrus, we want the openssl one.
- if [ -f /usr/include/md5.h ]; then
- mv /usr/include/md5.h /usr/include/md5.h.vtun_compile
- fi
-
- # If this doesnt work, we only remember that we failed, so
- # we always rename the /etc/include/md5.h file back.
- emake \
- ETC_DIR=/etc \
- VAR_DIR=/var || FAILED=1
-
- # OK, we're done, rename the cyrus one back to what it was.
- if [ -f /usr/include/md5.h.vtun_compile -a
- ! -f /usr/include/md5.h ]; then
- mv /usr/include/md5.h.vtun_compile /usr/include/md5.h
- fi
- if [ 0$FAILED -ne 0 ]; then
- die
- fi
-}
-
-src_install () {
- make \
- prefix=${D}/usr \
- ETC_DIR=${D}/etc \
- VAR_DIR=${D}/var \
- INFO_DIR=${D}/usr/share/info \
- MAN_DIR=${D}/usr/share/man install || die
- dodoc ChangeLog FAQ README* TODO vtund.conf
-}