1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 22:24:32 +03:00

add ser2net from hazimin fauzi, thx

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3377 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
wbx 2006-03-15 13:11:29 +00:00
parent 5f21150713
commit f59578a083
7 changed files with 68 additions and 1 deletions

View File

@ -40,6 +40,7 @@ source "package/sablevm-classpath/Config.in"
source "package/libffi-sable/Config.in"
endmenu
source "package/sane-backends/Config.in"
source "package/ser2net/Config.in"
menu "rrdtool........................... Round-Robin Database (RRD) libraries and tools"
source "package/rrdtool/Config.in"
source "package/rrdtool1/Config.in"

View File

@ -210,6 +210,7 @@ package-$(BR2_PACKAGE_SCANLOGD) += scanlogd
package-$(BR2_PACKAGE_SCDP) += scdp
package-$(BR2_PACKAGE_SCREEN) += screen
package-$(BR2_PACKAGE_SDK) += sdk
package-$(BR2_PACKAGE_SER2NET) += ser2net
package-$(BR2_PACKAGE_SERDISPLIB) += serdisplib
package-$(BR2_PACKAGE_SETPWC) += setpwc
package-$(BR2_PACKAGE_SETSERIAL) += setserial

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_BITLBEE
tristate
default m if CONFIG_DEVEL
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_LIBGLIB
select BR2_PACKAGE_GLIB1
select BR2_PACKAGE_LIBICONV
help

10
package/ser2net/Config.in Normal file
View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_SER2NET
prompt "ser2net........................... Serial port TCP/IP redirector"
tristate
default m if CONFIG_DEVEL
help
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.

49
package/ser2net/Makefile Normal file
View File

@ -0,0 +1,49 @@
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=ser2net
PKG_VERSION:=2.3
PKG_RELEASE:=1
PKG_MD5SUM:=5f83a3e8aec18331cb61069dccdfba47
PKG_SOURCE_URL:=@SF/ser2net/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,SER2NET,ser2net,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
(cd $(PKG_BUILD_DIR); \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--sysconfdir=/etc \
);
touch $@
$(PKG_BUILD_DIR)/.built:
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
touch $@
$(IPKG_SER2NET):
install -d -m0755 $(IDIR_SER2NET)/usr/sbin
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(IDIR_SER2NET)/usr/sbin
install -d -m0755 $(IDIR_SER2NET)/etc
cp -fpR $(PKG_BUILD_DIR)/ser2net.conf $(IDIR_SER2NET)/etc
$(RSTRIP) $(IDIR_SER2NET)
$(IPKG_BUILD) $(IDIR_SER2NET) $(PACKAGE_DIR)

View File

@ -0,0 +1 @@
/etc/ser2net.conf

View File

@ -0,0 +1,5 @@
Package: ser2net
Priority: optional
Section: net
Source: http://jaist.dl.sourceforge.net/sourceforge/ser2net/
Description: a program for allowing network connections to serial ports