ports/103670: [NEW PORT] xotcl 1.5.1

Martin Matuska martin at matuska.org
Tue Sep 26 08:50:32 UTC 2006


>Number:         103670
>Category:       ports
>Synopsis:       [NEW PORT] xotcl 1.5.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Sep 26 08:50:21 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Martin Matuska
>Release:        FreeBSD 6.1-RELEASE-p5 amd64
>Organization:
>Environment:
System: FreeBSD 6.1-RELEASE-p5 i386 amd64
>Description:
Extended Object Tcl (for short: XOTcl, pronounced exotickle) is an object-oriented scripting 
language based on Tcl. 
>How-To-Repeat:
>Fix:
# 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:
#
#	lang/xotcl
#	lang/xotcl/files
#	lang/xotcl/files/patch-Makefile.in
#	lang/xotcl/files/patch-generic::xotclError.c
#	lang/xotcl/Makefile
#	lang/xotcl/distinfo
#	lang/xotcl/pkg-descr
#	lang/xotcl/pkg-plist
#
echo c - lang/xotcl
mkdir -p lang/xotcl > /dev/null 2>&1
echo c - lang/xotcl/files
mkdir -p lang/xotcl/files > /dev/null 2>&1
echo x - lang/xotcl/files/patch-Makefile.in
sed 's/^X//' >lang/xotcl/files/patch-Makefile.in << 'END-of-lang/xotcl/files/patch-Makefile.in'
X--- Makefile.in.orig	Wed Sep 20 09:15:14 2006
X+++ Makefile.in	Mon Sep 25 17:02:58 2006
X@@ -260,11 +260,11 @@
X #========================================================================
X # This rule installs platform-independent files, such as header files.
X #========================================================================
X-install-libraries: libraries $(DESTDIR)$(includedir) $(DESTDIR)$(pkglibdir)
X-	@echo "Installing header files in $(DESTDIR)$(includedir)"
X+install-libraries: libraries $(DESTDIR)$(pkgincludedir) $(DESTDIR)$(pkglibdir)
X+	@echo "Installing header files in $(DESTDIR)$(pkgincludedir)"
X 	@for i in $(PKG_HEADERS) ; do \
X 	    echo "    Installing $$i" ; \
X-	    $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir) ; \
X+	    $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgincludedir) ; \
X 	done;
X 	@echo "Installing Libraries to $(DESTDIR)$(pkglibdir)/"
X 	@for i in $(libdirs) ; do \
X@@ -282,7 +282,7 @@
X 	    $(INSTALL_DATA) $(src_lib_dir)/$$i $(DESTDIR)$(pkglibdir)/$$i ; \
X 	done;
X 	cat unix/pkgIndex.unix >> $(DESTDIR)$(pkglibdir)/pkgIndex.tcl
X-	$(INSTALL_DATA) xotclConfig.sh $(DESTDIR)$(libdir)/
X+	$(INSTALL_DATA) xotclConfig.sh $(DESTDIR)$(pkglibdir)/
X 	@echo "Installing Applications to $(DESTDIR)$(pkglibdir)/apps/"
X 	@for i in $(appdirs) ; do \
X 	    echo "    Installing $$i/" ; \
X@@ -529,7 +529,6 @@
X 	    else \
X 		echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \
X 		$(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \
X-		ln -s $(DESTDIR)$(pkglibdir)/$$p $(DESTDIR)$(libdir)/$$p; \
X 	    fi; \
X 	    ext=`echo $$p|sed -e "s/.*\.//"`; \
X 	    if test "x$$ext" = "xdll"; then \
X@@ -586,12 +585,12 @@
X 	  rm -f $(DESTDIR)$(bindir)/$$p; \
X 	done
X 
X-$(DESTDIR)$(includedir):
X-	$(mkinstalldirs) $@
X $(DESTDIR)$(bindir):
X 	$(mkinstalldirs)  $@
X $(DESTDIR)$(libdir):
X 	$(mkinstalldirs)  $@
X+$(DESTDIR)$(pkgincludedir):
X+	$(mkinstalldirs) $@
X $(DESTDIR)$(pkglibdir):
X 	$(mkinstalldirs)  $@
X $(DESTDIR)$(pkglibdir)/apps: $(DESTDIR)$(pkglibdir)
END-of-lang/xotcl/files/patch-Makefile.in
echo x - lang/xotcl/files/patch-generic::xotclError.c
sed 's/^X//' >lang/xotcl/files/patch-generic::xotclError.c << 'END-of-lang/xotcl/files/patch-generic::xotclError.c'
X--- generic/xotclError.c.orig	Tue Sep 26 10:28:32 2006
X+++ generic/xotclError.c	Tue Sep 26 10:29:22 2006
X@@ -80,7 +80,7 @@
X XOTclErrBadVal(Tcl_Interp *in, char *context, char *expected, char *value) {
X   Tcl_ResetResult(in);
X   Tcl_AppendResult(in, context, ": expected ", expected, " but got '", 
X-		   value, "'", 0);
X+		   value, "'", NULL);
X   return TCL_ERROR;
X }
X 
X@@ -89,7 +89,7 @@
X   fprintf(stderr, "Deprecated call, recompile your program with xotcl 1.5 or newer\n");
X   Tcl_ResetResult(in);
X   Tcl_AppendResult(in, ": expected ", expected, " but got '", 
X-		   value, "'", 0);
X+		   value, "'", NULL);
X   return TCL_ERROR;
X }
X 
X@@ -97,6 +97,6 @@
X XOTclObjErrType(Tcl_Interp *in, Tcl_Obj *nm, char* wt) {
X   Tcl_ResetResult(in);
X   Tcl_AppendResult(in,"'",ObjStr(nm), "' method should be called on '",
X-		   wt, "'", 0);
X+		   wt, "'", NULL);
X   return TCL_ERROR;
X }
END-of-lang/xotcl/files/patch-generic::xotclError.c
echo x - lang/xotcl/Makefile
sed 's/^X//' >lang/xotcl/Makefile << 'END-of-lang/xotcl/Makefile'
X# New ports collection makefile for:	xotcl
X# Date created:				Mon Sep 25 15:31:00 CET 2006
X# Whom:					Martin Matuska <martin at matuska.org>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	xotcl
XPORTVERSION=	1.5.1
XCATEGORIES=	lang tcl84
XMASTER_SITES=	http://media.wu-wien.ac.at/download/
X
XMAINTAINER=	martin at matuska.org
XCOMMENT=	Object-oriented scripting language based on Tcl
X
XGNU_CONFIGURE=	yes
XUSE_TCL=	yes
XUSE_TCL_BUILD=	yes
XALL_TARGET=	all test
XUSE_LDCONFIG=	yes
X
XOPTIONS=	AOLSERVER	"AOL server module"		off \
X		TUTORIAL	"Install XOTcl tutorial" 	off
X
XCONFIGURE_ARGS+=	--with-tcl=${TCL_LIBDIR} \
X			--with-tclinclude=${TCL_INCLUDEDIR}/generic/ \
X			--with-xotclsh
X
X.include <bsd.port.pre.mk>
X
X.if defined(WITH_AOLSERVER)
XBUILD_DEPENDS+=		${LOCALBASE}/aolserver/bin/init.tcl:${PORTSDIR}/www/aolserver
XRUN_DEPENDS+=		${BUILD_DEPENDS}
XPLIST_SUB+=		AOLSERVER=""
XINSTALL_TARGET=		install-aol
X.else
XPLIST_SUB+=		AOLSERVER="@comment "
X.endif
X
X.if defined(WITH_TUTORIAL)
XPLIST_SUB+=	TUTORIAL=""
X.else
XPLIST_SUB+=	TUTORIAL="@comment "
X.endif
X
XINSTALL_TARGET+=	install-shells
X
Xpost-install:
X.if defined(WITH_TUTORIAL)
X	${MKDIR} ${EXAMPLESDIR}/tutorial/html ${EXAMPLESDIR}/tutorial/pdf
X.for FILE in langRef-xotcl.pdf tutorial.pdf
X	${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${EXAMPLESDIR}/tutorial/pdf
X.endfor
X	@cd ${WRKSRC}; ${FIND} doc/ -type f \( -name '*.html' -or -name '*.css' -or -name '*.gif' \) \
X	-exec ${INSTALL_DATA} ${WRKSRC}/{} ${EXAMPLESDIR}/tutorial/html \;
X.endif
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR} ${DOCSDIR}/announces
X.for FILE in COPYRIGHT ChangeLog README README.aol doc/TODO
X	${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
X.endfor
X	@cd ${WRKSRC}; ${FIND} doc/ -name 'Announce-*' -type f \
X	-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DOCSDIR}/announces \;
X.endif
X
X.include <bsd.port.post.mk>
END-of-lang/xotcl/Makefile
echo x - lang/xotcl/distinfo
sed 's/^X//' >lang/xotcl/distinfo << 'END-of-lang/xotcl/distinfo'
XMD5 (xotcl-1.5.1.tar.gz) = 58aec26fadbc7934a96070e4734d5771
XSHA256 (xotcl-1.5.1.tar.gz) = 0a63ff22817b18b02a35705adb4c2c1810ff33de190a071f5476bd4d9c638bdd
XSIZE (xotcl-1.5.1.tar.gz) = 1844667
END-of-lang/xotcl/distinfo
echo x - lang/xotcl/pkg-descr
sed 's/^X//' >lang/xotcl/pkg-descr << 'END-of-lang/xotcl/pkg-descr'
XFrom the XOTcl homepage:
X
XExtended Object Tcl (for short: XOTcl, pronounced exotickle) is an object-
Xoriented scripting language based on Tcl. It was originally designed for 
Xproviding language support for design patterns and provides novel constructs 
Xsuch as filters or transitive mixin classes. The language is designed for 
Xempowering rather than constraining system developers. The basic object model 
Xis highly influenced by CLOS.
X
XXOTcl is contained in the Industry-standard Tcl distribution ActiveTcl, 
Xwhich is available for several platforms, it is part of the Batteries Included 
XDistribution for Mac OS X and it is shipped as part of the developer support 
Xfor Mac OS X Tiger. 
X
XWWW: http://media.wu-wien.ac.at/
END-of-lang/xotcl/pkg-descr
echo x - lang/xotcl/pkg-plist
sed 's/^X//' >lang/xotcl/pkg-plist << 'END-of-lang/xotcl/pkg-plist'
X%%AOLSERVER%%aolserver/modules/tcl/xotcl.tcl
Xbin/xotclsh
Xinclude/xotcl1.5.1/xotcl.h
Xinclude/xotcl1.5.1/xotclDecls.h
Xinclude/xotcl1.5.1/xotclInt.h
Xinclude/xotcl1.5.1/xotclIntDecls.h
Xlib/xotcl1.5.1/COPYRIGHT
Xlib/xotcl1.5.1/apps/COPYRIGHT
Xlib/xotcl1.5.1/apps/comm/client.pem
Xlib/xotcl1.5.1/apps/comm/filename.crt
Xlib/xotcl1.5.1/apps/comm/filename.key
Xlib/xotcl1.5.1/apps/comm/ftp.xotcl
Xlib/xotcl1.5.1/apps/comm/get-regression-nb.xotcl
Xlib/xotcl1.5.1/apps/comm/get-regression.xotcl
Xlib/xotcl1.5.1/apps/comm/link-checker.xotcl
Xlib/xotcl1.5.1/apps/comm/secure-webclient.xotcl
Xlib/xotcl1.5.1/apps/comm/secure-webserver.xotcl
Xlib/xotcl1.5.1/apps/comm/server.key
Xlib/xotcl1.5.1/apps/comm/server.pem
Xlib/xotcl1.5.1/apps/comm/test-tls-client.xotcl
Xlib/xotcl1.5.1/apps/comm/test-tls-server.xotcl
Xlib/xotcl1.5.1/apps/comm/webclient.xotcl
Xlib/xotcl1.5.1/apps/comm/webserver.xotcl
Xlib/xotcl1.5.1/apps/scripts/adapter.xotcl
Xlib/xotcl1.5.1/apps/scripts/adapterExample.xotcl
Xlib/xotcl1.5.1/apps/scripts/composite.xotcl
Xlib/xotcl1.5.1/apps/scripts/compositeExample.xotcl
Xlib/xotcl1.5.1/apps/scripts/observer.xotcl
Xlib/xotcl1.5.1/apps/scripts/parameter.xotcl
Xlib/xotcl1.5.1/apps/scripts/pinger.xotcl
Xlib/xotcl1.5.1/apps/scripts/simpleFilters.xotcl
Xlib/xotcl1.5.1/apps/scripts/soccerClub.xotcl
Xlib/xotcl1.5.1/apps/utils/xo-daemon
Xlib/xotcl1.5.1/apps/utils/xo-whichPkg
Xlib/xotcl1.5.1/apps/utils/xotclsh
Xlib/xotcl1.5.1/apps/utils/xotclsh.in
Xlib/xotcl1.5.1/apps/utils/xowish
Xlib/xotcl1.5.1/apps/utils/xowish.in
Xlib/xotcl1.5.1/comm/Access.xotcl
Xlib/xotcl1.5.1/comm/Connection.xotcl
Xlib/xotcl1.5.1/comm/Dav.xotcl
Xlib/xotcl1.5.1/comm/Ftp.xotcl
Xlib/xotcl1.5.1/comm/Httpd.xotcl
Xlib/xotcl1.5.1/comm/Imap.xotcl
Xlib/xotcl1.5.1/comm/Ldap.xotcl
Xlib/xotcl1.5.1/comm/Mime.xotcl
Xlib/xotcl1.5.1/comm/PCache.xotcl
Xlib/xotcl1.5.1/comm/pkgIndex.tcl
Xlib/xotcl1.5.1/lib/Script.xotcl
Xlib/xotcl1.5.1/lib/changeXOTclVersion.xotcl
Xlib/xotcl1.5.1/lib/htmllib.xotcl
Xlib/xotcl1.5.1/lib/make.xotcl
Xlib/xotcl1.5.1/lib/makeDoc.xotcl
Xlib/xotcl1.5.1/lib/metadataAnalyzer.xotcl
Xlib/xotcl1.5.1/lib/mixinStrategy.xotcl
Xlib/xotcl1.5.1/lib/package.xotcl
Xlib/xotcl1.5.1/lib/pkgIndex.tcl
Xlib/xotcl1.5.1/lib/staticMetadata.xotcl
Xlib/xotcl1.5.1/lib/test.xotcl
Xlib/xotcl1.5.1/lib/trace.xotcl
Xlib/xotcl1.5.1/lib/upvarcompat.xotcl
Xlib/xotcl1.5.1/lib/wafecompat.tcl
Xlib/xotcl1.5.1/lib/xodoc.xotcl
Xlib/xotcl1.5.1/libxotcl1.5.1.so
Xlib/xotcl1.5.1/libxotclstub1.5.1.a
Xlib/xotcl1.5.1/pkgIndex.tcl
Xlib/xotcl1.5.1/serialize/RecoveryPoint.xotcl
Xlib/xotcl1.5.1/serialize/ScriptCreator.xotcl
Xlib/xotcl1.5.1/serialize/Serializer.xotcl
Xlib/xotcl1.5.1/serialize/pkgIndex.tcl
Xlib/xotcl1.5.1/xotclConfig.sh
X%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT
X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
X%%PORTDOCS%%%%DOCSDIR%%/README
X%%PORTDOCS%%%%DOCSDIR%%/README.aol
X%%PORTDOCS%%%%DOCSDIR%%/TODO
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-0.9.3
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-0.9.4
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.0.1
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.0.2
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.1.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.1.1
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.2.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.1
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.3
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.4
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.5
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.6
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.7
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.8
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.3.9
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.4.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.4.1
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.5.0
X%%PORTDOCS%%%%DOCSDIR%%/announces/Announce-1.5.1
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/JufGdbmStorage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/MemStorage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/MultiStorage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/Persistence-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/Script-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/Serializer-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/Storage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/TclGdbmStorage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/TextFileStorage-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/UNIVERSAL-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/adapter-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/adapterExample-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/cascaded-message-filter.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/changeXOTclVersion-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/composite-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/compositeExample-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/features.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/filter-inheritance.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/forwardtest-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/ftp-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/htmllib-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/index.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/langRef-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/link-checker-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/make-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/makeDoc-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/metadataAnalyzer-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/mixinStrategy-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/next-path-mixin-movement.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/next-path.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/obj_class_system.gif
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/observer-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/package-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/parameter-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/persistenceExample-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/pinger-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/secure-webclient-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/secure-webserver-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/simpleFilters-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/slottest-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/soccerClub-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/speedtest-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/staticMetadata-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/test-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/testo-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/testx-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/trace-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/tutorial.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/upvarcompat-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/webclient-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/webserver-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/xo-daemon.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/xo-whichPkg.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/xocomm-test.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/xodoc-xotcl.html
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/html/xotcl-doc.css
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/pdf/langRef-xotcl.pdf
X%%TUTORIAL%%%%EXAMPLESDIR%%/tutorial/pdf/tutorial.pdf
X%%TUTORIAL%%@dirrm %%EXAMPLESDIR%%/tutorial/html
X%%TUTORIAL%%@dirrm %%EXAMPLESDIR%%/tutorial/pdf
X%%TUTORIAL%%@dirrm %%EXAMPLESDIR%%/tutorial
X%%TUTORIAL%%@dirrm %%EXAMPLESDIR%%
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/announces
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X at dirrm include/xotcl1.5.1
X at dirrm lib/xotcl1.5.1/apps/comm
X at dirrm lib/xotcl1.5.1/apps/scripts
X at dirrm lib/xotcl1.5.1/apps/utils
X at dirrm lib/xotcl1.5.1/apps
X at dirrm lib/xotcl1.5.1/comm
X at dirrm lib/xotcl1.5.1/lib
X at dirrm lib/xotcl1.5.1/serialize
X at dirrm lib/xotcl1.5.1
END-of-lang/xotcl/pkg-plist
exit

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list