pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/emulators emulators/hercules4sdl: new package



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d00619519052
branches:  trunk
changeset: 769029:d00619519052
user:      rhialto <rhialto%pkgsrc.org@localhost>
date:      Sat Nov 06 16:43:23 2021 +0000

description:
emulators/hercules4sdl: new package

The SoftDevLabs version of Hercules 4.x (Hyperion).

diffstat:

 emulators/Makefile                                |    3 +-
 emulators/hercules4sdl/DESCR                      |   15 +
 emulators/hercules4sdl/Makefile                   |   56 ++++++
 emulators/hercules4sdl/PLIST                      |  198 ++++++++++++++++++++++
 emulators/hercules4sdl/distinfo                   |   10 +
 emulators/hercules4sdl/patches/patch-Makefile.am  |   44 ++++
 emulators/hercules4sdl/patches/patch-configure.ac |   45 +++++
 emulators/hercules4sdl/patches/patch-hifr.h       |   15 +
 emulators/hercules4sdl/patches/patch-msgenu.h     |   17 +
 emulators/hercules4sdl/patches/patch-tuntap.c     |   61 ++++++
 10 files changed, 463 insertions(+), 1 deletions(-)

diffs (truncated from 514 to 300 lines):

diff -r 09542e8c903b -r d00619519052 emulators/Makefile
--- a/emulators/Makefile        Sat Nov 06 16:42:37 2021 +0000
+++ b/emulators/Makefile        Sat Nov 06 16:43:23 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.341 2021/04/08 15:43:17 nia Exp $
+# $NetBSD: Makefile,v 1.342 2021/11/06 16:43:23 rhialto Exp $
 #
 
 COMMENT=       Emulators for other machines and systems
@@ -87,6 +87,7 @@
 SUBDIR+=       haxm
 SUBDIR+=       hercules
 SUBDIR+=       hercules-images
+SUBDIR+=       hercules4sdl
 SUBDIR+=       ia64sim
 SUBDIR+=       kegs
 SUBDIR+=       keystone
