summaryrefslogtreecommitdiffstats
path: root/package/shat
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-02 12:46:32 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-02 12:46:32 +0000
commita908d0e6250a7047f6dab76b7f031b2f93159c29 (patch)
tree696b959f096fbbea3458abf1e5e8d6bddf3ba66c /package/shat
parente937ecf08ed14a7b0df658c0a9eb8ce5027753c1 (diff)
shat from Georg Lukas
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@785 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/shat')
-rw-r--r--package/shat/Config.in6
-rw-r--r--package/shat/Makefile50
-rw-r--r--package/shat/shat.control8
3 files changed, 64 insertions, 0 deletions
diff --git a/package/shat/Config.in b/package/shat/Config.in
new file mode 100644
index 000000000..a7d38872c
--- /dev/null
+++ b/package/shat/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_SHAT
+ tristate "shat (Source Hardware Address Translation)"
+ default m if CONFIG_DEVEL
+ help
+ A tool which allows hosts with arbitrary IP configuration
+ to connect to the internet over a SHAT gateway.
diff --git a/package/shat/Makefile b/package/shat/Makefile
new file mode 100644
index 000000000..4b845052d
--- /dev/null
+++ b/package/shat/Makefile
@@ -0,0 +1,50 @@
+#############################################################
+#
+# shat
+#
+#############################################################
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=shat
+PKG_VERSION:=0.9.3
+PKG_RELEASE:=1
+PKG_MD5SUM:=9784cbee03529e6dab5fda683233dc32
+PKG_SOURCE_URL:=http://world.maxina.de/src/
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/src
+PKG_CAT:=zcat
+PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
+PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg
+
+$(DL_DIR)/$(PKG_SOURCE):
+ $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
+
+$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE)
+ $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $(PKG_BUILD_DIR)/.unpacked
+
+$(PKG_BUILD_DIR)/shatd: $(PKG_BUILD_DIR)/.unpacked
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
+ CFLAGS="$(TARGET_CFLAGS) -Wall -I$(PKG_BUILD_DIR)/include/linux/include -I$(PKG_BUILD_DIR)/include -DVERSION=\\\"$(PKG_VERSION)\\\" -DDROP_NETBIOS"
+
+$(PKG_IPK): $(PKG_BUILD_DIR)/shatd
+ $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
+ mkdir -p $(PKG_IPK_DIR)/usr/sbin
+ cp $(PKG_BUILD_DIR)/shatd $(PKG_IPK_DIR)/usr/sbin/
+ cp $(PKG_BUILD_DIR)/shatc $(PKG_IPK_DIR)/usr/sbin/
+ $(STRIP) $(PKG_IPK_DIR)/usr/sbin/*
+ mkdir -p $(PACKAGE_DIR)
+ $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR)
+
+$(IPKG_STATE_DIR)/info/shat.list: $(PKG_IPK)
+ $(IPKG) install $(PKG_IPK)
+
+source: $(DL_DIR)/$(PKG_SOURCE)
+prepare: $(PKG_BUILD_DIR)/.unpacked
+compile: $(PKG_IPK)
+install: $(IPKG_STATE_DIR)/info/shat.list
+
+clean:
+ rm -rf $(PKG_BUILD_DIR)
+ rm -f $(PKG_IPK)
diff --git a/package/shat/shat.control b/package/shat/shat.control
new file mode 100644
index 000000000..bbbf07499
--- /dev/null
+++ b/package/shat/shat.control
@@ -0,0 +1,8 @@
+Package: shat
+Priority: optional
+Section: net
+Version: 0.9.3-1
+Architecture: mipsel
+Maintainer: Georg Lukas <georg@boerde.de>
+Source: buildroot internal
+Description: Source Hardware Address Translation - a tool for "nomadic routing"