Use the KernelPackage template instead of kmod-foo
[openwrt.git] / package / ipsec-tools / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ipsec-tools
12 PKG_VERSION:=0.6.6
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/ipsec-tools
17 PKG_MD5SUM:=e908f3cf367e31c7902df5ab16fbe5c3
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/kernel.mk
25
26 define Package/ipsec-tools
27   SECTION:=net
28   CATEGORY:=Network
29   DEPENDS:=@LINUX_2_6 +libopenssl
30   TITLE:=IPsec management tools
31   URL:=http://ipsec-tools.sourceforge.net/
32 endef
33
34 define Build/Configure
35         (cd $(PKG_BUILD_DIR); touch \
36                 configure.ac \
37                 aclocal.m4 \
38                 Makefile.in \
39                 config.h.in \
40                 configure \
41         );
42         $(call Build/Configure/Default, \
43                 --enable-shared \
44                 --enable-static \
45                 --with-kernel-headers="$(LINUX_DIR)/include" \
46                 --without-readline \
47                 --with-openssl="$(STAGING_DIR)/usr" \
48                 --without-libradius \
49                 --without-libpam \
50                 --enable-dpd \
51                 --enable-natt \
52         );
53 endef
54
55 # override CFLAGS holding "-Werror" that break builds on compile warnings
56 define Build/Compile
57         $(MAKE) -C $(PKG_BUILD_DIR) \
58                 DESTDIR="$(PKG_INSTALL_DIR)" \
59                 CFLAGS="$(TARGET_CFLAGS)" \
60                 all install
61 endef
62
63 define Package/ipsec-tools/install
64         $(INSTALL_DIR) $(1)/etc
65         $(INSTALL_CONF) $(PKG_BUILD_DIR)/src/racoon/samples/racoon.conf $(1)/etc/
66         $(INSTALL_DIR) $(1)/usr/lib/
67         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipsec.so.* $(1)/usr/lib/
68         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libracoon.so.* $(1)/usr/lib/
69         $(INSTALL_DIR) $(1)/usr/sbin
70         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/plainrsa-gen $(1)/usr/sbin/
71         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/racoon $(1)/usr/sbin/
72         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/racoonctl $(1)/usr/sbin/
73         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/setkey $(1)/usr/sbin/
74 endef
75
76 $(eval $(call BuildPackage,ipsec-tools))