- Upgrade to version 10.5.4.

- Add staging support.
- Fix portlint warning in pkg-descr (WWW tag).
This commit is contained in:
Jimmy Olgeni 2013-10-07 10:47:20 +00:00
parent bb02d570a4
commit 454f952c4d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329683
4 changed files with 35 additions and 32 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME= newlisp PORTNAME= newlisp
PORTVERSION= 10.5.3 PORTVERSION= 10.5.4
CATEGORIES= lang CATEGORIES= lang
MASTER_SITES= http://www.newlisp.org/downloads/ MASTER_SITES= http://www.newlisp.org/downloads/
EXTRACT_SUFX= .tgz EXTRACT_SUFX= .tgz
@ -33,7 +33,6 @@ OPTIONS_DEFINE= GMP GSL MYSQL PGSQL SQLITE GUISERV
GSL_DESC= GSL (GNU Scientific Library) GSL_DESC= GSL (GNU Scientific Library)
GUISERV_DESC= Install GUI server (in Java) GUISERV_DESC= Install GUI server (in Java)
NO_STAGE= yes
.include <bsd.port.options.mk> .include <bsd.port.options.mk>
CFLAGS+= -I${LOCALBASE}/include CFLAGS+= -I${LOCALBASE}/include
@ -92,8 +91,8 @@ PLIST_SUB+= GUISERV="@comment "
post-patch: post-patch:
@${REINPLACE_CMD} -E -e "s,install -m 644, \$${BSD_INSTALL_DATA},g" \ @${REINPLACE_CMD} -E -e "s,install -m 644, \$${BSD_INSTALL_DATA},g" \
-e "s,install -m 755, \$${BSD_INSTALL_SCRIPT},g" \ -e "s,install -m 755, \$${BSD_INSTALL_SCRIPT},g" \
-e "s,^(datadir=).*,\1${PREFIX}/share,g" \ -e "s,^(datadir=).*,\1${STAGEDIR}${PREFIX}/share,g" \
-e "s,^(bindir=).*,\1${PREFIX}/bin,g" \ -e "s,^(bindir=).*,\1${STAGEDIR}${PREFIX}/bin,g" \
${WRKSRC}/Makefile ${WRKSRC}/Makefile
@${REINPLACE_CMD} -E \ @${REINPLACE_CMD} -E \
@ -128,49 +127,49 @@ post-patch:
${WRKSRC}/newlisp.h ${WRKSRC}/newlisp.h
do-install: do-install:
${INSTALL_PROGRAM} ${WRKSRC}/newlisp ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/newlisp ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/util/newlispdoc ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/util/newlispdoc ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${DATADIR}/util @${MKDIR} ${STAGEDIR}${DATADIR}/util
${INSTALL_DATA} ${WRKSRC}/util/syntax.cgi \ ${INSTALL_DATA} ${WRKSRC}/util/syntax.cgi \
${WRKSRC}/util/newlisp.vim \ ${WRKSRC}/util/README.txt \
${WRKSRC}/util/link.lsp \
${WRKSRC}/util/httpd-conf.lsp \
${WRKSRC}/util/newlisp.jsf \ ${WRKSRC}/util/newlisp.jsf \
${DATADIR}/util ${WRKSRC}/util/newlisp.vim \
${WRKSRC}/util/standard.lsp \
${STAGEDIR}${DATADIR}/util
@${MKDIR} ${DATADIR}/modules @${MKDIR} ${STAGEDIR}${DATADIR}/modules
${INSTALL_DATA} ${MODULES:S,^,${WRKSRC}/modules/,:S,$,.lsp,} \ ${INSTALL_DATA} ${MODULES:S,^,${WRKSRC}/modules/,:S,$,.lsp,} \
${DATADIR}/modules ${STAGEDIR}${DATADIR}/modules
${INSTALL_MAN} ${WRKSRC}/doc/newlisp.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/doc/newlisp.1 ${STAGEDIR}${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/newlispdoc.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/doc/newlispdoc.1 ${STAGEDIR}${PREFIX}/man/man1
.if ${PORT_OPTIONS:MGUISERV} .if ${PORT_OPTIONS:MGUISERV}
@${MKDIR} ${DATADIR}/guiserver @${MKDIR} ${STAGEDIR}${DATADIR}/guiserver
@(cd ${WRKSRC}/guiserver/ && ${COPYTREE_SHARE} \*.lsp \ @(cd ${WRKSRC}/guiserver/ && ${COPYTREE_SHARE} \*.lsp \
${DATADIR}/guiserver/ \ ${STAGEDIR}${DATADIR}/guiserver/ \
"! -name guiserver.lsp ! -name newlisp-edit.lsp") "! -name guiserver.lsp ! -name newlisp-edit.lsp")
${INSTALL_DATA} ${WRKSRC}/guiserver/guiserver.jar ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/guiserver/guiserver.jar ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/guiserver/guiserver.lsp ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/guiserver/guiserver.lsp ${STAGEDIR}${DATADIR}
${INSTALL_SCRIPT} ${WRKSRC}/guiserver/newlisp-edit.lsp \ ${INSTALL_SCRIPT} ${WRKSRC}/guiserver/newlisp-edit.lsp \
${PREFIX}/bin/newlisp-edit ${STAGEDIR}${PREFIX}/bin/newlisp-edit
.endif .endif
.if ${PORT_OPTIONS:MDOCS} .if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR} ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}
.if ${PORT_OPTIONS:MGUISERV} .if ${PORT_OPTIONS:MGUISERV}
@${MKDIR} ${DOCSDIR}/guiserver @${MKDIR} ${STAGEDIR}${DOCSDIR}/guiserver
${INSTALL_DATA} ${WRKSRC}/guiserver/index.html \ ${INSTALL_DATA} ${WRKSRC}/guiserver/index.html \
${WRKSRC}/guiserver/guiserver.lsp.html \ ${WRKSRC}/guiserver/guiserver.lsp.html \
${DOCSDIR}/guiserver ${STAGEDIR}${DOCSDIR}/guiserver
.endif .endif
.endif .endif
.if ${PORT_OPTIONS:MEXAMPLES} .if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
.endif .endif
.include <bsd.port.mk> .include <bsd.port.mk>

