1 |
# Copyright 1999-2004 Gentoo Technologies, Inc. |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /home/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.2.2.ebuild,v 1.3 2004/02/01 11:35:28 plasmaroo Exp $ |
4 |
|
5 |
DESCRIPTION="IPsec-Tools is a port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation." |
6 |
HOMEPAGE="http://ipsec-tools.sourceforge.net/" |
7 |
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" |
8 |
LICENSE="BSD" |
9 |
KEYWORDS="~x86" |
10 |
SLOT="0" |
11 |
IUSE="" |
12 |
DEPEND="virtual/glibc |
13 |
>=dev-libs/openssl-0.9.6" |
14 |
|
15 |
pkg_setup() { |
16 |
my_KV=`echo ${KV} | cut -f-2 -d "."` |
17 |
if [ ${my_KV} != "2.6" ] ; then |
18 |
echo; eerror "You need a 2.6.x kernel to use the ipsec tools!"; die "You need a 2.6 kernel to use ipsec-tools!" |
19 |
fi |
20 |
} |
21 |
|
22 |
src_compile() { |
23 |
unset CC |
24 |
./configure --prefix=/usr --sysconfdir=/etc --with-kernel-headers=/usr/src/linux/include || die |
25 |
emake || die |
26 |
} |
27 |
|
28 |
src_install() { |
29 |
einstall || die |
30 |
dodoc ChangeLog README NEWS |
31 |
insinto /etc && doins ${FILESDIR}/ipsec.conf.sample |
32 |
insinto /etc/conf.d && newins ${FILESDIR}/racoon.conf.d racoon |
33 |
exeinto /etc/init.d && newexe ${FILESDIR}/racoon.init.d racoon |
34 |
} |