mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
lang/nx - update to 2.0.0
Announce: https://next-scripting.org/xowiki/Ann2_0_0
This commit is contained in:
parent
b3ca051270
commit
1fc62a20d0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=399358
5 changed files with 32 additions and 1210 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= nx
|
||||
DISTVERSION= 2.0b5
|
||||
DISTVERSION= 2.0.0
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= SF/next-scripting/${DISTVERSION}/
|
||||
DISTNAME= nsf${DISTVERSION}
|
||||
|
@ -16,23 +16,19 @@ OPTIONS_DEFINE= DOCS
|
|||
|
||||
CONFLICTS= xotcl-1.*
|
||||
|
||||
USES+= tcl:85+
|
||||
USES+= gmake tcl:85+
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS+=--exec-prefix=${PREFIX} \
|
||||
--with-tcl=${TCL_LIBDIR} \
|
||||
--with-tclinclude=${TCL_INCLUDEDIR}
|
||||
TEST_TARGET= test
|
||||
PLIST_SUB+= PKGNAME=${DISTNAME}
|
||||
PORTDOCS= *
|
||||
|
||||
post-patch:
|
||||
${CP} ${FILESDIR}/genStubs.tcl ${WRKSRC}
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
regression-test: build
|
||||
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${DISTNAME}/lib${DISTNAME}.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (nsf2.0b5.tar.gz) = 089dae6a7f0fb7514292bedaf691e4ecce7d344241d0c8a45a9f0408ac1e45fd
|
||||
SIZE (nsf2.0b5.tar.gz) = 2365035
|
||||
SHA256 (nsf2.0.0.tar.gz) = 5f637f35712164788bb83df5b40b132d4c3e0201d40af48699852f8a7e12c128
|
||||
SIZE (nsf2.0.0.tar.gz) = 3784090
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,20 +1,20 @@
|
|||
--- Makefile.in.orig 2013-06-07 12:07:24.000000000 +0200
|
||||
+++ Makefile.in 2013-11-11 12:17:28.000000000 +0100
|
||||
@@ -665,7 +665,7 @@
|
||||
#
|
||||
|
||||
genstubs:
|
||||
- $(TCLSH) $(TCL_SRC_DIR)/tools/genStubs.tcl $(src_generic_dir) \
|
||||
+ $(TCLSH) genStubs.tcl $(src_generic_dir) \
|
||||
$(src_generic_dir)/nsf.decls $(src_generic_dir)/nsfInt.decls
|
||||
|
||||
#
|
||||
@@ -752,7 +752,7 @@
|
||||
--- Makefile.in.orig 2014-12-06 13:58:42.000000000 +0000
|
||||
+++ Makefile.in 2015-10-15 18:32:24.161848000 +0000
|
||||
@@ -413,7 +413,7 @@
|
||||
rm -rf $(DESTDIR)$(pkglibdir)/$$i ; \
|
||||
$(INSTALL_DATA) $(src_lib_dir)/$$i $(DESTDIR)$(pkglibdir)/$$i ; \
|
||||
done;
|
||||
- @mkdir -p $(DESTDIR)$(libdir)/tcl8/site-tcl
|
||||
+ #@mkdir -p $(DESTDIR)$(libdir)/tcl8/ite-tcl
|
||||
@for i in $(srcdir)/tcl8/site-tcl/*.tm ; do \
|
||||
if test -f $$i; then \
|
||||
echo " Installing module $$i in $(DESTDIR)$(libdir)/tcl8/site-tcl" ; \
|
||||
@@ -804,7 +804,7 @@
|
||||
else \
|
||||
echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \
|
||||
$(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \
|
||||
- ln -s $(DESTDIR)$(pkglibdir)/$$p $(DESTDIR)$(libdir)/$$p; \
|
||||
+ ln -s $(pkglibdir)/$$p $(DESTDIR)$(libdir)/$$p; \
|
||||
+ ln -s $(PKG_DIR)/$$p $(DESTDIR)$(libdir)/$$p; \
|
||||
fi; \
|
||||
ext=`echo $$p|sed -e "s/.*\.//"`; \
|
||||
if test "x$$ext" = "xdll"; then \
|
||||
|
|
|
@ -6,25 +6,22 @@ include/nsf.h
|
|||
include/nsfDecls.h
|
||||
include/nsfInt.h
|
||||
include/nsfIntDecls.h
|
||||
lib/libnsf.so.1
|
||||
lib/lib%%PKGNAME%%.so
|
||||
lib/%%PKGNAME%%/COPYRIGHT
|
||||
lib/%%PKGNAME%%/lib/make.tcl
|
||||
lib/%%PKGNAME%%/lib/mkIndex.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-callback.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-help.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-pp.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-test.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-traits.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-volatile.tcl
|
||||
lib/%%PKGNAME%%/lib/nx-zip.tcl
|
||||
lib/%%PKGNAME%%/lib/nxdoc-core.tcl
|
||||
lib/%%PKGNAME%%/lib/nxdoc-dc.tcl
|
||||
lib/%%PKGNAME%%/lib/nxdoc-html.tcl
|
||||
lib/%%PKGNAME%%/lib/nxdoc-xodoc.tcl
|
||||
lib/%%PKGNAME%%/lib/nxdoc-xowiki.tcl
|
||||
lib/%%PKGNAME%%/lib/pkgIndex.tcl
|
||||
lib/%%PKGNAME%%/libnsf.so.1
|
||||
lib/%%PKGNAME%%/libnsfstub.a
|
||||
lib/%%PKGNAME%%/lib%%PKGNAME%%.so
|
||||
lib/%%PKGNAME%%/libnsfstub2.0.0.a
|
||||
lib/%%PKGNAME%%/nx/class-method.tcl
|
||||
lib/%%PKGNAME%%/nx/nx.tcl
|
||||
lib/%%PKGNAME%%/nx/nxdocIndex.tcl
|
||||
lib/%%PKGNAME%%/nx/pkgIndex.tcl
|
||||
lib/%%PKGNAME%%/nx/plain-object-method.tcl
|
||||
lib/%%PKGNAME%%/pkgIndex.tcl
|
||||
|
@ -60,5 +57,12 @@ lib/%%PKGNAME%%/xotcl/serialize/Serializer.xotcl
|
|||
lib/%%PKGNAME%%/xotcl/serialize/pkgIndex.tcl
|
||||
lib/%%PKGNAME%%/xotcl/xotcl2.tcl
|
||||
lib/nsfConfig.sh
|
||||
man/man1/nxsh.1.gz
|
||||
man/man1/nxwish.1.gz
|
||||
man/man1/xotclsh.1.gz
|
||||
man/man1/xowish.1.gz
|
||||
man/man3/Class.3.gz
|
||||
man/man3/Object.3.gz
|
||||
man/man3/configure.3.gz
|
||||
man/man3/current.3.gz
|
||||
man/man3/next.3.gz
|
||||
|
|
Loading…
Add table
Reference in a new issue