parent
76356565c0
commit
640d2ce502
@ -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. |
||||
|
@ -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)
|
@ -0,0 +1 @@ |
||||
/etc/ser2net.conf |
@ -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 |
Loading…
Reference in new issue