7ba23075b8
- Update socat to 1.7.2.0 (main reason: avoids compile-error against kernel 3.3.5 with ext2_fs.h which seems to got removed/changed to not being used from userspace from current kernel) - remove 502-no_sslv2.patch which doesn't apply surely and looks quite outdated to me, socat isn't linked against *ssl* anyway, compiles and works fine, verified on ar71xx Michael Signed-off-by: Michael Markstaller <mm@elabnet.de> git-svn-id: svn://svn.openwrt.org/openwrt/packages@31818 3c298f89-4303-0410-b956-a3cf2f4a3e73
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
#
|
|
# 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))
|