2007-02-28 13:30:51 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-03-04 04:41:46 +00:00
|
|
|
# $Id$
|
2007-02-28 13:30:51 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=strongswan
|
|
|
|
PKG_VERSION:=2.8.2
|
2007-09-07 20:41:57 +00:00
|
|
|
PKG_RELEASE:=2
|
2007-02-28 13:30:51 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://download.strongswan.org/
|
|
|
|
PKG_MD5SUM:=57427f5b48123851a73b10d78dd4f8d6
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/strongswan/Default
|
|
|
|
TITLE:=strongSwan
|
2007-03-01 09:08:34 +00:00
|
|
|
DEPENDS:=@LINUX_2_4
|
2007-02-28 13:30:51 +00:00
|
|
|
URL:=http://www.strongswan.org/
|
|
|
|
endef
|
|
|
|
|
2007-09-07 13:10:05 +00:00
|
|
|
define Package/strongswan/Default/description
|
2007-09-07 08:34:51 +00:00
|
|
|
strongSwan is an IPsec implementation for Linux.
|
|
|
|
endef
|
|
|
|
|
2007-02-28 13:30:51 +00:00
|
|
|
define Package/strongswan
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/strongswan/Default)
|
2007-02-28 13:30:51 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+kmod-strongswan +libgmp @LINUX_2_4
|
|
|
|
TITLE+= (daemon)
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/strongswan/description
|
|
|
|
$(call Package/strongswan/Default/description)
|
|
|
|
This package contains the strongSwan user-land daemon.
|
2007-02-28 13:30:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/strongswan
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/strongswan/Default)
|
2007-02-28 13:30:51 +00:00
|
|
|
SUBMENU:=Network Support
|
|
|
|
TITLE+= (kernel module)
|
2007-03-01 09:08:34 +00:00
|
|
|
DEPENDS:=@LINUX_2_4
|
2007-02-28 13:30:51 +00:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/linux/net/ipsec/ipsec.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ipsec)
|
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/strongswan/description
|
|
|
|
$(call Package/strongswan/Default/description)
|
|
|
|
This package contains the strongSwan kernel module.
|
|
|
|
endef
|
|
|
|
|
2007-02-28 13:30:51 +00:00
|
|
|
PKG_MAKE_OPTS:= \
|
|
|
|
LINUX_RELEASE="$(LINUX_RELEASE)" \
|
|
|
|
KERNELSRC="$(LINUX_DIR)" \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
2007-03-28 00:35:26 +00:00
|
|
|
USERCOMPILE="$(TARGET_CFLAGS) -I./linux/include $(TARGET_CPPFLAGS) $(TARGET_LDFLAGS)" \
|
2007-02-28 13:30:51 +00:00
|
|
|
IPSECDIR="/usr/lib/ipsec" \
|
|
|
|
INC_USRLOCAL="/usr" \
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
$(PKG_MAKE_OPTS) \
|
2007-03-28 00:35:26 +00:00
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2007-02-28 13:30:51 +00:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
programs module install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/strongswan/install
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DIR) $(1)/etc/cron.tick
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/button
|
|
|
|
$(INSTALL_BIN) ./files/ipsec.init $(1)/etc/init.d/ipsec
|
|
|
|
$(INSTALL_BIN) ./files/ipsec.cron $(1)/etc/cron.tick/ipsec-wakeup
|
|
|
|
$(INSTALL_BIN) ./files/ipsec.iface $(1)/etc/hotplug.d/iface/65-ipsec
|
|
|
|
$(INSTALL_BIN) ./files/ipsec.button $(1)/etc/hotplug.d/button/65-ipsec
|
|
|
|
$(INSTALL_DATA) ./files/ipsec.config $(1)/etc/config/ipsec
|
|
|
|
$(INSTALL_DATA) ./files/ipsec.conf $(1)/etc/ipsec.conf
|
|
|
|
rm -rf $(1)/usr/share
|
|
|
|
rm -rf $(1)/usr/man
|
|
|
|
rm -rf $(1)/var
|
|
|
|
rm -rf $(1)/etc/rc.d
|
|
|
|
find $(1) -name \*.old | xargs rm -rf
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,strongswan))
|
|
|
|
$(eval $(call KernelPackage,strongswan))
|