diff options
author | vanilla <vanilla@FreeBSD.org> | 2003-01-16 15:33:00 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2003-01-16 15:33:00 +0800 |
commit | fea7e58ef760672a7d3d51a147e16f71fe3afde0 (patch) | |
tree | e00b62c678dcf707558b00c36bdc228d48a036a9 | |
parent | b0110f9a1057ba30d5da11f0b660041e8e85fac0 (diff) | |
download | freebsd-ports-gnome-fea7e58ef760672a7d3d51a147e16f71fe3afde0.tar.gz freebsd-ports-gnome-fea7e58ef760672a7d3d51a147e16f71fe3afde0.tar.zst freebsd-ports-gnome-fea7e58ef760672a7d3d51a147e16f71fe3afde0.zip |
Add pgaccess.
A powerful GUI PostgreSQL database administration tool and toolkit
PR: ports/46705
Submitted by: Palle Girgensohn <girgen@pingpong.net>
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/pgaccess/Makefile | 48 | ||||
-rw-r--r-- | databases/pgaccess/distinfo | 1 | ||||
-rw-r--r-- | databases/pgaccess/files/run-tcl-file | 13 | ||||
-rw-r--r-- | databases/pgaccess/pkg-comment | 1 | ||||
-rw-r--r-- | databases/pgaccess/pkg-descr | 13 | ||||
-rw-r--r-- | databases/pgaccess/pkg-plist | 314 |
7 files changed, 391 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 00f9ba8b685f..3d89d8acaa94 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -113,6 +113,7 @@ SUBDIR += p5-hp200lx-db SUBDIR += p5-postgresql-plperl SUBDIR += p5-sqlrelay + SUBDIR += pgaccess SUBDIR += php-sqlrelay SUBDIR += phpmyadmin SUBDIR += phppgadmin diff --git a/databases/pgaccess/Makefile b/databases/pgaccess/Makefile new file mode 100644 index 000000000000..fbab4248efd1 --- /dev/null +++ b/databases/pgaccess/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: PostgreSQL Pgaccess +# Date created: December 1st, 2002 +# Whom: Palle Girgensohn <girgen@pingpong.net> +# +# $FreeBSD$ +# + +PORTNAME= pgaccess +PORTVERSION= 0.98.8 +CATEGORIES= databases tcl83 tk83 +MASTER_SITES= http://www.pgaccess.org/download/ +DIST_SUBDIR= postgresql + +MAINTAINER= girgen@pingpong.net + +LIB_DEPENDS= pgtcl:${PORTSDIR}/databases/postgresql-tcltk + +TCL_VERSION?= 8.4 +PGACCESSDOCDIR= ${PREFIX}/share/doc/postgresql/pgaccess +PGACCESSDIR= ${PREFIX}/share/postgresql/pgaccess + +do-build: +.for file in pgaccess.tcl pgmonitor + @ ${SED} -e "s,%%LOCALBASE%%,${LOCALBASE},g; \ + s,%%TCL_VERSION%%,${TCL_VERSION},g; \ + s,%%PREFIX%%,${PREFIX},g; \ + s,%%PROGRAM%%,${file},g" \ + < ${FILESDIR}/run-tcl-file > ${WRKDIR}/${file:R}.sh +.endfor + +do-install: + @${MKDIR} ${PGACCESSDIR} ; \ + cd ${WRKSRC} ;\ + ${TAR} cf - `find * ! \( -path win32\* -o -path doc\* \)` | \ + ( cd ${PGACCESSDIR}; ${TAR} xf - ) ; \ + ${CHOWN} -R 0:0 ${PGACCESSDIR} +.for file in pgaccess pgmonitor + ${INSTALL_SCRIPT} ${WRKDIR}/${file}.sh ${PREFIX}/bin/${file} +.endfor +.if !defined(NOPORTDOCS) + @${MKDIR} ${PGACCESSDOCDIR} ; \ + cd ${WRKSRC}/doc/html ;\ + ${TAR} cf - * | \ + ( cd ${PGACCESSDOCDIR}; ${TAR} xf - ) ; \ + ${CHOWN} -R 0:0 ${PGACCESSDOCDIR} +.endif + +.include <bsd.port.mk> diff --git a/databases/pgaccess/distinfo b/databases/pgaccess/distinfo new file mode 100644 index 000000000000..689e066aeace --- /dev/null +++ b/databases/pgaccess/distinfo @@ -0,0 +1 @@ +MD5 (postgresql/pgaccess-0.98.8.tar.gz) = 5f24281f206369d6bc9623a11ec325ab diff --git a/databases/pgaccess/files/run-tcl-file b/databases/pgaccess/files/run-tcl-file new file mode 100644 index 000000000000..8b5b563b3648 --- /dev/null +++ b/databases/pgaccess/files/run-tcl-file @@ -0,0 +1,13 @@ +#!/bin/sh + +PATH_TO_WISH='%%LOCALBASE%%/bin/wish%%TCL_VERSION%%' +PGACCESS_HOME='%%PREFIX%%/share/postgresql/pgaccess' +PGLIB='%%LOCALBASE%%/lib' +PGPORT="${PGPORT:-5432}" + +export PATH_TO_WISH +export PGACCESS_HOME +export PGLIB +export PGPORT + +exec "${PATH_TO_WISH}" "${PGACCESS_HOME}/%%PROGRAM%%" "$@" > /dev/null diff --git a/databases/pgaccess/pkg-comment b/databases/pgaccess/pkg-comment new file mode 100644 index 000000000000..1f74b53ea09f --- /dev/null +++ b/databases/pgaccess/pkg-comment @@ -0,0 +1 @@ +A powerful GUI PostgreSQL database administration tool and toolkit diff --git a/databases/pgaccess/pkg-descr b/databases/pgaccess/pkg-descr new file mode 100644 index 000000000000..536f298fa56d --- /dev/null +++ b/databases/pgaccess/pkg-descr @@ -0,0 +1,13 @@ +PgAccess is one of the prettiest GUIs (graphical user interfaces) for +the open source database PostgreSQL. + +PgAccess is a cross-platform database management tool for PostgreSQL +written in Tcl/Tk. There are active efforts to turn it into a tool for +writing applications that can work in a distributed client-server +model (a central PostgreSQL database and remote clients). + +PgAccess was originally written by Constantin Teodorescu using Visual +Tcl, "the best tool for developing Tcl/Tk applications I've ever +seen." It is currently managed by a growing team of developers. + +WWW: http://www.pgaccess.org/ diff --git a/databases/pgaccess/pkg-plist b/databases/pgaccess/pkg-plist new file mode 100644 index 000000000000..717cf22db8d1 --- /dev/null +++ b/databases/pgaccess/pkg-plist @@ -0,0 +1,314 @@ +bin/pgaccess +bin/pgmonitor +%%PORTDOCS%%share/doc/postgresql/pgaccess/a_right.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/addindex.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/api.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/ball.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/contents.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/copyright.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/documentation.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/download.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/faq.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/features.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/formdemo.sql +%%PORTDOCS%%share/doc/postgresql/pgaccess/forms.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/forms.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/function.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/help.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/index.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/irix.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/linux1.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/maillist.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/main.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/mainwindow.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/newtable.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/newuser.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/old_index.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/permissions.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/pg93patch.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/pga-rad.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/qbtclet.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/qbtclet.tcl +%%PORTDOCS%%share/doc/postgresql/pgaccess/screenshots.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/specialchars.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/todo.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/addref.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/altern_q.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/altern_v.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/copyright.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/index.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/intro.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/irix.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/newref.txt +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/newtable.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/newtable.tga +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/problems.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/screen1.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/sel_tbl.jpg +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/start.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/tut.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/tut_edit.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/tut_new.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/tut_sel1.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/tutorial/tut_user.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/vdesigner.gif +%%PORTDOCS%%share/doc/postgresql/pgaccess/whatsnew.html +%%PORTDOCS%%share/doc/postgresql/pgaccess/win32.html +share/postgresql/pgaccess/Makefile +share/postgresql/pgaccess/README +share/postgresql/pgaccess/changelog +share/postgresql/pgaccess/copyright +share/postgresql/pgaccess/demo/README.demo +share/postgresql/pgaccess/demo/formdemo72.sql +share/postgresql/pgaccess/demo/formdemo73.sql +share/postgresql/pgaccess/extra/graph.tcl +share/postgresql/pgaccess/extra/tpe.tcl +share/postgresql/pgaccess/images/icon_button.gif +share/postgresql/pgaccess/images/icon_checkbutton.gif +share/postgresql/pgaccess/images/icon_combobox.gif +share/postgresql/pgaccess/images/icon_entry.gif +share/postgresql/pgaccess/images/icon_frame.gif +share/postgresql/pgaccess/images/icon_label.gif +share/postgresql/pgaccess/images/icon_listbox.gif +share/postgresql/pgaccess/images/icon_query.gif +share/postgresql/pgaccess/images/icon_radiobutton.gif +share/postgresql/pgaccess/images/icon_spinbox.gif +share/postgresql/pgaccess/images/icon_text.gif +share/postgresql/pgaccess/known_bugs +share/postgresql/pgaccess/lib/connections.tcl +share/postgresql/pgaccess/lib/database.tcl +share/postgresql/pgaccess/lib/diagrams.tcl +share/postgresql/pgaccess/lib/forms.tcl +share/postgresql/pgaccess/lib/functions.tcl +share/postgresql/pgaccess/lib/graphs.tcl +share/postgresql/pgaccess/lib/help.tcl +share/postgresql/pgaccess/lib/help/abort.hlp +share/postgresql/pgaccess/lib/help/add_records.hlp +share/postgresql/pgaccess/lib/help/alter_table.hlp +share/postgresql/pgaccess/lib/help/alter_user.hlp +share/postgresql/pgaccess/lib/help/author.hlp +share/postgresql/pgaccess/lib/help/begin.hlp +share/postgresql/pgaccess/lib/help/close.hlp +share/postgresql/pgaccess/lib/help/cluster.hlp +share/postgresql/pgaccess/lib/help/commit.hlp +share/postgresql/pgaccess/lib/help/copy.hlp +share/postgresql/pgaccess/lib/help/copyrights.hlp +share/postgresql/pgaccess/lib/help/create_aggregate.hlp +share/postgresql/pgaccess/lib/help/create_database.hlp +share/postgresql/pgaccess/lib/help/create_function.hlp +share/postgresql/pgaccess/lib/help/create_index.hlp +share/postgresql/pgaccess/lib/help/create_language.hlp +share/postgresql/pgaccess/lib/help/create_operator.hlp +share/postgresql/pgaccess/lib/help/create_rule.hlp +share/postgresql/pgaccess/lib/help/create_sequence.hlp +share/postgresql/pgaccess/lib/help/create_table.hlp +share/postgresql/pgaccess/lib/help/create_table_as.hlp +share/postgresql/pgaccess/lib/help/create_trigger.hlp +share/postgresql/pgaccess/lib/help/create_type.hlp +share/postgresql/pgaccess/lib/help/create_user.hlp +share/postgresql/pgaccess/lib/help/create_view.hlp +share/postgresql/pgaccess/lib/help/data_types.hlp +share/postgresql/pgaccess/lib/help/datefunc.hlp +share/postgresql/pgaccess/lib/help/declare.hlp +share/postgresql/pgaccess/lib/help/delete.hlp +share/postgresql/pgaccess/lib/help/diagrams.hlp +share/postgresql/pgaccess/lib/help/drop_aggregate.hlp +share/postgresql/pgaccess/lib/help/drop_database.hlp +share/postgresql/pgaccess/lib/help/drop_function.hlp +share/postgresql/pgaccess/lib/help/drop_index.hlp +share/postgresql/pgaccess/lib/help/drop_language.hlp +share/postgresql/pgaccess/lib/help/drop_operator.hlp +share/postgresql/pgaccess/lib/help/drop_rule.hlp +share/postgresql/pgaccess/lib/help/drop_sequence.hlp +share/postgresql/pgaccess/lib/help/drop_table.hlp +share/postgresql/pgaccess/lib/help/drop_trigger.hlp +share/postgresql/pgaccess/lib/help/drop_type.hlp +share/postgresql/pgaccess/lib/help/drop_user.hlp +share/postgresql/pgaccess/lib/help/drop_view.hlp +share/postgresql/pgaccess/lib/help/explain.hlp +share/postgresql/pgaccess/lib/help/fetch.hlp +share/postgresql/pgaccess/lib/help/form_design.hlp +share/postgresql/pgaccess/lib/help/forms.hlp +share/postgresql/pgaccess/lib/help/functions.hlp +share/postgresql/pgaccess/lib/help/geomfunc.hlp +share/postgresql/pgaccess/lib/help/grant.hlp +share/postgresql/pgaccess/lib/help/graphs.hlp +share/postgresql/pgaccess/lib/help/history.hlp +share/postgresql/pgaccess/lib/help/index.hlp +share/postgresql/pgaccess/lib/help/inheritance.hlp +share/postgresql/pgaccess/lib/help/insert.hlp +share/postgresql/pgaccess/lib/help/ipv4func.hlp +share/postgresql/pgaccess/lib/help/isolation.hlp +share/postgresql/pgaccess/lib/help/keywords.hlp +share/postgresql/pgaccess/lib/help/listen.hlp +share/postgresql/pgaccess/lib/help/load.hlp +share/postgresql/pgaccess/lib/help/lock.hlp +share/postgresql/pgaccess/lib/help/mathfunc.hlp +share/postgresql/pgaccess/lib/help/move.hlp +share/postgresql/pgaccess/lib/help/mvcc.hlp +share/postgresql/pgaccess/lib/help/new_query.hlp +share/postgresql/pgaccess/lib/help/new_table.hlp +share/postgresql/pgaccess/lib/help/newteam.hlp +share/postgresql/pgaccess/lib/help/notify.hlp +share/postgresql/pgaccess/lib/help/open_database.hlp +share/postgresql/pgaccess/lib/help/open_query.hlp +share/postgresql/pgaccess/lib/help/open_table.hlp +share/postgresql/pgaccess/lib/help/pgfunctions.hlp +share/postgresql/pgaccess/lib/help/postgresql.hlp +share/postgresql/pgaccess/lib/help/queries.hlp +share/postgresql/pgaccess/lib/help/reports.hlp +share/postgresql/pgaccess/lib/help/reset.hlp +share/postgresql/pgaccess/lib/help/revoke.hlp +share/postgresql/pgaccess/lib/help/rollback.hlp +share/postgresql/pgaccess/lib/help/scripts.hlp +share/postgresql/pgaccess/lib/help/select.hlp +share/postgresql/pgaccess/lib/help/select_into.hlp +share/postgresql/pgaccess/lib/help/sequences.hlp +share/postgresql/pgaccess/lib/help/set.hlp +share/postgresql/pgaccess/lib/help/show.hlp +share/postgresql/pgaccess/lib/help/sql_guide.hlp +share/postgresql/pgaccess/lib/help/sqlfunc.hlp +share/postgresql/pgaccess/lib/help/stringfunc.hlp +share/postgresql/pgaccess/lib/help/tables.hlp +share/postgresql/pgaccess/lib/help/unlisten.hlp +share/postgresql/pgaccess/lib/help/update.hlp +share/postgresql/pgaccess/lib/help/users.hlp +share/postgresql/pgaccess/lib/help/vacuum.hlp +share/postgresql/pgaccess/lib/help/view_table_structure.hlp +share/postgresql/pgaccess/lib/help/views.hlp +share/postgresql/pgaccess/lib/help/visual_designer.hlp +share/postgresql/pgaccess/lib/help/y2k.hlp +share/postgresql/pgaccess/lib/importexport.tcl +share/postgresql/pgaccess/lib/languages/chinese_big5 +share/postgresql/pgaccess/lib/languages/chinese_gb +share/postgresql/pgaccess/lib/languages/czech +share/postgresql/pgaccess/lib/languages/deutsch +share/postgresql/pgaccess/lib/languages/euskara +share/postgresql/pgaccess/lib/languages/francais +share/postgresql/pgaccess/lib/languages/italiano +share/postgresql/pgaccess/lib/languages/japanese +share/postgresql/pgaccess/lib/languages/magyar +share/postgresql/pgaccess/lib/languages/nederlands +share/postgresql/pgaccess/lib/languages/portugues +share/postgresql/pgaccess/lib/languages/romana +share/postgresql/pgaccess/lib/languages/russian.koi8r +share/postgresql/pgaccess/lib/languages/russian_win +share/postgresql/pgaccess/lib/languages/spanish +share/postgresql/pgaccess/lib/mainlib.tcl +share/postgresql/pgaccess/lib/plugins/pgmonitor.tcl +share/postgresql/pgaccess/lib/preferences.tcl +share/postgresql/pgaccess/lib/printer.tcl +share/postgresql/pgaccess/lib/queries.tcl +share/postgresql/pgaccess/lib/reports.tcl +share/postgresql/pgaccess/lib/scripts.tcl +share/postgresql/pgaccess/lib/sequences.tcl +share/postgresql/pgaccess/lib/stack.tcl +share/postgresql/pgaccess/lib/syntax.tcl +share/postgresql/pgaccess/lib/tables.tcl +share/postgresql/pgaccess/lib/users.tcl +share/postgresql/pgaccess/lib/views.tcl +share/postgresql/pgaccess/lib/visualqb.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/arrow.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/bitmap.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/button.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/buttonbox.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/color.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/combobox.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/dialog.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/dragsite.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/dropsite.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/dynhelp.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/entry.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/font.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/bold.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/copy.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/cut.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/dragfile.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/dragicon.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/error.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/file.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/folder.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/hourglass.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/info.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/italic.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/minus.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/new.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/opcopy.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/open.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/openfold.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/oplink.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/opmove.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/overstrike.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/palette.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/passwd.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/paste.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/plus.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/print.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/question.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/redo.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/save.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/target.xbm +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/underline.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/undo.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images/warning.gif +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/init.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/label.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/labelentry.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/labelframe.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/lang/de.rc +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/lang/en.rc +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/lang/es.rc +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/lang/fr.rc +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/listbox.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/mainframe.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/messagedlg.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/notebook.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/pagesmgr.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/panedw.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/passwddlg.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/pkgIndex.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/progressbar.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/progressdlg.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/scrollframe.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/scrollview.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/scrollw.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/separator.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/spinbox.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/titleframe.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/tree.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/utils.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/widget.tcl +share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/xpm2image.tcl +share/postgresql/pgaccess/lib/widgets/icons1.0/LICENSE +share/postgresql/pgaccess/lib/widgets/icons1.0/icons.tcl +share/postgresql/pgaccess/lib/widgets/icons1.0/pkgIndex.tcl +share/postgresql/pgaccess/lib/widgets/icons1.0/tkIcons +share/postgresql/pgaccess/lib/widgets/icons1.0/tkIcons-sample.slick +share/postgresql/pgaccess/lib/widgets/tablelist2.7/pkgIndex.tcl +share/postgresql/pgaccess/lib/widgets/tablelist2.7/scripts/mwutil.tcl +share/postgresql/pgaccess/lib/widgets/tablelist2.7/scripts/tablelistSortByColumn.tcl +share/postgresql/pgaccess/lib/widgets/tablelist2.7/scripts/tablelistWidget.tcl +share/postgresql/pgaccess/lib/widgets/tablelist2.7/scripts/tclIndex +share/postgresql/pgaccess/lib/widgets/tablelist2.7/tablelist.tcl +share/postgresql/pgaccess/pgaccess.tcl +share/postgresql/pgaccess/pgmonitor +share/postgresql/pgaccess/todo +%%PORTDOCS%%@dirrm share/doc/postgresql/pgaccess/tutorial +%%PORTDOCS%%@dirrm share/doc/postgresql/pgaccess +%%PORTDOCS%%@unexec rmdir %D/share/doc/postgresql 2> /dev/null || true +@dirrm share/postgresql/pgaccess/demo +@dirrm share/postgresql/pgaccess/extra +@dirrm share/postgresql/pgaccess/images +@dirrm share/postgresql/pgaccess/lib/help +@dirrm share/postgresql/pgaccess/lib/plugins +@dirrm share/postgresql/pgaccess/lib/languages +@dirrm share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/images +@dirrm share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1/lang +@dirrm share/postgresql/pgaccess/lib/widgets/BWidget-1.4.1 +@dirrm share/postgresql/pgaccess/lib/widgets/icons1.0 +@dirrm share/postgresql/pgaccess/lib/widgets/tablelist2.7/scripts +@dirrm share/postgresql/pgaccess/lib/widgets/tablelist2.7 +@dirrm share/postgresql/pgaccess/lib/widgets +@dirrm share/postgresql/pgaccess/lib +@dirrm share/postgresql/pgaccess +@unexec rmdir %D/share/postgresql 2> /dev/null || true |