diff options
author | andreas <andreas@FreeBSD.org> | 1997-10-04 23:31:00 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-10-04 23:31:00 +0000 |
commit | 97cabaf69ab54836bc958df35c35071f161adebe (patch) | |
tree | 54d96bdff5f772698469b66b4ea8813dad92816f /databases/pgaccess | |
parent | c207d3a5f0adf8ef1a9fb2a4a3070ca554a28810 (diff) | |
download | FreeBSD-ports-97cabaf69ab54836bc958df35c35071f161adebe.zip FreeBSD-ports-97cabaf69ab54836bc958df35c35071f161adebe.tar.gz |
New port pgaccess, a _working_ (yuppee, got it to work finally)
TCL/TK frontend to postgresql ;-)
More commits to come (in postgresql port)
Diffstat (limited to 'databases/pgaccess')
-rw-r--r-- | databases/pgaccess/Makefile | 25 | ||||
-rw-r--r-- | databases/pgaccess/distinfo | 1 | ||||
-rw-r--r-- | databases/pgaccess/files/patch-aa | 17 | ||||
-rw-r--r-- | databases/pgaccess/pkg-comment | 1 | ||||
-rw-r--r-- | databases/pgaccess/pkg-descr | 8 | ||||
-rw-r--r-- | databases/pgaccess/pkg-plist | 1 |
6 files changed, 53 insertions, 0 deletions
diff --git a/databases/pgaccess/Makefile b/databases/pgaccess/Makefile new file mode 100644 index 0000000..0ae8008 --- /dev/null +++ b/databases/pgaccess/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: pgaccess +# Version required: 0.51 +# Date created: Sat Oct 4 20:03:46 CEST 1997 +# Whom: Andreas Klemm <andreas@klemm.gtn.com> +# +# $Id: Makefile,v 1.18 1997/10/04 14:53:01 andreas Exp $ +# + +DISTNAME= pgaccess +PKGNAME= pgaccess-0.51 +CATEGORIES= databases +MASTER_SITES= http://www.flex.ro/pgaccess/ + +MAINTAINER= andreas@FreeBSD.ORG + +RUN_DEPENDS= ${PREFIX}/pgsql/bin/postmaster:${PORTSDIR}/databases/postgresql + +NO_BUILD= yes +NO_WRKSUBDIR= yes +FETCH_BEFORE_ARGS= -b + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/pgaccess.tcl ${PREFIX}/bin/pgaccess + +.include <bsd.port.mk> diff --git a/databases/pgaccess/distinfo b/databases/pgaccess/distinfo new file mode 100644 index 0000000..b41c0f8 --- /dev/null +++ b/databases/pgaccess/distinfo @@ -0,0 +1 @@ +MD5 (pgaccess.tar.gz) = 3571e79d2509ce14192318f0a899b6e6 diff --git a/databases/pgaccess/files/patch-aa b/databases/pgaccess/files/patch-aa new file mode 100644 index 0000000..4cd0d8d --- /dev/null +++ b/databases/pgaccess/files/patch-aa @@ -0,0 +1,17 @@ +--- pgaccess.tcl.orig Sun Oct 5 00:47:27 1997 ++++ pgaccess.tcl Sun Oct 5 01:15:05 1997 +@@ -1,4 +1,4 @@ +-#!/usr/bin/wish ++#! /usr/local/bin/wish8.0 + ############################################################################# + # Visual Tcl v1.10 Project + # +@@ -1465,7 +1465,7 @@ + + proc main {argc argv} { + global pref newdbname newpport newhost +-load libpgtcl.so ++load /usr/local/pgsql/lib/libpgtcl.so.1 + catch {draw_tabs} + load_pref + if {$pref(autoload) && ($pref(lastdb)!="")} { diff --git a/databases/pgaccess/pkg-comment b/databases/pgaccess/pkg-comment new file mode 100644 index 0000000..61a2b01 --- /dev/null +++ b/databases/pgaccess/pkg-comment @@ -0,0 +1 @@ +a Tcl/Tk interface to PostgreSQL diff --git a/databases/pgaccess/pkg-descr b/databases/pgaccess/pkg-descr new file mode 100644 index 0000000..9988449 --- /dev/null +++ b/databases/pgaccess/pkg-descr @@ -0,0 +1,8 @@ +Please note: you have to compile and install the postgresql port with +the following commands, so that you can use pgaccess as database frontend: + + make USE_TCL all install + +More infos: + + http://www.flex.ro/pgaccess/index.html diff --git a/databases/pgaccess/pkg-plist b/databases/pgaccess/pkg-plist new file mode 100644 index 0000000..a5e2d29 --- /dev/null +++ b/databases/pgaccess/pkg-plist @@ -0,0 +1 @@ +bin/pgaccess |