View file

@ -1,2 +1,2 @@
SHA256 (newlisp-10.5.3.tgz) = a452d7f68b565376590a67516f807f13a33468f69f27bb0ac564e9fb05c5cebe SHA256 (newlisp-10.5.4.tgz) = e4561e03c89e7c89a30dfa7daf12091085a474e96b0fbbb4ee62454463175eb0
SIZE (newlisp-10.5.3.tgz) = 1631742 SIZE (newlisp-10.5.4.tgz) = 1637762

View file

@ -3,4 +3,4 @@ programs in general and in the domains of artificial intelligence (AI) and
statistics. statistics.
Author: Lutz Mueller Author: Lutz Mueller
WWW: http://www.newlisp.org/ WWW: http://www.newlisp.org/

View file

@ -1,6 +1,8 @@
bin/newlisp bin/newlisp
%%GUISERV%%bin/newlisp-edit %%GUISERV%%bin/newlisp-edit
bin/newlispdoc bin/newlispdoc
man/man1/newlisp.1.gz
man/man1/newlispdoc.1.gz
%%GUISERV%%%%PORTDOCS%%%%DOCSDIR%%/guiserver/guiserver.lsp.html %%GUISERV%%%%PORTDOCS%%%%DOCSDIR%%/guiserver/guiserver.lsp.html
%%GUISERV%%%%PORTDOCS%%%%DOCSDIR%%/guiserver/index.html %%GUISERV%%%%PORTDOCS%%%%DOCSDIR%%/guiserver/index.html
%%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CHANGES
@ -8,16 +10,18 @@ bin/newlispdoc
%%PORTDOCS%%%%DOCSDIR%%/ExpressionEvaluation.html %%PORTDOCS%%%%DOCSDIR%%/ExpressionEvaluation.html
%%PORTDOCS%%%%DOCSDIR%%/MemoryManagement.html %%PORTDOCS%%%%DOCSDIR%%/MemoryManagement.html
%%PORTDOCS%%%%DOCSDIR%%/manual_frame.html %%PORTDOCS%%%%DOCSDIR%%/manual_frame.html
%%PORTDOCS%%%%DOCSDIR%%/newLISP-10.5.3-Release.html %%PORTDOCS%%%%DOCSDIR%%/newLISP-10.5.4-Release.html
%%PORTDOCS%%%%DOCSDIR%%/newLISPdoc.html %%PORTDOCS%%%%DOCSDIR%%/newLISPdoc.html
%%PORTDOCS%%%%DOCSDIR%%/newlisp_index.html %%PORTDOCS%%%%DOCSDIR%%/newlisp_index.html
%%PORTDOCS%%%%DOCSDIR%%/newlisp_manual.html %%PORTDOCS%%%%DOCSDIR%%/newlisp_manual.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/async %%PORTEXAMPLES%%%%EXAMPLESDIR%%/async
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/client %%PORTEXAMPLES%%%%EXAMPLESDIR%%/client
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/env.cgi %%PORTEXAMPLES%%%%EXAMPLESDIR%%/env.cgi
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/finger %%PORTEXAMPLES%%%%EXAMPLESDIR%%/finger
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.cgi %%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.cgi
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.html %%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/httpd-conf.lsp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/newLISP-Excel-Import.xls %%PORTEXAMPLES%%%%EXAMPLESDIR%%/newLISP-Excel-Import.xls
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/observer %%PORTEXAMPLES%%%%EXAMPLESDIR%%/observer
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/opengl-demo-ffi.lsp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/opengl-demo-ffi.lsp
@ -87,10 +91,10 @@ bin/newlispdoc
%%DATADIR%%/modules/unix.lsp %%DATADIR%%/modules/unix.lsp
%%DATADIR%%/modules/xmlrpc-client.lsp %%DATADIR%%/modules/xmlrpc-client.lsp
%%DATADIR%%/modules/zlib.lsp %%DATADIR%%/modules/zlib.lsp
%%DATADIR%%/util/httpd-conf.lsp %%DATADIR%%/util/README.txt
%%DATADIR%%/util/link.lsp
%%DATADIR%%/util/newlisp.jsf %%DATADIR%%/util/newlisp.jsf
%%DATADIR%%/util/newlisp.vim %%DATADIR%%/util/newlisp.vim
%%DATADIR%%/util/standard.lsp
%%DATADIR%%/util/syntax.cgi %%DATADIR%%/util/syntax.cgi
@dirrm %%DATADIR%%/util @dirrm %%DATADIR%%/util
@dirrm %%DATADIR%%/modules @dirrm %%DATADIR%%/modules