summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2011-09-23 18:51:26 +0000
committerAnthony G. Basile <blueness@gentoo.org>2011-09-23 18:51:26 +0000
commit3f4cadb461de76a2df8bd2c23a3043421b40b0cb (patch)
tree145e35e7b08b21cf08f3e818d80331a6b14e4c1f /net-misc
parentVersion bump, drop old (diff)
downloadgentoo-2-3f4cadb461de76a2df8bd2c23a3043421b40b0cb.tar.gz
gentoo-2-3f4cadb461de76a2df8bd2c23a3043421b40b0cb.tar.bz2
gentoo-2-3f4cadb461de76a2df8bd2c23a3043421b40b0cb.zip
Version bump to latest upstream stable
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/tinc/ChangeLog7
-rw-r--r--net-misc/tinc/tinc-1.0.16.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/net-misc/tinc/ChangeLog b/net-misc/tinc/ChangeLog
index 46d5d0b9e352..722b10e13860 100644
--- a/net-misc/tinc/ChangeLog
+++ b/net-misc/tinc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/tinc
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.23 2011/09/23 10:59:31 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.24 2011/09/23 18:51:26 blueness Exp $
+
+*tinc-1.0.16 (23 Sep 2011)
+
+ 23 Sep 2011; Anthony G. Basile <blueness@gentoo.org> +tinc-1.0.16.ebuild:
+ Version bump to latest upstream stable
23 Sep 2011; Anthony G. Basile <blueness@gentoo.org> metadata.xml:
Added myself as maintainer.
diff --git a/net-misc/tinc/tinc-1.0.16.ebuild b/net-misc/tinc/tinc-1.0.16.ebuild
new file mode 100644
index 000000000000..9a6b4824610e
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.16.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.16.ebuild,v 1.1 2011/09/23 18:51:26 blueness Exp $
+
+EAPI=4
+
+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="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo +zlib"
+
+DEPEND=">=dev-libs/openssl-0.9.7c
+ lzo? ( dev-libs/lzo:2 )
+ zlib? ( >=sys-libs/zlib-1.1.4-r2 )"
+
+src_configure() {
+ econf --enable-jumbograms $(use_enable lzo) $(use_enable zlib) || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodir /etc/tinc
+ dodoc AUTHORS NEWS README THANKS
+ doinitd "${FILESDIR}"/tincd{,.lo}
+ doconfd "${FILESDIR}"/tinc.networks
+ newconfd "${FILESDIR}"/tincd.conf tincd
+}
+
+pkg_postinst() {
+ elog "This package requires the tun/tap kernel device."
+ elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}