diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-07-06 13:34:22 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-07-06 13:34:22 +0000 |
commit | f3882dc527d04cdd4ba1079344381af6f9f5b7dc (patch) | |
tree | 9707baddc5424f4393dc4bdc92f39faaf321f838 | |
parent | Stable on ppc64; bug #184334 (diff) | |
download | gentoo-2-f3882dc527d04cdd4ba1079344381af6f9f5b7dc.tar.gz gentoo-2-f3882dc527d04cdd4ba1079344381af6f9f5b7dc.tar.bz2 gentoo-2-f3882dc527d04cdd4ba1079344381af6f9f5b7dc.zip |
OpenSSL is needed also build time - links to libcrypto, uses includes.
(Portage version: 2.1.3_rc6)
-rw-r--r-- | net-misc/vtun/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/vtun/vtun-3.0.1.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-misc/vtun/ChangeLog b/net-misc/vtun/ChangeLog index f71074e6f2b3..f2536cd9a311 100644 --- a/net-misc/vtun/ChangeLog +++ b/net-misc/vtun/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/vtun # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.33 2007/07/05 17:22:15 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/ChangeLog,v 1.34 2007/07/06 13:34:22 drac Exp $ + + 06 Jul 2007; Samuli Suominen <drac@gentoo.org> vtun-3.0.1.ebuild: + OpenSSL is needed also build time - links to libcrypto, uses includes. 05 Jul 2007; Raúl Porcel <armin76@gentoo.org> vtun-2.6-r1.ebuild: alpha stable diff --git a/net-misc/vtun/vtun-3.0.1.ebuild b/net-misc/vtun/vtun-3.0.1.ebuild index 9b338193de3a..4b44d5695e7a 100644 --- a/net-misc/vtun/vtun-3.0.1.ebuild +++ b/net-misc/vtun/vtun-3.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-3.0.1.ebuild,v 1.2 2007/07/05 17:30:49 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-3.0.1.ebuild,v 1.3 2007/07/06 13:34:22 drac Exp $ DESCRIPTION="Create virtual tunnels over TCP/IP networks with traffic shaping, encryption, and compression." SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -11,13 +11,14 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" IUSE="lzo socks5 ssl zlib" -RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6c )" -DEPEND="${RDEPEND} +RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6c ) lzo? ( >=dev-libs/lzo-2 ) zlib? ( sys-libs/zlib ) - socks5? ( net-proxy/dante ) + socks5? ( net-proxy/dante )" +DEPEND="${RDEPEND} sys-devel/bison" + src_compile() { econf $(use_enable ssl) \ $(use_enable zlib) \ |