diff -r 09542e8c903b -r d00619519052 emulators/hercules4sdl/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/hercules4sdl/DESCR      Sat Nov 06 16:43:23 2021 +0000
@@ -0,0 +1,15 @@
+This is an activiely developed version of emulators/hercules.
+
+Hercules is an open source software implementation of the mainframe
+System/370 and ESA/390 architectures, in addition to the new 64-bit
+z/Architecure.  Hercules runs under Linux, Windows 98, Windows NT,
+Windows 2000, and NetBSD.  Hercules was created by Roger Bowler and
+maintained by Jay Maynard.  Jan Jaeger designed and implemented many
+of the advanced features of Hercules, including dynamic
+reconfiguration, integrated console, interpretive execution, and
+z/Architecture support.
+
+Relevant mailing lists include https://groups.io/g/h390-vm and
+https://hercules-390.groups.io/g/group.
+
+This version is developed by SoftDevLabs.
diff -r 09542e8c903b -r d00619519052 emulators/hercules4sdl/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/hercules4sdl/Makefile   Sat Nov 06 16:43:23 2021 +0000
@@ -0,0 +1,56 @@
+# $NetBSD: Makefile,v 1.1 2021/11/06 16:43:23 rhialto Exp $
+
+PKGNAME=       hercules4sdl-4.3
+DISTNAME=      Release_${PKGVERSION_NOREV}
+CATEGORIES=    emulators
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=SDL-Hercules-390/}
+EXTRACT_USING= bsdtar
+DIST_SUBDIR=   hercules4sdl
+
+MAINTAINER=    rhialto%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/SDL-Hercules-390/hyperion
+COMMENT=       The SoftDevLabs version of Hercules 4.x (Hyperion)
+LICENSE=       qpl-v1.0
+
+GITHUB_PROJECT=        hyperion
+GITHUB_TAG=    Release_${PKGVERSION_NOREV}
+
+GNU_CONFIGURE= yes
+USE_TOOLS+=    autoconf automake flex gawk grep gm4 gmake perl gsed
+USE_TOOLS+=    bash
+USE_LIBTOOL=   YES
+USE_LANGUAGES+=        c
+PTHREAD_OPTS+= require
+REPLACE_BASH=  _dynamic_version
+.if ${MACHINE_ARCH} == i386
+CFLAGS+=       -march=i586
+.endif
+
+SUBST_CLASSES+=                prefix
+SUBST_STAGE.prefix=    pre-configure
+SUBST_MESSAGE.prefix=  Correcting configuration path
+SUBST_FILES.prefix=    hercules.cnf
+SUBST_SED.prefix=      -e 's,/usr/local,${PREFIX},g'
+
+CONFIGURE_ARGS+=       --enable-extpkgs=${PREFIX}/lib/hercules4sdl
+
+INSTALLATION_DIRS+=    share/examples/hercules
+
+pre-configure:
+       ${RM} ${WRKSRC}/ltdl.h ${WRKSRC}/ltdl.c
+       cd ${WRKSRC} && ./autogen.sh
+
+post-install:
+       ${INSTALL_DATA} ${WRKSRC}/hercules.cnf ${DESTDIR}${PREFIX}/share/examples/hercules/
+
+.include "../../archivers/bzip2/buildlink3.mk"
+.include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/libltdl/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../math/hercules4sdl-decnumber/buildlink3.mk"
+.include "../../math/hercules4sdl-softfloat/buildlink3.mk"
+.include "../../net/hercules4sdl-telnet/buildlink3.mk"
+.include "../../security/hercules4sdl-crypto/buildlink3.mk"
+
+.include "../../mk/pthread.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 09542e8c903b -r d00619519052 emulators/hercules4sdl/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/hercules4sdl/PLIST      Sat Nov 06 16:43:23 2021 +0000
@@ -0,0 +1,198 @@
+@comment $NetBSD: PLIST,v 1.1 2021/11/06 16:43:23 rhialto Exp $
+bin/cckd2ckd
+bin/cckd642ckd
+bin/cckdcdsk
+bin/cckdcdsk64
+bin/cckdcomp
+bin/cckdcomp64
+bin/cckddiag
+bin/cckddiag64
+bin/cckdmap
+bin/cckdswap
+bin/cckdswap64
+bin/cfba2fba
+bin/cfba642fba
+bin/ckd2cckd
+bin/ckd2cckd64
+bin/convto64
+bin/dasdcat
+bin/dasdconv
+bin/dasdconv64
+bin/dasdcopy
+bin/dasdcopy64
+bin/dasdinit
+bin/dasdinit64
+bin/dasdisup
+bin/dasdlist
+bin/dasdload
+bin/dasdload64
+bin/dasdls
+bin/dasdpdsu
+bin/dasdseq
+bin/dasdser
+bin/dmap2hrc
+bin/fba2cfba
+bin/fba2cfba64
+bin/hercifc
+bin/herclin
+bin/hercules
+bin/hetget
+bin/hetinit
+bin/hetmap
+bin/hetupd
+bin/maketape
+bin/tapecopy
+bin/tapemap
+bin/tapesplt
+bin/vmfplc2
+bin/voldsext.cmd
+lib/hercules/dyncrypt.la
+lib/hercules/dyngui.la
+lib/hercules/hdt1052c.la
+lib/hercules/hdt1403.la
+lib/hercules/hdt2703.la
+lib/hercules/hdt2880.la
+lib/hercules/hdt3088.la
+lib/hercules/hdt3270.la
+lib/hercules/hdt3420.la
+lib/hercules/hdt3505.la
+lib/hercules/hdt3525.la
+lib/hercules/hdt3705.la
+lib/hercules/hdtdummy.la
+lib/hercules/hdteq.la
+lib/hercules/hdtptp.la
+lib/hercules/hdtqeth.la
+lib/hercules/hdttcpnje.la
+lib/hercules/hdtzfcp.la
+lib/libhdt3420_not_mod.la
+lib/libherc.la
+lib/libhercd.la
+lib/libhercs.la
+lib/libherct.la
+lib/libhercu.la
+man/man1/cckddiag.1
+man/man1/dasdseq.1
+man/man1/vmfplc2.1
+man/man4/cckd.4
+share/examples/hercules/hercules.cnf
+share/hercules/TMOUNT.txt
+share/hercules/awssl-v19g
+share/hercules/awswrite.jcl
+share/hercules/cckddasd.html
+share/hercules/cckddu64.hla
+share/hercules/cckddump.hla
+share/hercules/cckdload.hla
+share/hercules/fishgui.html
+share/hercules/hercconf.html
+share/hercules/hercfaq.html
+share/hercules/hercinst.html
+share/hercules/herclic.html
+share/hercules/hercload.html
+share/hercules/hercmsca.html
+share/hercules/hercmscf.html
+share/hercules/hercmscp.html
+share/hercules/hercmsct.html
+share/hercules/hercmscu.html
+share/hercules/hercmsda.html
+share/hercules/hercmsdc.html
+share/hercules/hercmsdg.html
+share/hercules/hercmsdi.html
+share/hercules/hercmsdl.html
+share/hercules/hercmsdn.html
+share/hercules/hercmsds.html
+share/hercules/hercmsdt.html
+share/hercules/hercmsdu.html
+share/hercules/hercmsg.html
+share/hercules/hercmshd.html
+share/hercules/hercmshe.html
+share/hercules/hercmshg.html
+share/hercules/hercmshm.html
+share/hercules/hercmsht.html
+share/hercules/hercmshu.html
+share/hercules/hercmsif.html
+share/hercules/hercmsin.html
+share/hercules/hercmslc.html
+share/hercules/hercmslg.html
+share/hercules/hercmspn.html
+share/hercules/hercmspr.html
+share/hercules/hercmspu.html
+share/hercules/hercmsrd.html
+share/hercules/hercmssd.html
+share/hercules/hercmsta.html
+share/hercules/hercmstc.html
+share/hercules/hercmste.html
+share/hercules/hercmstm.html
+share/hercules/hercmsts.html
+share/hercules/hercmstt.html
+share/hercules/hercmstu.html
+share/hercules/hercmsvm.html
+share/hercules/hercnew.html
+share/hercules/hercrdr.html
+share/hercules/hercrnot.html
+share/hercules/hercsupp.html
+share/hercules/herctcp.html
+share/hercules/hercules.css
+share/hercules/hercules.html
+share/hercules/images/back.gif
+share/hercules/images/bkued.gif
+share/hercules/images/blueu.gif
+share/hercules/images/dial1.gif
+share/hercules/images/dial2.gif
+share/hercules/images/dial3.gif
+share/hercules/images/dial4.gif
+share/hercules/images/favicon.ico
+share/hercules/images/greend.gif
+share/hercules/images/greenu.gif
+share/hercules/images/hercpic-rblk-256.gif
+share/hercules/images/hercpic-rblk-80.gif
+share/hercules/images/interruptd.gif
+share/hercules/images/interruptu.gif
+share/hercules/images/loadd.gif
+share/hercules/images/loadoffu.gif
+share/hercules/images/loadonu.gif
+share/hercules/images/loadu.gif
+share/hercules/images/manoffu.gif
+share/hercules/images/manonu.gif
+share/hercules/images/note.gif
+share/hercules/images/osi-certified-60x50.jpg
+share/hercules/images/poweroffd.gif
+share/hercules/images/poweroffu.gif
+share/hercules/images/poweronoffd.gif
+share/hercules/images/poweronoffu.gif
+share/hercules/images/poweronond.gif
+share/hercules/images/powerononu.gif
+share/hercules/images/redd.gif
+share/hercules/images/redu.gif
+share/hercules/images/restartd.gif
+share/hercules/images/restartu.gif
+share/hercules/images/startd.gif
+share/hercules/images/startu.gif
+share/hercules/images/stopd.gif
+share/hercules/images/stopu.gif
+share/hercules/images/stored.gif
+share/hercules/images/storeu.gif
+share/hercules/images/sysoffu.gif
+share/hercules/images/sysonu.gif
+share/hercules/images/telnetputtyconndata.png
+share/hercules/images/telnetputtysession.png
+share/hercules/images/telnetputtyterminal.png
+share/hercules/images/telnetwin.png
+share/hercules/images/telnetwinntconnect.png
+share/hercules/images/telnetwinnttermpref.png
+share/hercules/images/translucentoffd.gif
+share/hercules/images/translucentoffu.gif
+share/hercules/images/translucentond.gif
+share/hercules/images/translucentonu.gif
+share/hercules/images/waitoffu.gif
+share/hercules/images/waitonu.gif
+share/hercules/include/footer.htmlpart
+share/hercules/include/header.htmlpart
+share/hercules/index.html
+share/hercules/rawstape.jcl
+share/hercules/rexx.html
+share/hercules/scsiboot
+share/hercules/shared.html
+share/hercules/tapeconv.jcl
+share/hercules/tasks.html
+share/hercules/telnet.html
+share/hercules/zzsacard.bin
diff -r 09542e8c903b -r d00619519052 emulators/hercules4sdl/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000



Home | Main Index | Thread Index | Old Index