mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
make USE_TCL=yes compiles libpgtcl subdir which is needed
for building the tcl/tk based database frontend pgaccess. For an updated version of this tool a separate port will follow. Please test these changes well, so that we get a nice PostgreSQL 6.2 version up and running "b4" port freeze ;-)
This commit is contained in:
parent
2fd10aed0c
commit
06e9686a05
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=8112
28 changed files with 322 additions and 28 deletions
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: April 2, 1997
|
||||
# Whom: Marc G. Fournier <scrappy@FreeBSD.ORG>
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/09/27 21:43:48 andreas Exp $
|
||||
# $Id: Makefile,v 1.15 1997/10/03 14:13:34 andreas Exp $
|
||||
|
||||
DISTNAME= postgresql-6.2
|
||||
CATEGORIES= databases
|
||||
|
@ -13,14 +13,22 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \
|
|||
|
||||
MAINTAINER= andreas@FreeBSD.ORG
|
||||
|
||||
# if you want to use the tcl/tk frontend pgaccess, then you need to build
|
||||
# postgresql with tcl support by typing: make USE_TCL=yes
|
||||
.if defined(USE_TCL)
|
||||
MAKE_ENV+= USE_TCL=true TCL_INCDIR=${PREFIX}/include/tcl8.0
|
||||
LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
|
||||
.endif
|
||||
|
||||
NO_PACKAGE= "Requires pgsql uid"
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
||||
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
HAS_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--prefix=${PREFIX}/pgsql \
|
||||
--enable-locale \
|
||||
--with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'`
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \
|
||||
destroyuser.1 initdb.1 ipcclean.1 monitor.1 pg_dump.1 \
|
||||
|
@ -43,6 +51,14 @@ MANL= abort.l alter_table.l begin.l close.l cluster.l \
|
|||
|
||||
MANPREFIX= ${PREFIX}/pgsql
|
||||
|
||||
pre-fetch:
|
||||
.if !defined(USE_TCL)
|
||||
@${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:"
|
||||
@${ECHO_MSG} " make USE_TCL=yes"
|
||||
.else
|
||||
@${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"."
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
@ ${ECHO} "------------------------------------------------------------"
|
||||
@ ${ECHO} "Dump existing databases, before installing new db version !!"
|
||||
|
|
|
@ -199,6 +199,11 @@ share/doc/pgsql/manual/xtypes.html
|
|||
share/doc/pgsql/spi.txt
|
||||
share/doc/pgsql/trigger.txt
|
||||
share/doc/pgsql/userguide.ps
|
||||
pgsql/lib/libpgtcl.a
|
||||
pgsql/lib/libpgtcl.so.1
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
@dirrm share/doc/pgsql/manual
|
||||
@dirrm share/doc/pgsql
|
||||
@dirrm pgsql/bin
|
||||
|
|
Loading…
Add table
Reference in a new issue