diff --git a/net/iodine/Makefile b/net/iodine/Makefile new file mode 100644 index 000000000..af97aab58 --- /dev/null +++ b/net/iodine/Makefile @@ -0,0 +1,73 @@ +# +# Copyright (C) 2006-2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=iodine +PKG_VERSION:=0.7.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://code.kryo.se/iodine/ +PKG_MD5SUM:=fdbf3b81cd69caf5230d76a8b039fd99 + +PKG_MAINTAINER:=Uwe Kleine-König +PKG_LICENSE:=ISC +PKG_LICENSE_FILES:=README + +include $(INCLUDE_DIR)/package.mk + +define Package/iodine/Default + SECTION:=net + CATEGORY:=Network + SUBMENU:=Firewall Tunnel + DEPENDS:= +kmod-tun +zlib + TITLE:=IP over DNS tunneling + URL:=http://code.kryo.se/iodine/ +endef + +define Package/iodine + $(call Package/iodine/Default) + TITLE+= client version +endef + +define Package/iodine/description + iodine client version +endef + +define Package/iodined + $(call Package/iodine/Default) + TITLE+= server version +endef + +define Package/iodined/description + iodine server version +endef + +define Build/Configure +endef + +define Package/iodine/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/iodine $(1)/usr/sbin +endef + +define Package/iodined/install + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/iodined.init $(1)/etc/init.d/iodined + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_DATA) ./files/iodined.config $(1)/etc/config/iodined + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/iodined $(1)/usr/sbin +endef + +define Package/iodined/conffiles +/etc/config/iodined +endef + +$(eval $(call BuildPackage,iodine)) +$(eval $(call BuildPackage,iodined)) diff --git a/net/iodine/files/iodined.config b/net/iodine/files/iodined.config new file mode 100644 index 000000000..f95549d7a --- /dev/null +++ b/net/iodine/files/iodined.config @@ -0,0 +1,5 @@ +config iodined + option address '' + option password '' + option tunnelip '10.0.0.1' + option tld '' diff --git a/net/iodine/files/iodined.init b/net/iodine/files/iodined.init new file mode 100644 index 000000000..d91b7793e --- /dev/null +++ b/net/iodine/files/iodined.init @@ -0,0 +1,23 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2006-2011 OpenWrt.org + +START=50 + +start_instance () { + local section="$1" + config_get address "$section" 'address' + config_get password "$section" 'password' + config_get tunnelip "$section" 'tunnelip' + config_get tld "$section" 'tld' + + service_start /usr/sbin/iodined -l "$address" -P "$password" "$tunnelip" "$tld" +} + +start() { + config_load 'iodined' + config_foreach start_instance 'iodined' +} + +stop() { + service_stop /usr/sbin/iodined +} diff --git a/net/iodine/patches/010-cross-compile.patch b/net/iodine/patches/010-cross-compile.patch new file mode 100644 index 000000000..40dfb0a70 --- /dev/null +++ b/net/iodine/patches/010-cross-compile.patch @@ -0,0 +1,24 @@ +--- iodine-0.7.0.orig/src/osflags ++++ iodine-0.7.0/src/osflags +@@ -16,12 +16,6 @@ link) + windows32) + echo '-lws2_32 -liphlpapi'; + ;; +- Linux) +- FLAGS=""; +- [ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -lselinux"; +- [ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -lsystemd-daemon"; +- echo $FLAGS; +- ;; + esac + ;; + cflags) +@@ -34,8 +28,6 @@ cflags) + ;; + Linux) + FLAGS="-D_GNU_SOURCE" +- [ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -DHAVE_SETCON"; +- [ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -DHAVE_SYSTEMD"; + echo $FLAGS; + ;; + esac