]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blame - pkgs/strongswan/strongswan.nm
avahi: Update to 0.6.30.
[people/amarx/ipfire-3.x.git] / pkgs / strongswan / strongswan.nm
CommitLineData
c6a74bfb
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = strongswan
926324f9
MT
28PKG_VER = 4.5.3
29PKG_REL = 1
c6a74bfb
MT
30
31PKG_MAINTAINER =
bb7d617c 32PKG_GROUPS = Networking/VPN
c6a74bfb
MT
33PKG_URL = http://www.strongswan.org/
34PKG_LICENSE = GPL
35PKG_SUMMARY = IPsec and IKEv1 implementation for Linux 2.4 and 2.6 kernels.
36
a154f66f
MT
37PKG_BUILD_DEPS+= bison flex gmp-devel gperf libcap-devel libcurl-devel \
38 libgcrypt-devel openldap-devel perl sqlite-devel
c6a74bfb
MT
39
40define PKG_DESCRIPTION
41 StrongSwan is a complete IPsec and IKEv1 implementation for \
42 Linux 2.4 and 2.6 kernels. It also fully supports the new IKEv2 \
43 protocol with Linux 2.6 kernels. It interoperates in both IKEv1 \
44 and IKEv2 mode with most other IPsec-based VPN products.
45endef
46
926324f9
MT
47# Plugins and many other files are installed in /usr/lib/ipsec
48# and loaded by using a RPATH.
49QUALITY_AGENT_WHITELIST_RPATH = /usr/lib/ipsec
50
51PKG_TARBALL = $(THISAPP).tar.gz
c6a74bfb
MT
52
53CONFIGURE_OPTIONS += \
54 --sysconfdir=/etc \
55 --libexecdir=/usr/lib \
56 --with-user=nobody \
57 --with-group=nobody \
58 --enable-curl \
59 --enable-ldap \
60 --enable-sqlite \
61 --enable-gcrypt \
62 --enable-padlock \
63 --enable-cisco-quirks \
64 --with-capabilities=libcap
65
c6a74bfb
MT
66define STAGE_TEST
67 cd $(DIR_APP) && make check
68endef