FreeBSD Bugzilla – Attachment 211510 Details for
Bug 244003
Updated port of java/netrexx a general-purpose programming language
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
shar archive of updated NetRexx port
netrexx.shar (text/plain), 5.07 KB, created by
g_patrickb
on 2020-02-09 13:49:31 UTC
(
hide
)
Description:
shar archive of updated NetRexx port
Filename:
MIME Type:
Creator:
g_patrickb
Created:
2020-02-09 13:49:31 UTC
Size:
5.07 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># netrexx ># netrexx/pkg-descr ># netrexx/Makefile ># netrexx/distinfo ># >echo c - netrexx >mkdir -p netrexx > /dev/null 2>&1 >echo x - netrexx/pkg-descr >sed 's/^X//' >netrexx/pkg-descr << '4c97d6c755922898bd5575c6bdf4d9ce' >XNetRexx is a general-purpose programming language inspired by two >Xvery different programming languages, Rexx and Java. It is designed >Xfor people, not computers. In this respect it follows Rexx closel, >Xwith many of the concepts and most of the syntax taken directly >Xfrom Rexx or its object oriented version, Object Rexx. From Java >Xit derives static typing, binary arithmetic, the object model, >Xand exception handling. "A smart language designed for real >Xpeople, and vice versa." Originally a product from the IBM >XHursley Software Lab, NetRexx has always been free software and >Xis free and open source since June 11, 2011. It is the first >Xalternative language for the Java Virtual Machine (JVM). >X >XWhy NetRexx? >X* NetRexx makes programming easy, and fun again >X* The Rexx type, combining numeric and string processing in one class >X* Unlimited precision arithmetic built into the language >X* Interpret your code or compile to JVM .class files >X* Lightning fast performance compared to other JVM scripting languages >X* Seamless integration to all JVM libraries >X* Built-in luxurious parsing and tracing >X >XNOTE: Remember to add NetRexxC.jar to your Java CLASSPATH. >X >XWWW: http://www.netrexx.org >4c97d6c755922898bd5575c6bdf4d9ce >echo x - netrexx/Makefile >sed 's/^X//' >netrexx/Makefile << 'dcac34e9ccf0c62d5daf9385d2c043d0' >X# $FreeBSD$ >X >XPORTNAME= NetRexx >XDISTVERSION= 3.08 >XCATEGORIES= java lang >XMASTER_SITES= http://www.netrexx.org/files/ >XDISTFILES= ${PORTNAME}-${DISTVERSION}-GA.zip >X >XMAINTAINER= gary@garybainbridge.email >XCOMMENT= NetRexx is a general-purpose programming language >X >XLICENSE= ICU >XLICENSE_NAME= ${WRKSRC}/LICENSE >XLICENSE_FILE= ${WRKSRC}/LICENSE >XLICENSE_PERMS= pkg-mirror dist-mirror auto-accept >X >XUSES= zip >X >XWRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} >XNO_WRKSUBDIR= yes >X >XNO_BUILD= yes >XUSE_JAVA= yes >XJAVA_VERSION= 1.8 >X >XNO_ARCH= yes >X >XOPTIONS_DEFINE= DOCS EXAMPLES >X >XPLIST_FILES= "@mode 755" \ >X ${PORTNAME}-${DISTVERSION}/bin/NetRexxC.sh \ >X ${PORTNAME}-${DISTVERSION}/bin/nrc \ >X ${PORTNAME}-${DISTVERSION}/bin/pipc \ >X ${PORTNAME}-${DISTVERSION}/bin/pipe \ >X "@mode 644" \ >X ${PORTNAME}-${DISTVERSION}/examples/hello.nrx \ >X ${PORTNAME}-${DISTVERSION}/lib/NetRexxC.jar \ >X ${PORTNAME}-${DISTVERSION}/runlib/NetRexxR.jar \ >X ${PORTNAME}-${DISTVERSION}/documents/NetRexx\ 3.08-GA\ Language\ Reference.pdf \ >X ${PORTNAME}-${DISTVERSION}/documents/NetRexx\ 3.08-GA\ Pipelines\ Quick\ Start\ Guide.pdf \ >X ${PORTNAME}-${DISTVERSION}/documents/NetRexx\ 3.08-GA\ Programming\ Guide.pdf \ >X ${PORTNAME}-${DISTVERSION}/documents/NetRexx\ 3.08-GA\ QuickStart\ Guide.pdf \ >X ${PORTNAME}-${DISTVERSION}/documents/stages.pdf >X >Xpre-patch: >X for ${FILE} in ${WRKSRC}/bin/NetRexxC.sh ${WRKSRC}/bin/nrc ${WRKSRC}/bin/pipc \ >X ${WRKSRC}/bin/pipe ${WRKSRC}/read.me.first; do \ >X ${TR} -d '\015' < $${file} > $${file}.new; \ >X ${MV} $${file}.new $${file}; \ >X done >X >Xdo-install: >X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/bin >X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/lib >X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/runlib >X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/examples >X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/documents >X ${INSTALL_SCRIPT} ${WRKSRC}/bin/NetRexxC.sh ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/bin >X ${INSTALL_SCRIPT} ${WRKSRC}/bin/nrc ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/bin >X ${INSTALL_SCRIPT} ${WRKSRC}/bin/pipc ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/bin >X ${INSTALL_SCRIPT} ${WRKSRC}/bin/pipe ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/bin >X ${INSTALL_DATA} ${WRKSRC}/lib/NetRexxC.jar ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/lib >X ${INSTALL_DATA} ${WRKSRC}/runlib/NetRexxR.jar ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/runlib >X @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >X ${INSTALL_DATA} ${WRKSRC}/bin/hello.nrx ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/examples >X (cd ${WRKSRC}/documents && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${PORTNAME}-${DISTVERSION}/documents) >X >X @${ECHO} "==================== IBM LICENSE ====================" >X @${CAT} ${WRKSRC}/LICENSE >X @${ECHO} "-------------------------------------------------------" >X @${ECHO} "==================== IMPORTANT!! ====================" >X @${CAT} ${WRKSRC}/read.me.first >X >X.include <bsd.port.mk> >dcac34e9ccf0c62d5daf9385d2c043d0 >echo x - netrexx/distinfo >sed 's/^X//' >netrexx/distinfo << '14e71ac2067d098bd8e310d0031b8b1c' >XTIMESTAMP = 1580771811 >XSHA256 (NetRexx-3.08-GA.zip) = 216bc84172661a3c2576108dea9db7dd9a6163392ceb45dde58edcd98b17f821 >XSIZE (NetRexx-3.08-GA.zip) = 16214952 >14e71ac2067d098bd8e310d0031b8b1c >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 244003
: 211510