Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/vtun: ChangeLog vtun-3.0.2.ebuild
Date: Sun, 19 Apr 2009 17:23:04
Message-Id: E1LvajO-0001ll-Eg@stork.gentoo.org
1 rbu 09/04/19 17:23:02
2
3 Modified: ChangeLog
4 Added: vtun-3.0.2.ebuild
5 Log:
6 Version bump, 3.0.2 adds compatibility to 2.x servers.
7 (Portage version: 2.1.6.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.36 net-misc/vtun/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vtun/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vtun/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vtun/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 21 Apr 2008 18:07:24 -0000 1.35
23 +++ ChangeLog 19 Apr 2009 17:23:02 -0000 1.36
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/vtun
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.35 2008/04/21 18:07:24 phreak Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.36 2009/04/19 17:23:02 rbu Exp $
30 +
31 +*vtun-3.0.2 (19 Apr 2009)
32 +
33 + 19 Apr 2009; Robert Buchholz <rbu@g.o> +vtun-3.0.2.ebuild:
34 + Version bump, 3.0.2 adds compatibility to 2.x servers.
35
36 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
37 Fix up metadata.xml. If there's no maintainer for the package, the metadata
38
39
40
41 1.1 net-misc/vtun/vtun-3.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vtun/vtun-3.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vtun/vtun-3.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vtun-3.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-3.0.2.ebuild,v 1.1 2009/04/19 17:23:02 rbu Exp $
51
52 EAPI=2
53 DESCRIPTION="Create virtual tunnels over TCP/IP networks with traffic shaping, encryption, and compression."
54 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
55 HOMEPAGE="http://vtun.sourceforge.net/"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
60 IUSE="lzo socks5 ssl zlib"
61
62 RDEPEND="ssl? ( dev-libs/openssl )
63 lzo? ( dev-libs/lzo:2 )
64 zlib? ( sys-libs/zlib )
65 socks5? ( net-proxy/dante )"
66 DEPEND="${RDEPEND}
67 sys-devel/bison"
68
69 src_configure() {
70 econf $(use_enable ssl) \
71 $(use_enable zlib) \
72 $(use_enable lzo) \
73 $(use_enable socks5 socks) \
74 --enable-shaper
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "emake install failed."
79 dodoc ChangeLog Credits FAQ README README.Setup README.Shaper TODO
80 newinitd "${FILESDIR}"/vtun.rc vtun
81 insinto etc
82 doins "${FILESDIR}"/vtund-start.conf
83 }
84
85 pkg_postinst() {
86 elog "You will need the Universal TUN/TAP driver compiled into"
87 elog "your kernel or as a module to use the associated tunnel"
88 elog "modes in vtun."
89 }