packages/net/ser2net/Makefile
Morgan Christiansson e718abc23f ser2net: update to 4.5.0 (closes #21409)
This major update not only updates the ser2net daemon version,
but also migrates the UCI configuration handling to the newer
YAML configuration file format.

If you only configured ser2net using UCI, then there should
be no noticable difference and your configuration should
still work as before.

If you modified /etc/ser2net.conf before, or used custom adaptions
etc., then you must migrate to newer /etc/ser2net.yaml on your
own and/or double-check your installation - there is no automatic
migration logic during package upgrade path.

Signed-off-by: Morgan Christiansson <git@mog.se>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2023-11-05 10:41:23 +01:00

64 lines
1.5 KiB
Makefile

#
# Copyright (C) 2006-2016 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:=ser2net
PKG_VERSION:=4.5.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/ser2net
PKG_HASH:=6ee1b217aad026948fd17ea00c5ecf6e982de822384c4349118461ad83caa0da
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
CONFIGURE_ARGS += \
--with-pam=no \
--with-pthreads \
--with-sysfs-led-support
define Package/ser2net
SECTION:=net
CATEGORY:=Network
TITLE:=Serial to Network Proxy
URL:=https://sourceforge.net/projects/ser2net/
DEPENDS:=+libgensio +libyaml +libpthread
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
/etc/config/ser2net
/etc/ser2net.yaml
endef
define Package/ser2net/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc
$(INSTALL_CONF) ./files/ser2net.yaml $(1)/etc/
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/ser2net.config $(1)/etc/config/ser2net
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/ser2net.init $(1)/etc/init.d/ser2net
endef
$(eval $(call BuildPackage,ser2net))