allow the kernel to provide own series files for specific subdirs
[openwrt/svn-archive/archive.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 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=ipsec-tools
13 PKG_VERSION:=0.6.7
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=@SF/ipsec-tools
18 PKG_MD5SUM:=4fb764f282dc21cf9a656c58e13dacbb
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ipsec-tools
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=@LINUX_2_6 +libopenssl
26 TITLE:=IPsec management tools
27 URL:=http://ipsec-tools.sourceforge.net/
28 endef
29
30 CONFIGURE_ARGS += \
31 --enable-shared \
32 --enable-static \
33 --with-kernel-headers="$(LINUX_DIR)/include" \
34 --without-readline \
35 --with-openssl="$(STAGING_DIR)/usr" \
36 --without-libradius \
37 --without-libpam \
38 --enable-dpd \
39 --enable-hybrid \
40 --enable-natt
41
42 define Build/Configure
43 (cd $(PKG_BUILD_DIR); touch \
44 configure.ac \
45 aclocal.m4 \
46 Makefile.in \
47 config.h.in \
48 configure \
49 );
50 $(call Build/Configure/Default)
51 echo "#undef HAVE_SHADOW_H" >> $(PKG_BUILD_DIR)/config.h
52 endef
53
54 # override CFLAGS holding "-Werror" that break builds on compile warnings
55 define Build/Compile
56 $(MAKE) -C $(PKG_BUILD_DIR) \
57 DESTDIR="$(PKG_INSTALL_DIR)" \
58 CFLAGS="$(TARGET_CFLAGS)" \
59 all install
60 endef
61
62 define Package/ipsec-tools/install
63 $(INSTALL_DIR) $(1)/etc
64 $(INSTALL_CONF) $(PKG_BUILD_DIR)/src/racoon/samples/racoon.conf $(1)/etc/
65 $(SED) 's|@sysconfdir_x@|/etc|g' $(1)/etc/racoon.conf
66 $(INSTALL_DIR) $(1)/etc/racoon
67 $(INSTALL_CONF) $(PKG_BUILD_DIR)/src/racoon/samples/psk.txt $(1)/etc/racoon/
68 $(INSTALL_DIR) $(1)/usr/lib
69 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipsec.so.* $(1)/usr/lib/
70 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libracoon.so.* $(1)/usr/lib/
71 $(INSTALL_DIR) $(1)/usr/sbin
72 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/plainrsa-gen $(1)/usr/sbin/
73 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/racoon $(1)/usr/sbin/
74 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/racoonctl $(1)/usr/sbin/
75 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/setkey $(1)/usr/sbin/
76 endef
77
78 define Package/ipsec-tools/conffiles
79 /etc/racoon.conf
80 /etc/racoon/psk.txt
81 endef
82
83 $(eval $(call BuildPackage,ipsec-tools))