diff options
author | 2009-11-10 01:42:36 +0000 | |
---|---|---|
committer | 2009-11-10 01:42:36 +0000 | |
commit | d04454f5385e4229694717a30f18a30759fd23a3 (patch) | |
tree | 66213d957745344dcd7be9326be0306fb0b140e3 /net-misc/vpnc | |
parent | unmask ps3 USE flag for bug 244018 (diff) | |
download | gentoo-2-d04454f5385e4229694717a30f18a30759fd23a3.tar.gz gentoo-2-d04454f5385e4229694717a30f18a30759fd23a3.tar.bz2 gentoo-2-d04454f5385e4229694717a30f18a30759fd23a3.zip |
add SVN snapshot for bug 292431 by Sven <sven DOT koehler AT gmail DOT com>
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-misc/vpnc')
-rw-r--r-- | net-misc/vpnc/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/vpnc/vpnc-0.5.3_p449.ebuild | 39 |
2 files changed, 47 insertions, 1 deletions
diff --git a/net-misc/vpnc/ChangeLog b/net-misc/vpnc/ChangeLog index 4f71bd7825c3..6cdf0cf75d78 100644 --- a/net-misc/vpnc/ChangeLog +++ b/net-misc/vpnc/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/vpnc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vpnc/ChangeLog,v 1.85 2009/05/31 13:35:27 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vpnc/ChangeLog,v 1.86 2009/11/10 01:42:36 fauli Exp $ + +*vpnc-0.5.3_p449 (10 Nov 2009) + + 10 Nov 2009; Christian Faulhammer <fauli@gentoo.org> + +vpnc-0.5.3_p449.ebuild: + add SVN snapshot for bug 292431 by Sven <sven DOT koehler AT gmail DOT + com> 31 May 2009; Mike Auty <ikelos@gentoo.org> metadata.xml: Fixing typo in local USE flag description (see bug 271604). diff --git a/net-misc/vpnc/vpnc-0.5.3_p449.ebuild b/net-misc/vpnc/vpnc-0.5.3_p449.ebuild new file mode 100644 index 000000000000..34f0744d4c99 --- /dev/null +++ b/net-misc/vpnc/vpnc-0.5.3_p449.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vpnc/vpnc-0.5.3_p449.ebuild,v 1.1 2009/11/10 01:42:36 fauli Exp $ + +DESCRIPTION="Free client for Cisco VPN routing software" +HOMEPAGE="http://www.unix-ag.uni-kl.de/~massar/vpnc/" +SRC_URI="http://www.unix-ag.uni-kl.de/~massar/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2 BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +IUSE="hybrid-auth bindist resolvconf" + +DEPEND=">=dev-libs/libgcrypt-1.1.91 + >=sys-apps/iproute2-2.6.19.20061214 + net-libs/gnutls" + +RDEPEND="${DEPEND} + resolvconf? ( net-dns/openresolv )" + +src_install() { + emake PREFIX="/usr" DESTDIR="${D}" install || die + dodoc README TODO VERSION || die + keepdir /var/run/vpnc + keepdir /etc/vpnc/scripts.d + newinitd "${FILESDIR}/vpnc-2.init" vpnc || die + newconfd "${FILESDIR}/vpnc.confd" vpnc || die + sed -e "s:/usr/local:/usr:" -i "${D}"/etc/vpnc/vpnc-script || die + # COPYING file resides here, should not be installed + rm -rf "${D}"/usr/share/doc/vpnc/ +} + +pkg_postinst() { + elog "You can generate a configuration file from the original Cisco profiles of your" + elog "connection by using /usr/bin/pcf2vpnc to convert the .pcf file" + elog "A guide is to be found in http://www.gentoo.org/doc/en/vpnc-howto.xml" + echo + elog "Don't forget to turn on TUN support in the kernel." +} |