pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net
Module Name: pkgsrc
Committed By: rhialto
Date: Sat Nov 6 16:42:10 UTC 2021
Modified Files:
pkgsrc/net: Makefile
Added Files:
pkgsrc/net/hercules4sdl-telnet: DESCR Makefile PLIST buildlink3.mk
distinfo
Log Message:
net/hercules4sdl-telnet: new package
needed for emulators/hercules4sdl.
To generate a diff of this commit:
cvs rdiff -u -r1.1428 -r1.1429 pkgsrc/net/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/net/hercules4sdl-telnet/DESCR \
pkgsrc/net/hercules4sdl-telnet/Makefile \
pkgsrc/net/hercules4sdl-telnet/PLIST \
pkgsrc/net/hercules4sdl-telnet/buildlink3.mk \
pkgsrc/net/hercules4sdl-telnet/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/Makefile
diff -u pkgsrc/net/Makefile:1.1428 pkgsrc/net/Makefile:1.1429
--- pkgsrc/net/Makefile:1.1428 Mon Nov 1 21:47:12 2021
+++ pkgsrc/net/Makefile Sat Nov 6 16:42:10 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1428 2021/11/01 21:47:12 wiz Exp $
+# $NetBSD: Makefile,v 1.1429 2021/11/06 16:42:10 rhialto Exp $
#
COMMENT= Networking tools
@@ -229,6 +229,7 @@ SUBDIR+= gupnp12
SUBDIR+= gvproxy
SUBDIR+= haproxy
SUBDIR+= hdl-dump
+SUBDIR+= hercules4sdl-telnet
SUBDIR+= hesiod
SUBDIR+= hf6to4
SUBDIR+= hlfl
Added files:
Index: pkgsrc/net/hercules4sdl-telnet/DESCR
diff -u /dev/null pkgsrc/net/hercules4sdl-telnet/DESCR:1.1
--- /dev/null Sat Nov 6 16:42:10 2021
+++ pkgsrc/net/hercules4sdl-telnet/DESCR Sat Nov 6 16:42:10 2021
@@ -0,0 +1,16 @@
+Simple RFC-compliant TELNET implementation
+
+libtelnet is a library for handling the TELNET protocol. It includes routines
+for parsing incoming data from a remote peer as well as formatting data to be
+sent to the remote peer.
+
+libtelnet uses a callback-oriented API, allowing application-specific handling
+of various events. The callback system is also used for buffering outgoing
+protocol data, allowing the application to maintain control of the actual
+socket connection.
+
+Features supported include the full TELNET protocol, Q-method option
+negotiation, and NEW-ENVIRON.
+
+This version is the one used by the SoftDevLabs version of
+Hercules 4.x (Hyperion).
Index: pkgsrc/net/hercules4sdl-telnet/Makefile
diff -u /dev/null pkgsrc/net/hercules4sdl-telnet/Makefile:1.1
--- /dev/null Sat Nov 6 16:42:10 2021
+++ pkgsrc/net/hercules4sdl-telnet/Makefile Sat Nov 6 16:42:10 2021
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1 2021/11/06 16:42:10 rhialto Exp $
+
+DISTNAME= hercules4sdl-telnet-1.0.0
+PKGREVISION= 20210105
+CATEGORIES= net
+MASTER_SITES= ${MASTER_SITE_GITHUB:=SDL-Hercules-390/}
+GITHUB_PROJECT= telnet
+GITHUB_TAG= 2aca101e06ca84526c1a63c0f65e05fe11522c3b # 5 Jan 2021
+
+MAINTAINER= rhialto%NetBSD.org@localhost
+HOMEPAGE= https://github.com/SDL-Hercules-390/telnet
+COMMENT= The SoftDevLabs version of telnet library for Hercules 4.x
+LICENSE= public-domain
+
+USE_TOOLS+= cmake
+USE_LANGUAGES+= c
+
+USE_CMAKE= yes
+BLDDIR= ${WRKDIR}/telnet64.Release
+CONFIGURE_DIRS= ${BLDDIR}
+CMAKE_ARG_PATH= ${WRKSRC}
+CMAKE_ARGS+= -D INSTALL_PREFIX=${PREFIX}/lib/hercules4sdl
+
+pre-configure:
+ ${MKDIR} ${BLDDIR}
+
+post-install:
+ cd ${DESTDIR}${PREFIX}/lib/hercules4sdl/lib && ${MV} libtelnet64.a libtelnet_pic.a
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/net/hercules4sdl-telnet/PLIST
diff -u /dev/null pkgsrc/net/hercules4sdl-telnet/PLIST:1.1
--- /dev/null Sat Nov 6 16:42:10 2021
+++ pkgsrc/net/hercules4sdl-telnet/PLIST Sat Nov 6 16:42:10 2021
@@ -0,0 +1,6 @@
+@comment $NetBSD: PLIST,v 1.1 2021/11/06 16:42:10 rhialto Exp $
+lib/hercules4sdl/include/telnet.h
+lib/hercules4sdl/include/telnet_version.h
+lib/hercules4sdl/lib/libtelnet_pic.a
+lib/hercules4sdl/telnet.LICENSE.txt
+lib/hercules4sdl/telnet.README.txt
Index: pkgsrc/net/hercules4sdl-telnet/buildlink3.mk
diff -u /dev/null pkgsrc/net/hercules4sdl-telnet/buildlink3.mk:1.1
--- /dev/null Sat Nov 6 16:42:10 2021
+++ pkgsrc/net/hercules4sdl-telnet/buildlink3.mk Sat Nov 6 16:42:10 2021
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1 2021/11/06 16:42:10 rhialto Exp $
+
+BUILDLINK_TREE+= hercules4sdl-telnet
+
+.if !defined(HERCULES4SDL_TELNET_BUILDLINK3_MK)
+HERCULES4SDL_TELNET_BUILDLINK3_MK:=
+
+BUILDLINK_DEPMETHOD.hercules4sdl-telnet?= build
+
+BUILDLINK_API_DEPENDS.hercules4sdl-telnet+= hercules4sdl-telnet>=1.0.0
+BUILDLINK_PKGSRCDIR.hercules4sdl-telnet?= ../../net/hercules4sdl-telnet
+.endif # HERCULES4SDL_TELNET_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -hercules4sdl-telnet
Index: pkgsrc/net/hercules4sdl-telnet/distinfo
diff -u /dev/null pkgsrc/net/hercules4sdl-telnet/distinfo:1.1
--- /dev/null Sat Nov 6 16:42:10 2021
+++ pkgsrc/net/hercules4sdl-telnet/distinfo Sat Nov 6 16:42:10 2021
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/11/06 16:42:10 rhialto Exp $
+
+BLAKE2s (hercules4sdl-telnet-1.0.0-2aca101e06ca84526c1a63c0f65e05fe11522c3b.tar.gz) = 447e3388f2974777ce66649b2f802ae36d5292936a5943ef0ba78000c9bbad20
+SHA512 (hercules4sdl-telnet-1.0.0-2aca101e06ca84526c1a63c0f65e05fe11522c3b.tar.gz) =
78b89d4073e0952b4c5e83b98ab2f30101869a9885759515d4c452e22d665683023e33a79a7ea1957d0190d23d3c9bbcbe70a34a09b9e20edcb550d5acbca2a5
+Size (hercules4sdl-telnet-1.0.0-2aca101e06ca84526c1a63c0f65e05fe11522c3b.tar.gz) = 67165 bytes
+SHA1 (patch-cflags.txt) = ed18a2aaa1da2a7f63c94e5fc061eb9fc0e0f02f
Home |
Main Index |
Thread Index |
Old Index