diff options
author | Daniel Black <dragonheart@gentoo.org> | 2006-12-16 21:44:59 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2006-12-16 21:44:59 +0000 |
commit | 8f9a333abb2f35284a7484c9ef7cb2f588947e26 (patch) | |
tree | cf57620be9a521bc49ead33e069b1c286673650c /net-misc/tinc | |
parent | version bump (diff) | |
download | gentoo-2-8f9a333abb2f35284a7484c9ef7cb2f588947e26.tar.gz gentoo-2-8f9a333abb2f35284a7484c9ef7cb2f588947e26.tar.bz2 gentoo-2-8f9a333abb2f35284a7484c9ef7cb2f588947e26.zip |
version bump
(Portage version: 2.1.2_rc3)
Diffstat (limited to 'net-misc/tinc')
-rw-r--r-- | net-misc/tinc/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/tinc/files/digest-tinc-1.0.5 | 3 | ||||
-rw-r--r-- | net-misc/tinc/tinc-1.0.5.ebuild | 34 |
3 files changed, 43 insertions, 1 deletions
diff --git a/net-misc/tinc/ChangeLog b/net-misc/tinc/ChangeLog index 68616f7e0df9..04979c7b6631 100644 --- a/net-misc/tinc/ChangeLog +++ b/net-misc/tinc/ChangeLog @@ -1,6 +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.8 2006/05/24 19:29:30 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.9 2006/12/16 21:44:59 dragonheart Exp $ + +*tinc-1.0.5 (16 Dec 2006) + + 16 Dec 2006; Daniel Black <dragonheart@gentoo.org> +tinc-1.0.5.ebuild: + 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" +} |