summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2006-12-16 21:46:57 +0000
committerDaniel Black <dragonheart@gentoo.org>2006-12-16 21:46:57 +0000
commitd21e137d50a4fa8244e480b7fc1718a429091633 (patch)
tree66c5273973b6e0563268415dc9f85cc0a90f82bf /net-misc/tinc
parentversion bump (diff)
downloadhistorical-d21e137d50a4fa8244e480b7fc1718a429091633.tar.gz
historical-d21e137d50a4fa8244e480b7fc1718a429091633.tar.bz2
historical-d21e137d50a4fa8244e480b7fc1718a429091633.zip
version bump
Package-Manager: portage-2.1.2_rc3
Diffstat (limited to 'net-misc/tinc')
-rw-r--r--net-misc/tinc/ChangeLog4
-rw-r--r--net-misc/tinc/files/digest-tinc-1.0.53
-rw-r--r--net-misc/tinc/tinc-1.0.5.ebuild34
3 files changed, 39 insertions, 2 deletions
diff --git a/net-misc/tinc/ChangeLog b/net-misc/tinc/ChangeLog
index 04979c7b6631..291517e5102e 100644
--- a/net-misc/tinc/ChangeLog
+++ b/net-misc/tinc/ChangeLog
@@ -1,11 +1,11 @@
# ChangeLog for net-misc/tinc
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.9 2006/12/16 21:44:59 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.10 2006/12/16 21:46:57 dragonheart Exp $
*tinc-1.0.5 (16 Dec 2006)
16 Dec 2006; Daniel Black <dragonheart@gentoo.org> +tinc-1.0.5.ebuild:
- version bump
+ version bump.
24 May 2006; Bryan Østergaard <kloeri@gentoo.org> metadata.xml:
Remove warpzero from metadata.xml, bug 133117.
diff --git a/net-misc/tinc/files/digest-tinc-1.0.5 b/net-misc/tinc/files/digest-tinc-1.0.5
new file mode 100644
index 000000000000..3adeaef0a184
--- /dev/null
+++ b/net-misc/tinc/files/digest-tinc-1.0.5
@@ -0,0 +1,3 @@
+MD5 2cad07ff1db887c2e2789231a3f95e0f tinc-1.0.5.tar.gz 490292
+RMD160 fd5965153b1a5c9c6d200c257bc885679c36b174 tinc-1.0.5.tar.gz 490292
+SHA256 6069e560ea114d62b300282a21a515bccc4fb85db6e5694dabb1642067ea051e tinc-1.0.5.tar.gz 490292
diff --git a/net-misc/tinc/tinc-1.0.5.ebuild b/net-misc/tinc/tinc-1.0.5.ebuild
new file mode 100644
index 000000000000..bc5cdbb237c5
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.5.ebuild,v 1.1 2006/12/16 21:44:59 dragonheart Exp $
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~arm ~sparc ~x86 ~ppc"
+IUSE="nls"
+
+DEPEND=">=dev-libs/openssl-0.9.7c
+ virtual/linux-sources
+ >=dev-libs/lzo-2
+ >=sys-libs/zlib-1.1.4-r2
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf --enable-jumbograms $(use_enable nls) || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc AUTHORS NEWS README THANKS TODO
+ exeinto /etc/init.d ; newexe ${FILESDIR}/tincd tincd
+}
+
+pkg_postinst() {
+ einfo "This package requires the tun/tap kernel device."
+ einfo "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}