F: configs/pine64_sopine_defconfig
N: James Hilliard <james.hilliard1@gmail.com>
+F: package/gensio/
F: package/lua-std-debug/
F: package/lua-std-normalize/
F: package/pipewire/
source "package/flickcurl/Config.in"
source "package/fmlib/Config.in"
source "package/freeradius-client/Config.in"
+ source "package/gensio/Config.in"
source "package/geoip/Config.in"
source "package/glib-networking/Config.in"
source "package/grpc/Config.in"
--- /dev/null
+config BR2_PACKAGE_GENSIO
+ bool "gensio"
+ depends on BR2_USE_MMU # fork()
+ help
+ A library to abstract stream I/O like serial port, TCP,
+ telnet, UDP, SSL, IPMI SOL, etc.
+
+ https://github.com/cminyard/gensio
--- /dev/null
+# From https://sourceforge.net/projects/ser2net/files/ser2net/
+md5 34e1d41fff06fe7d3b98887fff6c2e90 gensio-1.3.3.tar.gz
+sha1 50f3901378cab229594cfab4dafe4b6846957524 gensio-1.3.3.tar.gz
+# Locally computed:
+sha256 26f94b4fb8d689fc381c5fa7aa04db84b97785016c00e2bad8803d1bc668aa9b gensio-1.3.3.tar.gz
+sha256 501f3108e6c03e5a0a5585ebaaa369171aead5319cd0a7a4dc1f66211c1f09f1 COPYING
+sha256 dcac7d447dd81ab96d28dce00a07a6486e623f7ded94e2a2a8e83312405cdf89 COPYING.LIB
--- /dev/null
+################################################################################
+#
+# gensio
+#
+################################################################################
+
+GENSIO_VERSION = 1.3.3
+GENSIO_SITE = http://downloads.sourceforge.net/project/ser2net/ser2net
+GENSIO_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (tools)
+GENSIO_LICENSE_FILES = COPYING.LIB COPYING
+GENSIO_INSTALL_STAGING = YES
+GENSIO_CONF_OPTS = \
+ --without-openipmi \
+ --without-swig \
+ --without-python
+
+# configure script by default searches host paths for openssl,
+# breaking cross compilation. Disable this by explicitly pointing it
+# at STAGING_DIR no matter if we have openssl enabled or not as it
+# will correctly disable openssl support if not found there
+GENSIO_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr
+
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+GENSIO_DEPENDENCIES += openssl
+endif
+
+ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
+GENSIO_CONF_OPTS += --with-pthreads
+else
+GENSIO_CONF_OPTS += --without-pthreads
+endif
+
+$(eval $(autotools-package))