From: Steven Barth Date: Tue, 12 Aug 2014 16:55:27 +0000 (+0000) Subject: socat: moved to github X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=de6f2632b5ed9f6beb545b6e770f997161b65907 socat: moved to github SVN-Revision: 42155 --- diff --git a/net/socat/Makefile b/net/socat/Makefile deleted file mode 100644 index ae8d55b2e4..0000000000 --- a/net/socat/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# -# Copyright (C) 2006-2012 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:=socat -PKG_VERSION:=1.7.2.1 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 -PKG_SOURCE_URL:=http://www.dest-unreach.org/socat/download -PKG_MD5SUM:=7ddfea7e9e85f868670f94d3ea08358b - -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/socat - SECTION:=net - CATEGORY:=Network - DEPENDS:=+libpthread - TITLE:=A multipurpose relay (SOcket CAT) - URL:=http://www.dest-unreach.org/socat/ -endef - -define Package/socat/description - SoCat (for SOcket CAT) establishes two bidirectional byte streams and - transfers data between them. - Data channels may be files, pipes, devices (terminal or modem, etc.), or - sockets (Unix, IPv4, IPv6, raw, UDP, TCP, SSL). It provides forking, - logging and tracing, different modes for interprocess communication and - many more options. -endef - -CONFIGURE_ARGS += \ - --disable-libwrap \ - --disable-readline \ - --disable-openssl \ - --enable-termios - -CONFIGURE_VARS += \ - sc_cv_termios_ispeed="no" \ - sc_cv_sys_crdly_shift=9 \ - sc_cv_sys_tabdly_shift=11 \ - sc_cv_sys_csize_shift=4 - -define Package/socat/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/socat $(1)/usr/bin/ -endef - -$(eval $(call BuildPackage,socat)) diff --git a/net/socat/patches/501-honor_ldflags.patch b/net/socat/patches/501-honor_ldflags.patch deleted file mode 100644 index 0dbc77389e..0000000000 --- a/net/socat/patches/501-honor_ldflags.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/Makefile.in -+++ b/Makefile.in -@@ -38,7 +38,8 @@ INSTALL = @INSTALL@ - - #0 CFLAGS = @CFLAGS@ $(CCOPTS) $(DEFS) $(INCLS) - CFLAGS = @CFLAGS@ $(CCOPTS) $(DEFS) $(CPPFLAGS) --CLIBS = $(LIBS) -+LDFLAGS = @LDFLAGS@ -+CLIBS = $(LDFLAGS) $(LIBS) - #CLIBS = $(LIBS) -lm -lefence - XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \