summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-17 15:16:21 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-17 15:16:21 +0000
commitd52614c7a7e7ab665fbb091c22688fa3718e6163 (patch)
treef6d98c08c8073c516ce97090d9b74ce43c12f59a /package
parent60eca2ac727f3259bf1d083371ff25172bd4e908 (diff)
move openswan from target/linux/package to package/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3974 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/openswan/Makefile48
-rw-r--r--package/openswan/patches/101-arp_header.patch11
2 files changed, 59 insertions, 0 deletions
diff --git a/package/openswan/Makefile b/package/openswan/Makefile
new file mode 100644
index 000000000..1f41ccff9
--- /dev/null
+++ b/package/openswan/Makefile
@@ -0,0 +1,48 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+include $(TOPDIR)/package/kernel.mk
+
+PKG_NAME:=openswan
+PKG_VERSION:=2.4.5
+PKG_RELEASE:=1
+PKG_MD5SUM:=a9a8e88313faceebfc5ceb1a9da9a3c4
+
+PKG_SOURCE_URL:=http://www.openswan.org/download
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_CAT:=zcat
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
+include $(TOPDIR)/package/rules.mk
+
+define Package/kmod-openswan
+ SECTION:=drivers
+ CATEGORY:=Drivers
+ DEPENDS:=
+ TITLE:=Openswan kernel module
+ DESCRIPTION:=Openswan kernel module \\\
+Openswan is an implementation of IPsec for Linux.
+ URL:=http://www.openswan.org/
+ VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
+endef
+
+define Build/Compile
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ $(TARGET_CONFIGURE_OPTS) \
+ LINUX_RELEASE="$(LINUX_RELEASE)" \
+ KERNELSRC="$(LINUX_DIR)" \
+ ARCH="$(LINUX_KARCH)" \
+ CROSS_COMPILE="$(TARGET_CROSS)" \
+ USERCOMPILE="$(TARGET_CFLAGS) -I$(PKG_BUILD_DIR)/linux/include -I$(STAGING_DIR)/usr/include -L$(STAGING_DIR)/usr/lib " \
+ AS="$(TARGET_CC) -c $(TARGET_CFLAGS)" \
+ module
+endef
+
+define Package/kmod-openswan/install
+ mkdir -p $(1)/lib/modules/$(LINUX_VERSION)
+ $(CP) $(PKG_BUILD_DIR)/modobj*/ipsec.$(LINUX_KMOD_SUFFIX) \
+ $(1)/lib/modules/$(LINUX_VERSION)/
+endef
+
+$(eval $(call BuildPackage,kmod-openswan))
diff --git a/package/openswan/patches/101-arp_header.patch b/package/openswan/patches/101-arp_header.patch
new file mode 100644
index 000000000..7375f65a4
--- /dev/null
+++ b/package/openswan/patches/101-arp_header.patch
@@ -0,0 +1,11 @@
+diff -Nur openswan-2.4.5rc5/linux/net/ipsec/ipsec_tunnel.c openswan-2.4.5rc5.patched/linux/net/ipsec/ipsec_tunnel.c
+--- openswan-2.4.5rc5/linux/net/ipsec/ipsec_tunnel.c 2005-11-22 05:11:52.000000000 +0100
++++ openswan-2.4.5rc5.patched/linux/net/ipsec/ipsec_tunnel.c 2006-03-29 01:13:35.000000000 +0200
+@@ -33,6 +33,7 @@
+ #include <linux/types.h> /* size_t */
+ #include <linux/interrupt.h> /* mark_bh */
+
++#include <net/arp.h>
+ #include <net/tcp.h>
+ #include <net/udp.h>
+ #include <linux/skbuff.h>