2006-08-08 09:42:32 +00:00
|
|
|
#
|
2010-02-19 00:14:01 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-08-08 09:42:32 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2009-09-26 12:20:11 +00:00
|
|
|
|
2006-08-08 09:42:32 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ser2net
|
2009-12-10 12:29:30 +00:00
|
|
|
PKG_VERSION:=2.7
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_RELEASE:=2
|
2009-09-26 12:20:11 +00:00
|
|
|
|
2006-08-08 09:42:32 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/ser2net
|
2009-12-10 12:29:30 +00:00
|
|
|
PKG_MD5SUM:=22977477789868923a5de09a85e847dd
|
2009-09-26 12:20:11 +00:00
|
|
|
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2006-08-08 09:42:32 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ser2net
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Serial port TCP/IP redirector
|
2006-10-30 13:51:50 +00:00
|
|
|
URL:=http://sourceforge.net/projects/ser2net/
|
2006-08-08 09:42:32 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/ser2net/description
|
2009-09-26 12:20:11 +00:00
|
|
|
This is ser2net, a program for allowing network connections to serial ports.
|
|
|
|
See the man page for information about using the program. Note that ser2net
|
|
|
|
supports RFC 2217 (remote control of serial port parameters), but you must
|
|
|
|
have a complient client.
|
2007-10-14 04:32:56 +00:00
|
|
|
endef
|
|
|
|
|
2006-08-08 09:42:32 +00:00
|
|
|
define Package/ser2net/conffiles
|
|
|
|
/etc/ser2net.conf
|
|
|
|
endef
|
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
# uses GNU configure
|
2006-08-08 09:42:32 +00:00
|
|
|
|
|
|
|
define Package/ser2net/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(1)/usr/sbin/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc
|
2009-09-26 12:20:11 +00:00
|
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/ser2net.conf $(1)/etc/
|
2006-08-08 09:42:32 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ser2net))
|