2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
16 PKG_SOURCE_URL
:=@SF
/ipsec-tools
17 PKG_MD5SUM
:=e908f3cf367e31c7902df5ab16fbe5c3
20 PKG_BUILD_DIR
:=$(BUILD_DIR
)/$(PKG_NAME
)-$(PKG_VERSION
)
21 PKG_INSTALL_DIR
:=$(PKG_BUILD_DIR
)/ipkg-install
23 include $(INCLUDE_DIR
)/package.mk
24 include $(INCLUDE_DIR
)/kernel.mk
26 define Package
/ipsec-tools
29 DEPENDS
:=@LINUX_2_6
+libopenssl
30 TITLE
:=IPsec management tools
31 URL
:=http
://ipsec-tools.sourceforge.net
/
34 define Build
/Configure
35 (cd
$(PKG_BUILD_DIR
); touch \
42 $(call Build
/Configure
/Default
, \
45 --with-kernel-headers
="$(LINUX_DIR)/include" \
47 --with-openssl
="$(STAGING_DIR)/usr" \
55 # override CFLAGS holding "-Werror" that break builds on compile warnings
57 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
58 DESTDIR
="$(PKG_INSTALL_DIR)" \
59 CFLAGS
="$(TARGET_CFLAGS)" \
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
/
76 $(eval
$(call BuildPackage
,ipsec-tools
))