You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.3 KiB
102 lines
2.3 KiB
11 years ago
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
11 years ago
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/libreswan/libreswan-3.7-r1.ebuild,v 1.1 2014/01/06 19:55:34 floppym Exp $
|
||
11 years ago
|
|
||
|
EAPI=5
|
||
|
|
||
|
inherit eutils systemd toolchain-funcs
|
||
|
|
||
|
if [[ ${PV} != 9999 ]]; then
|
||
|
SRC_URI="https://download.libreswan.org/${P}.tar.gz"
|
||
|
KEYWORDS="~amd64 ~ppc ~x86"
|
||
|
else
|
||
|
inherit git-r3
|
||
|
EGIT_REPO_URI="https://github.com/libreswan/libreswan.git"
|
||
|
fi
|
||
|
|
||
|
DESCRIPTION="IPsec implementation for Linux, fork of Openswan"
|
||
|
HOMEPAGE="https://libreswan.org/"
|
||
|
|
||
|
LICENSE="GPL-2 BSD-4 RSA DES"
|
||
|
SLOT="0"
|
||
|
IUSE="caps curl dnssec ldap pam"
|
||
|
|
||
|
COMMON_DEPEND="
|
||
|
dev-libs/gmp
|
||
|
dev-libs/nspr
|
||
|
caps? ( sys-libs/libcap-ng )
|
||
|
curl? ( net-misc/curl )
|
||
|
dnssec? ( net-dns/unbound net-libs/ldns )
|
||
|
ldap? ( net-nds/openldap )
|
||
|
pam? ( sys-libs/pam )
|
||
|
"
|
||
|
DEPEND="${COMMON_DEPEND}
|
||
|
app-text/docbook-xml-dtd:4.1.2
|
||
|
app-text/xmlto
|
||
11 years ago
|
dev-libs/nss
|
||
11 years ago
|
sys-devel/bison
|
||
|
sys-devel/flex
|
||
|
virtual/pkgconfig
|
||
|
"
|
||
|
RDEPEND="${COMMON_DEPEND}
|
||
11 years ago
|
dev-libs/nss[utils(+)]
|
||
11 years ago
|
sys-apps/iproute2
|
||
|
!net-misc/openswan
|
||
|
!net-misc/strongswan
|
||
|
"
|
||
|
|
||
|
src_prepare() {
|
||
|
epatch "${FILESDIR}/libreswan-3.7-curl.patch"
|
||
|
epatch "${FILESDIR}/libreswan-3.7-openrc.patch"
|
||
11 years ago
|
epatch "${FILESDIR}/libreswan-3.7-openrc-pidfile.patch"
|
||
11 years ago
|
epatch_user
|
||
|
}
|
||
|
|
||
|
usetf() {
|
||
|
usex "$1" true false
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
tc-export AR CC
|
||
|
export INC_USRLOCAL=/usr
|
||
|
export INC_MANDIR=share/man
|
||
|
export FINALEXAMPLECONFDIR=/usr/share/doc/${PF}
|
||
|
export FINALDOCDIR=/usr/share/doc/${PF}/html
|
||
|
export INITSYSTEM=openrc
|
||
|
export INC_RCDIRS=
|
||
|
export INC_RCDEFAULT=/etc/init.d
|
||
|
export USERCOMPILE=
|
||
|
export USERLINK=
|
||
|
export USE_DNSSEC=$(usetf dnssec)
|
||
|
export USE_LIBCAP_NG=$(usetf caps)
|
||
|
export USE_LIBCURL=$(usetf curl)
|
||
|
export USE_LDAP=$(usetf ldap)
|
||
|
export USE_XAUTHPAM=$(usetf pam)
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
emake programs
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake DESTDIR="${D}" install
|
||
|
sed -i -e '1s:python$:python2:' "${D}"/usr/libexec/ipsec/verify || die
|
||
|
|
||
|
echo "include /etc/ipsec.d/*.secrets" > "${D}"/etc/ipsec.secrets
|
||
|
fperms 0600 /etc/ipsec.secrets
|
||
|
|
||
|
systemd_dounit "${FILESDIR}/ipsec.service"
|
||
|
|
||
|
dodoc BUGS CHANGES README
|
||
|
dodoc -r docs
|
||
|
}
|
||
|
|
||
|
pkg_postinst() {
|
||
|
local IPSEC_CONFDIR=${ROOT%/}/etc/ipsec.d
|
||
|
if [[ ! -f ${IPSEC_CONFDIR}/cert8.db ]]; then
|
||
|
ebegin "Setting up NSS database in ${IPSEC_CONFDIR}"
|
||
|
certutil -N -d "${IPSEC_CONFDIR}" -f <(echo)
|
||
|
eend $?
|
||
|
fi
|
||
|
}
|