summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Charles Campbell <warpzero@gentoo.org>2003-12-24 13:21:04 +0000
committerJoshua Charles Campbell <warpzero@gentoo.org>2003-12-24 13:21:04 +0000
commit122a970aec90d5ae6ba86da436b2d7b5436a5da9 (patch)
treeb127cc4d7cff9db0f1b5c2238948875796cdd837 /net-misc/tinc
parentnet-misc/openvpn version bump and bugfixes (diff)
downloadhistorical-122a970aec90d5ae6ba86da436b2d7b5436a5da9.tar.gz
historical-122a970aec90d5ae6ba86da436b2d7b5436a5da9.tar.bz2
historical-122a970aec90d5ae6ba86da436b2d7b5436a5da9.zip
net-misc/tinc vpn software initial import
Diffstat (limited to 'net-misc/tinc')
-rw-r--r--net-misc/tinc/ChangeLog13
-rw-r--r--net-misc/tinc/Manifest4
-rw-r--r--net-misc/tinc/files/digest-tinc-1.0.21
-rw-r--r--net-misc/tinc/metadata.xml11
-rw-r--r--net-misc/tinc/tinc-1.0.2.ebuild32
5 files changed, 61 insertions, 0 deletions
diff --git a/net-misc/tinc/ChangeLog b/net-misc/tinc/ChangeLog
new file mode 100644
index 000000000000..1973042a4a2e
--- /dev/null
+++ b/net-misc/tinc/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for net-misc/tinc
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.1 2003/12/24 13:21:04 warpzero Exp $
+
+*tinc-1.0.2 (03 Aug 2003)
+
+ 24 Dec 2003; <warpzero@gentoo.org> metadata.xml, tinc-1.0.2.ebuild:
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
+
diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
new file mode 100644
index 000000000000..bd843f7a2727
--- /dev/null
+++ b/net-misc/tinc/Manifest
@@ -0,0 +1,4 @@
+MD5 47ca317a44761afd3eb6387b941c8368 tinc-1.0.2.ebuild 937
+MD5 0f663c4ad685e690e9c8e7bc990540f5 ChangeLog 692
+MD5 5cd11fe8144c34041e8ab9baf4a5090d metadata.xml 427
+MD5 8f70364e159d1ba3c7ed7bd5e517b5fc files/digest-tinc-1.0.2 62
diff --git a/net-misc/tinc/files/digest-tinc-1.0.2 b/net-misc/tinc/files/digest-tinc-1.0.2
new file mode 100644
index 000000000000..eeeeb1fac2dd
--- /dev/null
+++ b/net-misc/tinc/files/digest-tinc-1.0.2
@@ -0,0 +1 @@
+MD5 5396e8d279b5140e86113c80abc041ad tinc-1.0.2.tar.gz 481890
diff --git a/net-misc/tinc/metadata.xml b/net-misc/tinc/metadata.xml
new file mode 100644
index 000000000000..3bc4d2d88c46
--- /dev/null
+++ b/net-misc/tinc/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>secure-tunneling</herd>
+<maintainer>
+ <email>warpzero@gentoo.org</email>
+ <name>Joshua Charles Campbell</name>
+<!-- <description>Description of the maintainership</description> -->
+</maintainer>
+<longdescription>tinc is an easy to configure VPN implementation.</longdescription>
+</pkgmetadata>
diff --git a/net-misc/tinc/tinc-1.0.2.ebuild b/net-misc/tinc/tinc-1.0.2.ebuild
new file mode 100644
index 000000000000..62cfaeaf712b
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.2.ebuild,v 1.1 2003/12/24 13:21:04 warpzero Exp $
+
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://tinc.nl.linux.org/"
+SRC_URI="http://tinc.nl.linux.org/packages/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND=">=dev-libs/openssl-0.9.7c
+ virtual/linux-sources
+ >=dev-libs/lzo-1.08
+ >=sys-libs/zlib-1.1.4-r2"
+
+src_compile() {
+ econf --enable-jumbograms || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc ABOUT-NLS AUTHORS COPYING COPYING.README INSTALL NEWS README THANKS TODO
+ exeinto /etc/init.d ; newexe ${FILESDIR}/tinc tinc
+}
+
+pkg_postinst() {
+ einfo "This package requires the tun/tap kernel device."
+ einfo "Look at http://tinc.nl.linux.org/ for how to configure tinc"
+}