X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=net%2Fptunnel%2FMakefile;h=68452af86bdd4a289cfc232a21a7e29b311d2527;hp=a7bce3761cd4476d8d82682479acadb4457c43f4;hb=7c15200e188121ea13e13c2f4e774f5c15100228;hpb=e8c79de1458186f7d5c4672272aa6c78dd4c0e5a diff --git a/net/ptunnel/Makefile b/net/ptunnel/Makefile index a7bce3761c..68452af86b 100644 --- a/net/ptunnel/Makefile +++ b/net/ptunnel/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ptunnel -PKG_VERSION:=0.61 +PKG_VERSION:=0.71 PKG_RELEASE:=1 -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.cti.ecp.fr/~beauxir5/ptunnel/ -PKG_MD5SUM:=b45f73875f2af48f101816672f83a5fe +PKG_SOURCE:=PingTunnel-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.cs.uit.no/~daniels/PingTunnel +PKG_MD5SUM:=9b04771d4fa50abc15a6af690b81c71a + +PKG_BUILD_DIR:=$(BUILD_DIR)/PingTunnel include $(INCLUDE_DIR)/package.mk @@ -26,27 +28,34 @@ define Package/ptunnel endef define Package/ptunnel/description - ptunnel is an application that allows you to reliably tunnel TCP connections to - a remote host using ICMP echo request and reply packets, commonly known as ping - requests and replies. It acts as a proxy and can handle sockets and secured - identification. + ptunnel is an application that allows you to reliably tunnel TCP connections to + a remote host using ICMP echo request and reply packets, commonly known as ping + requests and replies. It acts as a proxy and can handle sockets and secured + identification. +endef + +define Package/ptunnel/conffiles +/etc/config/ptunnel endef # uses GNU configure -define Build/Compile +define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS) -Wall -g -I$(STAGING_DIR)/usr/include" \ + LDOPTS="$(TARGET_LDFLAGS) -lpthread -lpcap" \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install endef -define Package/ptunnel/install +define Package/ptunnel/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ptunnel $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/ptunnel.init $(1)/etc/init.d/ptunnel $(INSTALL_DIR) $(1)/etc/config - $(INSTALL_DATA) ./files/ptunnel.conf $(1)/etc/config/ptunnel + $(INSTALL_CONF) ./files/ptunnel.conf $(1)/etc/config/ptunnel endef $(eval $(call BuildPackage,ptunnel))