| 1 |
# Copyright 1999-2010 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.9.ebuild,v 1.2 2010/09/17 09:48:50 robbat2 Exp $ |
| 4 |
|
| 5 |
DESCRIPTION="tinc is an easy to configure VPN implementation" |
| 6 |
HOMEPAGE="http://www.tinc-vpn.org/" |
| 7 |
SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz" |
| 8 |
|
| 9 |
LICENSE="GPL-2" |
| 10 |
SLOT="0" |
| 11 |
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86" |
| 12 |
IUSE="nls" |
| 13 |
|
| 14 |
DEPEND=">=dev-libs/openssl-0.9.7c |
| 15 |
>=dev-libs/lzo-2 |
| 16 |
>=sys-libs/zlib-1.1.4-r2 |
| 17 |
nls? ( sys-devel/gettext )" |
| 18 |
|
| 19 |
src_compile() { |
| 20 |
econf --enable-jumbograms $(use_enable nls) |
| 21 |
emake || die |
| 22 |
} |
| 23 |
|
| 24 |
src_install() { |
| 25 |
emake DESTDIR="${D}" install || die |
| 26 |
dodir /etc/tinc |
| 27 |
dodoc AUTHORS NEWS README THANKS |
| 28 |
doinitd "${FILESDIR}"/tincd |
| 29 |
doconfd "${FILESDIR}"/tinc.networks |
| 30 |
} |
| 31 |
|
| 32 |
pkg_postinst() { |
| 33 |
elog "This package requires the tun/tap kernel device." |
| 34 |
elog "Look at http://www.tinc-vpn.org/ for how to configure tinc" |
| 35 |
} |