mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
databases/pgaccess: revert removal
This reverts commit c7292eb0fa
per
maintainer request. Re-do distinfo with timestamp so it can be
committed.
PR: 277665
This commit is contained in:
parent
948cf90cfc
commit
5c58c2ee72
7 changed files with 449 additions and 1 deletions
1
MOVED
1
MOVED
|
@ -3272,4 +3272,3 @@ net/iaxmodem||2024-05-29|Has expired: outdated and uses end-of-life version of G
|
|||
www/mod_auth_openid||2024-05-29|Has expired: Depends on expired devel/libopkele
|
||||
devel/libopkele||2024-05-29|Has expired: Last upstream release was in 2009
|
||||
graphics/vkd3d||2024-05-30|No consumers in ports
|
||||
databases/pgaccess||2024-06-02|Abandonware since 2014, crashes on startup
|
||||
|
|
|
@ -559,6 +559,7 @@
|
|||
SUBDIR += pg_similarity
|
||||
SUBDIR += pg_stat_kcache
|
||||
SUBDIR += pg_tileserv
|
||||
SUBDIR += pgaccess
|
||||
SUBDIR += pgadmin3
|
||||
SUBDIR += pgagroal
|
||||
SUBDIR += pgbackrest
|
||||
|
|
52
databases/pgaccess/Makefile
Normal file
52
databases/pgaccess/Makefile
Normal file
|
@ -0,0 +1,52 @@
|
|||
PORTNAME= pgaccess
|
||||
PORTVERSION= 1.00.20140902
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= databases tcl tk
|
||||
MASTER_SITES= https://BSDforge.com/projects/source/databases/pgaccess/
|
||||
|
||||
MAINTAINER= portmaster@bsdforge.com
|
||||
COMMENT= Powerful PostgreSQL database GUI administration tool and toolkit
|
||||
WWW= https://BSDforge.com/projects/databases/pgaccess/
|
||||
|
||||
LICENSE= BSD4CLAUSE
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/pgtcl/pkgIndex.tcl:databases/pgtcl
|
||||
|
||||
USES= pgsql tk tar:xz
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
DOCSDIR= ${PREFIX}/share/doc/postgresql/${PORTNAME}
|
||||
PGACCESSDIR= ${PREFIX}/share/postgresql/${PORTNAME}
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s,/usr/bin,${PREFIX}/bin,g ; " ${WRKSRC}/lib/mainlib.tcl
|
||||
@${RM} ${WRKSRC}/lib/mainlib.tcl.bak
|
||||
|
||||
do-build:
|
||||
.for targetfile in pgaccess.tcl pgmonitor
|
||||
@ ${SED} -e "s,%%LOCALBASE%%,${LOCALBASE},g; \
|
||||
s,%%WISH%%,${WISH},g; \
|
||||
s,%%PREFIX%%,${PREFIX},g; \
|
||||
s,%%PROGRAM%%,${targetfile},g" \
|
||||
< ${FILESDIR}/run-tcl-file > ${WRKDIR}/${targetfile:R}.sh
|
||||
.endfor
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${STAGEDIR}${PGACCESSDIR} ; \
|
||||
cd ${WRKSRC} ;\
|
||||
${TAR} cf - `${FIND} * ! \( -path win32\* -o -path doc\* \)` | \
|
||||
( cd ${STAGEDIR}${PGACCESSDIR}; ${TAR} xf - )
|
||||
.for targetfile in pgaccess pgmonitor
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/${targetfile}.sh ${STAGEDIR}${PREFIX}/bin/${targetfile}
|
||||
.endfor
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR} ; \
|
||||
cd ${WRKSRC}/doc/html ;\
|
||||
${TAR} cf - * | \
|
||||
( cd ${STAGEDIR}${DOCSDIR}; ${TAR} xf - )
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/pgaccess/distinfo
Normal file
3
databases/pgaccess/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1717539455
|
||||
SHA256 (pgaccess-1.00.20140902.tar.xz) = b024e651f28533bdb04bdc4c2f908be4860cce080f5aa18e0f91677ef936b65a
|
||||
SIZE (pgaccess-1.00.20140902.tar.xz) = 1094440
|
13
databases/pgaccess/files/run-tcl-file
Normal file
13
databases/pgaccess/files/run-tcl-file
Normal file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
PATH_TO_WISH='%%WISH%%'
|
||||
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
|
11
databases/pgaccess/pkg-descr
Normal file
11
databases/pgaccess/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
PgAccess is a pretty GUI (Graphical User Interface) 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 the developers at BSDforge.com.
|
369
databases/pgaccess/pkg-plist
Normal file
369
databases/pgaccess/pkg-plist
Normal file
|
@ -0,0 +1,369 @@
|
|||
bin/pgaccess
|
||||
bin/pgmonitor
|
||||
%%PORTDOCS%%%%DOCSDIR%%/a_right.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/addindex.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/api.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ball.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/contents.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/copyright.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/documentation.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/download.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/faq.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/features.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/formdemo.sql
|
||||
%%PORTDOCS%%%%DOCSDIR%%/forms.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/forms.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/function.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/irix.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/linux1.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/maillist.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/main.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/mainwindow.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newtable.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newuser.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/old_index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/permissions.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/pg93patch.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/pga-rad.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/qbtclet.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/qbtclet.tcl
|
||||
%%PORTDOCS%%%%DOCSDIR%%/screenshots.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/specialchars.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/todo.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/addref.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/altern_q.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/altern_v.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/copyright.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/intro.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/irix.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/newref.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/newtable.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/newtable.tga
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/problems.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/screen1.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/sel_tbl.jpg
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/start.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/tut.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/tut_edit.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/tut_new.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/tut_sel1.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/tut_user.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/vdesigner.gif
|
||||
%%PORTDOCS%%%%DOCSDIR%%/whatsnew.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/win32.html
|
||||
share/postgresql/pgaccess/Makefile
|
||||
share/postgresql/pgaccess/README
|
||||
share/postgresql/pgaccess/CHANGELOG
|
||||
share/postgresql/pgaccess/LICENSE
|
||||
share/postgresql/pgaccess/demo/README.demo
|
||||
share/postgresql/pgaccess/demo/demo.pga
|
||||
share/postgresql/pgaccess/demo/formdemo72.sql
|
||||
share/postgresql/pgaccess/demo/formdemo73.sql
|
||||
share/postgresql/pgaccess/demo/icons.pga
|
||||
share/postgresql/pgaccess/demo/sillygraphs.pga
|
||||
share/postgresql/pgaccess/demo/todomanager.pga
|
||||
share/postgresql/pgaccess/demo/treedemo.pga
|
||||
share/postgresql/pgaccess/extra/MSAccessPrintWidgets.tcl
|
||||
share/postgresql/pgaccess/extra/SendExcel.tcl
|
||||
share/postgresql/pgaccess/extra/barcode.tcl
|
||||
share/postgresql/pgaccess/extra/cuecat.tcl
|
||||
share/postgresql/pgaccess/extra/customers.tcl
|
||||
share/postgresql/pgaccess/extra/graph.tcl
|
||||
share/postgresql/pgaccess/extra/psic.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_table.gif
|
||||
share/postgresql/pgaccess/images/icon_text.gif
|
||||
share/postgresql/pgaccess/images/icon_tree.gif
|
||||
share/postgresql/pgaccess/images/logo.gif
|
||||
share/postgresql/pgaccess/BUGS
|
||||
share/postgresql/pgaccess/lib/aggregates.tcl
|
||||
share/postgresql/pgaccess/lib/casts.tcl
|
||||
share/postgresql/pgaccess/lib/colors.tcl
|
||||
share/postgresql/pgaccess/lib/connections.tcl
|
||||
share/postgresql/pgaccess/lib/conversions.tcl
|
||||
share/postgresql/pgaccess/lib/database.tcl
|
||||
share/postgresql/pgaccess/lib/debug.tcl
|
||||
share/postgresql/pgaccess/lib/diagrams.tcl
|
||||
share/postgresql/pgaccess/lib/domains.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/Makefile
|
||||
share/postgresql/pgaccess/lib/help/abort.hlp
|
||||
share/postgresql/pgaccess/lib/help/add_records.tex
|
||||
share/postgresql/pgaccess/lib/help/alter_table.hlp
|
||||
share/postgresql/pgaccess/lib/help/alter_user.hlp
|
||||
share/postgresql/pgaccess/lib/help/author.tex
|
||||
share/postgresql/pgaccess/lib/help/begin.hlp
|
||||
share/postgresql/pgaccess/lib/help/close.tex
|
||||
share/postgresql/pgaccess/lib/help/cluster.hlp
|
||||
share/postgresql/pgaccess/lib/help/command_line_options.tex
|
||||
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/develop.tex
|
||||
share/postgresql/pgaccess/lib/help/diagrams.tex
|
||||
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.tex
|
||||
share/postgresql/pgaccess/lib/help/forms.tex
|
||||
share/postgresql/pgaccess/lib/help/functions.tex
|
||||
share/postgresql/pgaccess/lib/help/geomfunc.hlp
|
||||
share/postgresql/pgaccess/lib/help/grant.hlp
|
||||
share/postgresql/pgaccess/lib/help/graphs.tex
|
||||
share/postgresql/pgaccess/lib/help/history.hlp
|
||||
share/postgresql/pgaccess/lib/help/html.sty
|
||||
share/postgresql/pgaccess/lib/help/index.tex
|
||||
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/latex.tex
|
||||
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.tex
|
||||
share/postgresql/pgaccess/lib/help/new_table.tex
|
||||
share/postgresql/pgaccess/lib/help/new_team.tex
|
||||
share/postgresql/pgaccess/lib/help/notify.hlp
|
||||
share/postgresql/pgaccess/lib/help/open_database.hlp
|
||||
share/postgresql/pgaccess/lib/help/open_query.tex
|
||||
share/postgresql/pgaccess/lib/help/open_table.tex
|
||||
share/postgresql/pgaccess/lib/help/pgackages.tex
|
||||
share/postgresql/pgaccess/lib/help/pgfunctions.hlp
|
||||
share/postgresql/pgaccess/lib/help/postgresql.tex
|
||||
share/postgresql/pgaccess/lib/help/queries.tex
|
||||
share/postgresql/pgaccess/lib/help/reports.tex
|
||||
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.tex
|
||||
share/postgresql/pgaccess/lib/help/select.hlp
|
||||
share/postgresql/pgaccess/lib/help/select_into.hlp
|
||||
share/postgresql/pgaccess/lib/help/sequences.tex
|
||||
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.tex
|
||||
share/postgresql/pgaccess/lib/help/unlisten.hlp
|
||||
share/postgresql/pgaccess/lib/help/update.hlp
|
||||
share/postgresql/pgaccess/lib/help/users.tex
|
||||
share/postgresql/pgaccess/lib/help/vacuum.hlp
|
||||
share/postgresql/pgaccess/lib/help/view_table_structure.tex
|
||||
share/postgresql/pgaccess/lib/help/views.tex
|
||||
share/postgresql/pgaccess/lib/help/visual_designer.tex
|
||||
share/postgresql/pgaccess/lib/help/y2k.hlp
|
||||
share/postgresql/pgaccess/lib/images.tcl
|
||||
share/postgresql/pgaccess/lib/importexport.tcl
|
||||
share/postgresql/pgaccess/lib/indexes.tcl
|
||||
share/postgresql/pgaccess/lib/languages.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/newdbwiz.tcl
|
||||
share/postgresql/pgaccess/lib/operatorclasses.tcl
|
||||
share/postgresql/pgaccess/lib/operators.tcl
|
||||
share/postgresql/pgaccess/lib/options.tcl
|
||||
share/postgresql/pgaccess/lib/pgackages.tcl
|
||||
share/postgresql/pgaccess/lib/plugins/pgin2.tcl
|
||||
share/postgresql/pgaccess/lib/plugins/pgin3.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/rules.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-tktable.tcl
|
||||
share/postgresql/pgaccess/lib/tables.tcl
|
||||
share/postgresql/pgaccess/lib/triggers.tcl
|
||||
share/postgresql/pgaccess/lib/types.tcl
|
||||
share/postgresql/pgaccess/lib/usergroups.tcl
|
||||
share/postgresql/pgaccess/lib/views.tcl
|
||||
share/postgresql/pgaccess/lib/visualqb-tktable.tcl
|
||||
share/postgresql/pgaccess/lib/visualqb.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/CHANGES.txt
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/ChangeLog
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/LICENSE.txt
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/README.txt
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/arrow.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/bitmap.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/button.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/buttonbox.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/calendar.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/color.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/combobox.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/dialog.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/dragsite.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/dropsite.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/dynhelp.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/entry.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/font.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/bold.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/copy.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/cut.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/dragfile.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/dragicon.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/error.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/file.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/folder.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/hourglass.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/info.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/italic.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/minus.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/new.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/opcopy.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/open.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/openfold.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/oplink.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/opmove.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/overstrike.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/palette.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/passwd.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/paste.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/plus.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/print.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/question.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/redo.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/save.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/target.xbm
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/underline.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/undo.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/images/warning.gif
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/init.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/label.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/labelentry.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/labelframe.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/lang/de.rc
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/lang/en.rc
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/lang/es.rc
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/lang/fr.rc
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/listbox.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/mainframe.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/messagedlg.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/notebook.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/pagesmgr.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/panedw.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/passwddlg.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/progressbar.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/progressdlg.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/scrollframe.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/scrollview.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/scrollw.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/separator.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/spinbox.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/titleframe.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/tree.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/utils.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/widget.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/BWidget-1.6.0/xpm2image.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/Barcode/Barcode.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/Barcode/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/base64/base64.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/base64/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/base64/uuencode.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/cmdline/cmdline.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/cmdline/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/cmdline/typedCmdline.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/csv/csv.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/csv/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/fileutil/fileutil.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/fileutil/pkgIndex.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/tablelist3.3/CHANGES.txt
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/COPYRIGHT.txt
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/README.txt
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/mwutil.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/repair.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistBind.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistConfig.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistEdit.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistMove.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistSort.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistUtil.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tablelistWidget.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/scripts/tclIndex
|
||||
share/postgresql/pgaccess/lib/widgets/tablelist3.3/tablelist.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tkwizard-1.0a1/README
|
||||
share/postgresql/pgaccess/lib/widgets/tkwizard-1.0a1/pkgIndex.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tkwizard-1.0a1/tkwizard.tcl
|
||||
share/postgresql/pgaccess/lib/widgets/tkwizard-1.0a1/tkwizthing.tcl
|
||||
share/postgresql/pgaccess/osx/README.osx
|
||||
share/postgresql/pgaccess/osx/dylib/libpgtcl.7.3.dylib.sit
|
||||
share/postgresql/pgaccess/pgaccess.tcl
|
||||
share/postgresql/pgaccess/pgmonitor
|
||||
share/postgresql/pgaccess/TODO
|
||||
share/postgresql/pgaccess/utils/mkkit.tcl
|
Loading…
Add table
Reference in a new issue