summaryrefslogtreecommitdiff
path: root/x11-toolkits/gnocl
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2010-12-24 21:20:06 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2010-12-24 21:20:06 +0000
commit4d5016d451e8becef53d7a2fe3c593b001f23047 (patch)
treeb8a0edd15c4171d0787f94159c4e0f23ff614adc /x11-toolkits/gnocl
parentAdd log2timeline, a log file parser for computer forensic investigations. (diff)
- Update to 0.9.95
- Unbreak
Notes
Notes: svn path=/head/; revision=266856
Diffstat (limited to 'x11-toolkits/gnocl')
-rw-r--r--x11-toolkits/gnocl/Makefile109
-rw-r--r--x11-toolkits/gnocl/distinfo5
-rw-r--r--x11-toolkits/gnocl/files/patch-Makefile41
-rw-r--r--x11-toolkits/gnocl/pkg-plist231
4 files changed, 18 insertions, 368 deletions
diff --git a/x11-toolkits/gnocl/Makefile b/x11-toolkits/gnocl/Makefile
index ea8ac6480d5a..ac91e5b9c626 100644
--- a/x11-toolkits/gnocl/Makefile
+++ b/x11-toolkits/gnocl/Makefile
@@ -6,109 +6,32 @@
#
PORTNAME= gnocl
-PORTVERSION= 0.9.94
-PORTREVISION= 3
+PORTVERSION= 0.9.95
CATEGORIES= x11-toolkits devel
-MASTER_SITES= SF/${PORTNAME}/Gnocl-Nightly-Build/${PORTVERSION}
-DISTNAME= ${PORTNAME}${PORTVERSION}
+MASTER_SITES= SF/${PORTNAME}/Gnocl-Nightly-Build/
MAINTAINER= gahr@FreeBSD.org
COMMENT= GTK+ and Gnome extension for Tcl
+LIB_DEPENDS= canberra.0:${PORTSDIR}/audio/libcanberra
+
USE_GMAKE= yes
-USE_ZIP= yes
-USE_GNOME= gtk20 libglade2 gtksourceview2 gtkhtml3 gnomelibs
-USE_TCL= 84
+USE_BZIP2= yes
+USE_GNOME= gtk20 libglade2
+USE_TCL= 84+
USE_LDCONFIG= yes
+CFLAGS+= -I${TCL_INCLUDEDIR} -L${TCL_LIBDIR} `pkg-config --cflags libglade-2.0`
-BROKEN= does not compile
-
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
BUILD_WRKSRC= ${WRKSRC}/src
-CFLAGS+= -I${LOCALBASE}/include/tcl8.4
-
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == amd64
-CFLAGS+= -fPIC
-.endif
-
-GNOCL_CANVAS_FILE="lib/libgnoclCanvas.so.1"
-GNOCL_GCONF_FILE="lib/libgnoclGconf.so.1"
-GNOCL_GNOME_FILE="lib/libgnoclGnome.so.1"
-GNOCL_VFS_FILE="lib/libgnoclVFS.so.1"
-
-.if defined(WITHOUT_CANVAS)
-GNOCL_CANVAS_FILE= "@comment "
-.else
-USE_GNOME+= libgnomecanvas
-.endif
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
-.if defined(WITHOUT_GNOME)
-GNOCL_GNOME_FILE= "@comment "
-.else
-USE_GNOME+= libgnomeui gnomepanel
-.endif
-
-.if defined(WITHOUT_GNOMEVFS2)
-GNOCL_VFS_FILE= "@comment "
-.else
-USE_GNOME+= gnomevfs2
-.endif
-
-PLIST_SUB+= GNOCL_CANVAS_FILE=${GNOCL_CANVAS_FILE}
-PLIST_SUB+= GNOCL_GCONF_FILE=${GNOCL_GCONF_FILE}
-PLIST_SUB+= GNOCL_GNOME_FILE=${GNOCL_GNOME_FILE}
-PLIST_SUB+= GNOCL_VFS_FILE=${GNOCL_VFS_FILE}
-
-post-extract:
- ${FIND} ${WRKSRC} -name "*.o" -delete
- ${RMDIR} ${WRKSRC}/doc/html # Remove empty/stale directory
+BASEDIR= lib/${PORTNAME}${PORTVERSION}
+PLIST_FILES= ${BASEDIR}/${PORTNAME}.so \
+ ${BASEDIR}/pkgIndex.tcl
+PLIST_DIRS= ${BASEDIR}
post-patch:
-.if !defined(WITHOUT_CANVAS)
- ${REINPLACE_CMD} -e 's=^#USE_CANVAS=USE_CANVAS=' ${BUILD_WRKSRC}/Makefile
-.endif
-.if !defined(WITHOUT_GCONF)
- ${REINPLACE_CMD} -e 's=^#USE_GCONF=USE_GCONF=' ${BUILD_WRKSRC}/Makefile
-.endif
-.if !defined(WITHOUT_GNOME)
- ${REINPLACE_CMD} -e 's=^#USE_GNOME=USE_GNOME=' ${BUILD_WRKSRC}/Makefile
-.endif
-.if !defined(WITHOUT_GNOMEVFS2)
- ${REINPLACE_CMD} -e 's=^#USE_VFS=USE_VFS=' ${BUILD_WRKSRC}/Makefile
-.endif
- ${FIND} ${WRKSRC}/demos -name "*.tcl" | ${XARGS} \
- ${REINPLACE_CMD} -i "" -e 's|tclsh|${TCLSH}|g; \
- s|package require Gnocl|load ${PREFIX}/lib/libgnocl.so.1; package require Gnocl|g; \
- s|package require GnoclCanvas|load ${PREFIX}/lib/libgnoclCanvas.so.1; package require GnoclCanvas|g; \
- s|package require GnoclGconf|load ${PREFIX}/lib/libgnoclGconf.so.1; package require GnoclGconf|g; \
- s|package require GnoclGnome|load ${PREFIX}/lib/libgnoclGnome.so.1; package require GnoclGnome|g; \
- s|package require GnoclVFS|load ${PREFIX}/lib/libgnoclVFS.so.1; package require GnoclVFS|g'
-
-do-install:
- ${INSTALL_DATA} ${BUILD_WRKSRC}/gnocl.so ${PREFIX}/lib/libgnocl.so.1
- if ${TEST} -f ${BUILD_WRKSRC}/gnoclCanvas.so; then \
- ${INSTALL_DATA} ${BUILD_WRKSRC}/gnoclCanvas.so ${PREFIX}/lib/libgnoclCanvas.so.1; \
- fi; \
- if ${TEST} -f ${BUILD_WRKSRC}/gnoclGconf.so; then \
- ${INSTALL_DATA} ${BUILD_WRKSRC}/gnoclGconf.so ${PREFIX}/lib/libgnoclGconf.so.1; \
- fi; \
- if ${TEST} -f ${BUILD_WRKSRC}/gnoclGnome.so; then \
- ${INSTALL_DATA} ${BUILD_WRKSRC}/gnoclGnome.so ${PREFIX}/lib/libgnoclGnome.so.1; \
- fi; \
- if ${TEST} -f ${BUILD_WRKSRC}/gnoclVFS.so; then \
- ${INSTALL_DATA} ${BUILD_WRKSRC}/gnoclVFS.so ${PREFIX}/lib/libgnoclVFS.so.1; \
- fi; \
-
-post-install:
-.if !defined(NOPORTDOCS)
- ${INSTALL} -d ${DOCSDIR}
- (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR})
-.endif
-.if !defined(NOPORTEXAMPLES)
- ${INSTALL} -d ${EXAMPLESDIR}
- (cd ${WRKSRC}/demos && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
-.endif
+ ${REINPLACE_CMD} -e 's|tclsh|${TCLSH}|;s|$$(TCL_VERSION)|${TCL_VER:S/.//}|g' ${BUILD_WRKSRC}/Makefile
+ ${REINPLACE_CMD} -e 's|\[info library\]|${PREFIX}/lib|; s|tclsh|${TCLSH}|g;' ${BUILD_WRKSRC}/install.tcl
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/x11-toolkits/gnocl/distinfo b/x11-toolkits/gnocl/distinfo
index e548021f213b..fc425018b388 100644
--- a/x11-toolkits/gnocl/distinfo
+++ b/x11-toolkits/gnocl/distinfo
@@ -1,3 +1,2 @@
-MD5 (gnocl0.9.94.zip) = 98cc57435767d5e795f0cdff71eb2cc9
-SHA256 (gnocl0.9.94.zip) = fb8f3f59823730eec2a8545c350ef8b2e1868240f96f92c5d9c47114fa7f4584
-SIZE (gnocl0.9.94.zip) = 2827319
+SHA256 (gnocl-0.9.95.tar.bz2) = babbdfc1e9bcc9f0c50375fd34566386e12cd025dae33f65c9a13c45c962009d
+SIZE (gnocl-0.9.95.tar.bz2) = 983928
diff --git a/x11-toolkits/gnocl/files/patch-Makefile b/x11-toolkits/gnocl/files/patch-Makefile
deleted file mode 100644
index dc415286d900..000000000000
--- a/x11-toolkits/gnocl/files/patch-Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
---- src/Makefile.orig 2009-07-06 09:07:59.000000000 +0200
-+++ src/Makefile 2009-07-06 09:10:12.000000000 +0200
-@@ -45,7 +45,7 @@
-
- # for releases use -Os, this makes the lib 15% smaller
- # amd64 need -fPIC, x86 works with and without
--CFLAGS += -Wall -pedantic -fPIC
-+CFLAGS += -Wall -fPIC
- GTK_24 := $(shell pkg-config --atleast-version=2.4 'gtk+-2.0' && echo yes)
- GTK_26 := $(shell pkg-config --atleast-version=2.6 'gtk+-2.0' && echo yes)
-
-@@ -55,22 +55,23 @@
- GTK_212 := $(shell pkg-config --atleast-version=2.12 'gtk+-2.0' && echo yes)
-
- # get tclsh to tell us which version of Tcl is installed on the system
--TCL_VERSION := $(shell echo 'puts $$tcl_version' | tclsh)
-+TCL_VERSION := 84
-
- # this breaks build on GTK 2.4
- # -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED
- export ADDCFLAGS := -DVERSION=\"$(VERSION)\" \
- -DUSE_TCL_STUBS $(shell pkg-config \
- --cflags gtk+-2.0) \
-- -I/usr/include/tcl$(TCL_VERSION) \
-- -I/usr/local/include/gtksourceview-2.0 \
-- -I/usr/include/libglade-2.0/ \
-- -I/usr/local/include/gtkhtml /
-+ -I${LOCALBASE}/tcl$(TCL_VERSION) \
-+ -I${LOCALBASE}/include/gtksourceview-2.0 \
-+ -I${LOCALBASE}/include/libglade-2.0 \
-+ -I${LOCALBASE}/include/gtkhtml
-
- # don't forget to add libs for new widgets!!
- export LIBS := $(shell pkg-config \
- --libs gtk+-2.0 libglade-2.0 vte) \
-- -ltclstub$(TCL_VERSION)
-+ -ltclstub$(TCL_VERSION) \
-+ -L${LOCALBASE}/lib
-
- ############################################################
- # There should be no need to edit something below this line
diff --git a/x11-toolkits/gnocl/pkg-plist b/x11-toolkits/gnocl/pkg-plist
deleted file mode 100644
index f4c977b5c2fe..000000000000
--- a/x11-toolkits/gnocl/pkg-plist
+++ /dev/null
@@ -1,231 +0,0 @@
-lib/libgnocl.so.1
-%%GNOCL_CANVAS_FILE%%
-%%GNOCL_GCONF_FILE%%
-%%GNOCL_GNOME_FILE%%
-%%GNOCL_VFS_FILE%%
-%%PORTDOCS%%%%DOCSDIR%%/examples/button.tcl
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4259.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8902.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r547.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9914.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/t118.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/x165.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9674.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/index.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r586.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6227.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2845.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r7006.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5240.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1988.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5768.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r3025.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6423.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1987.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1075.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10267.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/a11175.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8984.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2843.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r355.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4983.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/a11176.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/a11173.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8793.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10843.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2483.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8563.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6543.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8704.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r3424.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4668.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2842.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r7952.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9824.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1461.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6897.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r7760.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10031.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5890.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9330.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9102.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r7725.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1656.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r499.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5554.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5114.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10639.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10422.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2844.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r438.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4864.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r796.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4423.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5400.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1765.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6060.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r5638.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2464.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r3625.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8030.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r3218.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/a11174.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2256.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r11010.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r6702.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r9219.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1926.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r408.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r2671.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r1365.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r8128.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r10734.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r571.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/x351.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r4533.html
-%%PORTDOCS%%%%DOCSDIR%%/gnocl/r3834.html
-%%PORTDOCS%%%%DOCSDIR%%/pics/comboBox.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/notebook.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/progressBar.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/spinButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menuBar.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/fileChooserButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/scrolledWindow.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menuSeparator.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/percentString.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/combo.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/scale.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/gnoclBanner.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/expander.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/colorButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/toolBar.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/toggleButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/box.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/image.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/canvas.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/dialog.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/window.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menuItem.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/eventBox.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/checkButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menuCheckItem.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/fontSelection.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/socket.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/appletFactory.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/handleBox.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/entry.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/tree.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/fileChooser.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/label.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/stockButtons.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/fontButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/simple.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/helloWorld.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/text.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/paned.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/list.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menuRadioItem.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/optionMenu.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/table.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/linkButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/statusBar.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/arrowButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/comboEntry.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/button.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/radioButton.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/separator.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/menu.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/colorSelection.png
-%%PORTDOCS%%%%DOCSDIR%%/pics/gnocl_logo.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-lines.tcl-bcp20040921
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-lines.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-bpath.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-widget.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-text.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-tags.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/canvas-man.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-clipGroup.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-richText.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-affine.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/canvas/test-canvas-polygon.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deprecated/test-optionMenu.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deprecated/test-combo.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doTests
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed-tk.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/floppybuddy.gif
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gconf/test-gconf.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnome/test-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnome/README.applet
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnome/gnocl_test_applet.server
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnome/canvas.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnome/gnocl-applet
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jitter.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mini.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/one.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/outfile
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/regexp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/socket-man.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/socket.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-aboutDialog.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-action.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-align-hor.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-align-vert.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-box.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-box2.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-box3.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-button.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-check.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-checkButton.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-clipboard.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-comboBox.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-comboEntry.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-dialog.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-dnd.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-entry.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-eventBox.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-expander.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-fileChooser.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-image.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-label.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-list.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-menu.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-menu2.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-notebook.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-paned.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/two.jpg
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-plug.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-progressBar.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-radio.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-radioButton.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-scale.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-scrolledWindow.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-selectors.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-sizeGroup.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-spinButton.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-statusBar.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-table-col.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-table-row.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-table.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-table2.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-text.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-toolBar.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-tree.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-window.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/three.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vfs/q.zip
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vfs/q
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vfs/test-vfs.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vfs/q3.zip
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets.tcl
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/vfs
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gnome
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gconf
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/deprecated
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/canvas
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/gnocl
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/pics
-%%PORTDOCS%%@dirrm %%DOCSDIR%%