82b178c30ee6bf6a3d487fba44d037775b0d5c64
[openwrt/svn-archive/archive.git] / net / nstx / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=nstx
11 PKG_VERSION:=1.1-beta6
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
15 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/n/nstx/
16 PKG_MD5SUM:=275abd75a856b07a798b1f2360088cf5
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/nstx/Default
21 SECTION:=net
22 CATEGORY:=Network
23 SUBMENU:=Firewall Tunnel
24 TITLE:=allows you to pass IP packets via DNS queries
25 URL:=http://savannah.nongnu.org/projects/nstx/
26 endef
27
28 define Package/nstx
29 $(call Package/nstx/Default)
30 TITLE+= client version
31 endef
32
33 define Package/nstx/description
34 nstx client version
35 endef
36
37 define Package/nstxd
38 $(call Package/nstx/Default)
39 TITLE+= server version
40 endef
41
42 define Package/nstxd/description
43 nstx server version
44 endef
45
46 define Build/Configure
47 endef
48
49 define Build/Compile
50 $(MAKE) -C $(PKG_BUILD_DIR) CC="$(TARGET_CC)"
51 endef
52
53 define Package/nstx/install
54 $(INSTALL_DIR) $(1)/usr/sbin
55 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nstxcd $(1)/usr/sbin/
56 endef
57
58 define Package/nstxd/install
59 $(INSTALL_DIR) $(1)/etc/init.d $(1)/usr/sbin
60 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nstxd $(1)/usr/sbin
61 endef
62
63 $(eval $(call BuildPackage,nstx))
64 $(eval $(call BuildPackage,nstxd))