diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-09-06 18:19:49 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-09-06 18:19:49 +0000 |
commit | 822054f984387436b60c5fd5b81d355ef77d7ca3 (patch) | |
tree | 2c4ea8e9d821e9a0915481e3c0bd010b9cffc4f1 /databases/postgresql | |
parent | 442c935241920008e0c81b47c2fe2f4d1dc05440 (diff) | |
download | pkgsrc-822054f984387436b60c5fd5b81d355ef77d7ca3.tar.gz |
Add dependency on ncurses, and create ${PREFIX}/${PGUSER} before
"make install". Makes this package compile on 1.4.1.
Diffstat (limited to 'databases/postgresql')
-rw-r--r-- | databases/postgresql/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 0eb26223463..877849dce6b 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 1999/09/06 07:01:43 sakamoto Exp $ +# $NetBSD: Makefile,v 1.39 1999/09/06 18:19:49 hubertf Exp $ # FreeBSD Id: Makefile,v 1.22 1997/12/24 01:21:37 alex Exp # @@ -15,7 +15,8 @@ HOMEPAGE= http://www.PostgreSQL.ORG/ BUILD_DEPENDS+= ${LOCALBASE}/bin/bison:../../devel/bison DEPENDS+= tk-8.0.5:../../x11/tk80 \ tcl-8.0.5:../../lang/tcl80 \ - addnerd-1.6:../../sysutils/addnerd + addnerd-1.6:../../sysutils/addnerd \ + ncurses-4.2:../../devel/ncurses # Needs ELF clue, mips has no TAS implementation NOT_FOR_PLATFORM= *-*-alpha *-*-mips @@ -70,6 +71,7 @@ post-build: pre-install: ${RM} -rf ${PREFIX}/${PGUSER} + ${MKDIR} ${PREFIX}/${PGUSER} @${SED} \ -e 's|@PGUSER@|${PGUSER}|g' \ -e 's|@PGGROUP@|${PGGROUP}|g' \ |