2015-01-10 22:15:11 +00:00
|
|
|
#
|
2016-09-22 21:32:03 +00:00
|
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
2015-01-10 22:15:11 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ser2net
|
2023-06-19 17:34:48 +00:00
|
|
|
PKG_VERSION:=4.5.0
|
|
|
|
PKG_RELEASE:=1
|
2015-01-10 22:15:11 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/ser2net
|
2023-06-19 17:34:48 +00:00
|
|
|
PKG_HASH:=6ee1b217aad026948fd17ea00c5ecf6e982de822384c4349118461ad83caa0da
|
2015-01-10 22:15:11 +00:00
|
|
|
|
2019-09-02 13:15:08 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
2015-01-10 22:15:11 +00:00
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2016-10-16 19:33:46 +00:00
|
|
|
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
|
2015-01-10 22:15:11 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2022-02-19 09:34:33 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2022-06-10 20:46:34 +00:00
|
|
|
--with-pam=no \
|
2022-02-19 09:34:33 +00:00
|
|
|
--with-pthreads \
|
|
|
|
--with-sysfs-led-support
|
|
|
|
|
2015-01-10 22:15:11 +00:00
|
|
|
define Package/ser2net
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Serial to Network Proxy
|
2019-05-05 21:30:45 +00:00
|
|
|
URL:=https://sourceforge.net/projects/ser2net/
|
2022-02-19 09:34:33 +00:00
|
|
|
DEPENDS:=+libgensio +libyaml +libpthread
|
2015-01-10 22:15:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/description
|
|
|
|
This project provides a proxy that allows telnet/tcp connections to be made to
|
|
|
|
serial ports on a machine.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/conffiles
|
2020-05-08 21:43:57 +00:00
|
|
|
/etc/config/ser2net
|
2023-06-19 17:34:48 +00:00
|
|
|
/etc/ser2net.yaml
|
2015-01-10 22:15:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(1)/usr/sbin/
|
|
|
|
|
2015-01-10 22:15:11 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc
|
2023-06-19 17:34:48 +00:00
|
|
|
$(INSTALL_CONF) ./files/ser2net.yaml $(1)/etc/
|
2017-12-30 22:30:06 +00:00
|
|
|
|
2017-12-21 09:01:42 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_CONF) ./files/ser2net.config $(1)/etc/config/ser2net
|
|
|
|
|
2017-12-21 09:01:42 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_BIN) ./files/ser2net.init $(1)/etc/init.d/ser2net
|
2015-01-10 22:15:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ser2net))
|