diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-13 09:58:55 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-13 09:58:55 +0000 |
commit | 87c975419f55589e8e1b7430dcabf02aaf1df332 (patch) | |
tree | 334fb00edb046b18fdffefc7f5da0435dce4d3cd /databases | |
parent | Set pkg-comment only when there isn't one set yet (make port (diff) |
New slaveport: databases/postgresql-client.
It installs databases/postgresql7 with the WITHOUT_SERVER
option, making it an ideal replacement for all the ports
'which require libpq.so.3 but are currently building the
full database server for it'.
Notes
Notes:
svn path=/head/; revision=91010
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/postgresql-client/Makefile | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index f00f3f8df845..9a90e6045882 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -154,6 +154,7 @@ SUBDIR += php-sqlrelay SUBDIR += phpmyadmin SUBDIR += phppgadmin + SUBDIR += postgresql-client SUBDIR += postgresql-contrib SUBDIR += postgresql-devel SUBDIR += postgresql-docs diff --git a/databases/postgresql-client/Makefile b/databases/postgresql-client/Makefile new file mode 100644 index 000000000000..a2b4b0fdc58e --- /dev/null +++ b/databases/postgresql-client/Makefile @@ -0,0 +1,16 @@ +# Ports collection makefile for: postgresql-client +# Date created: October 12, 2003 +# Whom: Edwin Groothuis <edwin@mavetju.org> +# +# $FreeBSD$ +# + +PORTNAME= postgresql7 + +MAINTAINER= ports@freebsd.org +COMMENT= The most advanced open-source database available anywhere - client only + +WITHOUT_SERVER= yes +MASTERDIR= ${.CURDIR}/../../databases/postgresql7 + +.include "${MASTERDIR}/Makefile" |