mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update to version 6.5.2.
and.. <quote> This is a really small fix: - When compiling postgresql-jdbc, the compilation process presents a bad path to the installed jar-file. </quote> PR: 13838 PR: 13865 Submitted by: Palle Girgensohn <girgen@partitur.se>
This commit is contained in:
parent
134508746d
commit
d72365ae81
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=22314
112 changed files with 350 additions and 308 deletions
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
2
databases/postgresql-devel/scripts/configure
vendored
2
databases/postgresql-devel/scripts/configure
vendored
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
2
databases/postgresql7/scripts/configure
vendored
2
databases/postgresql7/scripts/configure
vendored
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
2
databases/postgresql73/scripts/configure
vendored
2
databases/postgresql73/scripts/configure
vendored
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
|
@ -8,6 +8,7 @@ You may wish to subscribe to the PostgreSQL user-support mailing list.
|
|||
Send an e-mail to pgsql-questions-request@postgresql.org with the
|
||||
text "subscribe" in the message body.
|
||||
|
||||
If you build PostgreSQL with TCL support, then you can use the
|
||||
TCL/TK based database frontend "pgaccess" for database operations.
|
||||
If you built PostgreSQL with TCL support, you can install the port
|
||||
"pgaccess" to get a TCL/TK based database frontend for database
|
||||
operations.
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ share/doc/pgsql/FAQ_FreeBSD
|
|||
share/doc/pgsql/FAQ_HPUX
|
||||
share/doc/pgsql/FAQ_Irix
|
||||
share/doc/pgsql/FAQ_Linux
|
||||
share/doc/pgsql/FAQ_Solaris
|
||||
share/doc/pgsql/FAQ_SCO
|
||||
share/doc/pgsql/README.Charsets
|
||||
share/doc/pgsql/README.NT
|
||||
share/doc/pgsql/README.fsync
|
||||
share/doc/pgsql/README.inet
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
pgsql/bin/pgaccess
|
||||
pgsql/bin/pgtclsh
|
||||
pgsql/bin/pgtksh
|
||||
pgsql/include/libpgtcl.h
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
cd $WRKSRC || exit 1
|
||||
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
perl -pi -e "s=!!JAVA_HOME!!=${JAVA_HOME}=; s=!!PREFIX!!=${PREFIX}=" ${WRKSRC}/interfaces/jdbc/Makefile
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= postgresql-6.5.1
|
||||
DISTNAME= postgresql-6.5.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.postgresql.org/pub/ \
|
||||
ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \
|
||||
|
@ -106,13 +106,14 @@ post-patch:
|
|||
${WRKSRC}/Makefile.global.in.old \
|
||||
>> ${WRKSRC}/Makefile.global.in
|
||||
|
||||
.if defined(USE_TCL)
|
||||
@ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
@ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
>> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
.endif
|
||||
# pgaccess (accidentally?) removed from distribution, so leave it for now
|
||||
#.if defined(USE_TCL)
|
||||
# @ ${MV} ${WRKSRC}/bin/pgaccess/pgaccess.tcl \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig
|
||||
# @ ${SED} -e "s=/usr/bin/wish=`/usr/bin/which wish8.0`=" \
|
||||
# ${WRKSRC}/bin/pgaccess/pgaccess.tcl.orig \
|
||||
# >> ${WRKSRC}/bin/pgaccess/pgaccess.tcl
|
||||
#.endif
|
||||
|
||||
post-build:
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (postgresql-6.5.1.tar.gz) = f32379223026bd123552459958054d51
|
||||
MD5 (postgresql-6.5.2.tar.gz) = 36546d54b2ec7da1eec967522089e4ab
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- configure~ Sun May 30 09:01:09 1999
|
||||
+++ configure Mon Jun 21 16:52:53 1999
|
||||
@@ -663,7 +663,7 @@
|
||||
exit;;
|
||||
esac
|
||||
|
||||
-if test "X$elf" = "Xyes"
|
||||
+if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
--- configure.orig Sun Oct 10 14:37:07 1999
|
||||
+++ configure Sun Oct 10 14:37:29 1999
|
||||
@@ -1429,7 +1429,7 @@
|
||||
ELF_SYS=true
|
||||
else
|
||||
rm -rf conftest*
|
||||
- if test "X$elf" = "Xyes"
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"
|
||||
then
|
||||
ELF_SYS=true
|
||||
else
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
- @echo other applications, copy the postgresql.jar file to a public
|
||||
- @echo "place (under unix this could be /usr/local/lib) and add it"
|
||||
+ @echo other applications, add the path
|
||||
+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
|
||||
+ @echo !!PREFIX!!/share/java/postgresql.jar
|
||||
@echo to the class path.
|
||||
@echo
|
||||
@echo Then either add -Djdbc.drivers=postgresql.Driver to the
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue