From b919b8311bc5d38e5731d40525c88c54816f4530 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 14 May 1999 11:54:55 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_3_2_0'. --- japanese/postgresql-tcltk/Makefile | 174 ---------- japanese/postgresql-tcltk/distinfo | 2 - japanese/postgresql-tcltk/files/patch-ad | 14 - japanese/postgresql-tcltk/files/pgsql.sh.tmpl | 25 -- japanese/postgresql-tcltk/files/post-install-notes | 24 -- japanese/postgresql-tcltk/pkg-comment | 1 - japanese/postgresql-tcltk/pkg-descr | 24 -- japanese/postgresql-tcltk/pkg-install | 98 ------ japanese/postgresql-tcltk/pkg-plist | 328 ------------------ japanese/postgresql-tcltk/pkg-plist.tcl | 372 --------------------- 10 files changed, 1062 deletions(-) delete mode 100644 japanese/postgresql-tcltk/Makefile delete mode 100644 japanese/postgresql-tcltk/distinfo delete mode 100644 japanese/postgresql-tcltk/files/patch-ad delete mode 100644 japanese/postgresql-tcltk/files/pgsql.sh.tmpl delete mode 100644 japanese/postgresql-tcltk/files/post-install-notes delete mode 100644 japanese/postgresql-tcltk/pkg-comment delete mode 100644 japanese/postgresql-tcltk/pkg-descr delete mode 100644 japanese/postgresql-tcltk/pkg-install delete mode 100644 japanese/postgresql-tcltk/pkg-plist delete mode 100644 japanese/postgresql-tcltk/pkg-plist.tcl (limited to 'japanese/postgresql-tcltk') diff --git a/japanese/postgresql-tcltk/Makefile b/japanese/postgresql-tcltk/Makefile deleted file mode 100644 index 1b3e828da387..000000000000 --- a/japanese/postgresql-tcltk/Makefile +++ /dev/null @@ -1,174 +0,0 @@ -# New ports collection makefile for: PostgreSQL-j -# Version required: 6.4.2+Multibyte-patch -# Date created: 25 Nov 1998 -# Whom: Ichiro Fukuhara -# -# $Id: Makefile,v 1.7 1999/04/17 18:38:44 max Exp $ -# - -DISTNAME= postgresql-6.4.2 -PKGNAME= ja-postgresql-6.4.2 -CATEGORIES= japanese databases -MASTER_SITES= ftp://ftp.postgresql.org/pub/ \ - ftp://ftp.jaist.ac.jp/pub/dbms/PostgreSQL/ \ - ftp://ftp.sra.co.jp/pub/cmd/postgres/6.4.2/ - -PATCH_SITES= ftp://ftp.sra.co.jp/pub/cmd/postgres/6.4.2/patches/ -PATCHFILES= jumbo-990217.patch.gz - -MAINTAINER= ichiro@ichiro.org - -WRKSRC= ${WRKDIR}/${DISTNAME}/src -PATCH_DIST_ARGS= -d ${WRKDIR}/${DISTNAME} --forward --quiet -E -p1 -PLISTS= PLIST - -# 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) -TCL_INCDIR= ${PREFIX}/include/tcl8.0jp -TK_INCDIR= ${PREFIX}/include/tk8.0jp -MAKE_ENV= USE_TCL=true TCL_INCDIR=${TCL_INCDIR} -WITH_TCL= --with-tcl --with-tclconfig="${PREFIX}/lib/tcl8.0jp ${PREFIX}/lib/tk8.0jp" -LIB_DEPENDS= tcl80jp.1:${PORTSDIR}/japanese/tcl80 \ - tk80jp.1:${PORTSDIR}/japanese/tk80 -PLISTS+= PLIST.tcl -.endif -.if defined(MULTIBYTE) -WITH_MB= --with-mb=${MULTIBYTE} -.endif -.if defined(USE_PERL) -WITH_PERL= --with-perl -.endif -.if defined(USE_ODBC) -WITH_ODBC= --with-odbc -.endif - -NO_PACKAGE= "Requires ${PGSQL_UID} uid" - -USE_GMAKE= YES -MAKEFILE= GNUmakefile -HAS_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX}/${INSTALL_DIR} \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ - --with-includes="${PREFIX}/include ${TCL_INCDIR} ${TK_INCDIR}" ${WITH_TCL}\ - --with-libraries=${PREFIX}/lib \ - ${WITH_MB} ${WITH_PERL} ${WITH_ODBC} - -INSTALL_TARGET= install install-man - -MAN1= cleardbdir.1 createdb.1 createuser.1 destroydb.1 \ - destroyuser.1 ecpg.1 initdb.1 initlocation.1 \ - ipcclean.1 pg_dump.1 pg_dumpall.1 pg_passwd.1 \ - pg_upgrade.1 postgres.1 postmaster.1 psql.1 -MAN3= catalogs.3 libpq.3 -MAN5= pg_hba.conf.5 -MANL= abort.l alter_table.l alter_user.l begin.l close.l cluster.l \ - commit.l copy.l create_aggregate.l create_database.l \ - create_function.l create_index.l create_language.l \ - create_operator.l create_rule.l create_sequence.l \ - create_table.l create_trigger.l create_type.l create_user.l \ - create_version.l create_view.l declare.l delete.l drop.l \ - drop_aggregate.l drop_database.l drop_function.l drop_index.l \ - drop_language.l drop_operator.l drop_rule.l drop_sequence.l \ - drop_table.l drop_trigger.l drop_type.l drop_user.l \ - drop_view.l end.l explain.l fetch.l grant.l insert.l listen.l \ - load.l lock.l move.l notify.l reset.l revoke.l rollback.l \ - select.l set.l show.l sql.l update.l vacuum.l - -MANPREFIX= ${PREFIX}/${INSTALL_DIR} - -PLIST_SUB= INSTALL_DIR=${INSTALL_DIR} -PLIST= ${WRKDIR}/PLIST - -# These values are easily overridable like as -# "make PGQL_UID=postgresql PGSQL_GID=postgresql install" -INSTALL_DIR= pgsql -PGSQL_UID= pgsql -PGSQL_GID= pgsql - -pre-fetch: -.if !defined(USE_TCL) & !defined(USE_PERL) & !defined(USE_ODBC) & !defined(MULTIBYTE) - - @${ECHO_MSG} "To build the \"MULTIBYTE PostgreSQL\", type:" - @${ECHO_MSG} " make MULTIBYTE={EUC_JP,EUC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5}" - @${ECHO_MSG} " USE_TCL=yes, USE_PERL=yes, USE_ODBC=yes" - @${ECHO_MSG} "" - @${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 - -.include - -post-patch: - find ${WRKDIR} -name '*.orig' -exec ${RM} {} \; - -post-build: - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see INSTALL file under ${WRKDIR}... " - @ ${ECHO} "------------------------------------------------------------" - @${RM} -f ${WRKDIR}/PLIST -.for i in ${PLISTS} - ${CAT} ${PKGDIR}/${i} >> ${WRKDIR}/PLIST -.endfor - -pre-install: -.if defined(PACKAGE_BUILDING) - ${RM} -rf ${PREFIX}/${INSTALL_DIR} -.endif - @ ${MKDIR} ${PREFIX}/${INSTALL_DIR} - @ ${SETENV} INSTALL_DIR=${INSTALL_DIR} \ - PGSQL_UID=${PGSQL_UID} PGSQL_GID=${PGSQL_GID} \ - PKG_PREFIX=${PREFIX} \ - ${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL -post-install: - @ if [ ! -f ${PREFIX}/${INSTALL_DIR}/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/${INSTALL_DIR}/bin" \ - > ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/${INSTALL_DIR}/bin" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/${INSTALL_DIR}/lib" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/${INSTALL_DIR}/data" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/${INSTALL_DIR}/.profile; \ - fi - @ chown -R ${PGSQL_UID}:${PGSQL_GID} ${PREFIX}/${INSTALL_DIR} - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' - @ ${LDCONFIG} -m ${PREFIX}/${INSTALL_DIR}/lib - @ /usr/bin/su -l ${PGSQL_UID} -c '${PREFIX}/${INSTALL_DIR}/bin/initdb --pglib=${PREFIX}/${INSTALL_DIR}/lib --pgdata=${PREFIX}/${INSTALL_DIR}/data' - @ ${SED} "s=!!PG_PATH!!=${PREFIX}/${INSTALL_DIR}=g ; s=!!PGSQL_UID!!=${PGSQL_UID}=g" \ - < ${FILESDIR}/pgsql.sh.tmpl > ${PREFIX}/etc/rc.d/pgsql.sh - @ chmod 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ chown root.${PGSQL_GID} ${PREFIX}/etc/rc.d/pgsql.sh - @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/${INSTALL_DIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/${INSTALL_DIR} - ${CP} -r ${WRKDIR}/${DISTNAME}/doc/* ${PREFIX}/share/doc/${INSTALL_DIR} -.for f in . src src/sgml src/sgml/ref src/graphics - @${RM} -r ${PREFIX}/share/doc/${INSTALL_DIR}/$f/CVS -.endfor -.endif -.if !defined(BATCH) - @ more -e ${FILESDIR}/post-install-notes -.endif -#.if (${PORTOBJFORMAT} == "elf") -# @${ECHO} "Hack for ELF library..." -# @${RM} ${PREFIX}/${INSTALL_DIR}/lib/libpg.so.2.0 -# @${RM} ${PREFIX}/${INSTALL_DIR}/lib/libpg++.so.2.0 -#.endif - -.include diff --git a/japanese/postgresql-tcltk/distinfo b/japanese/postgresql-tcltk/distinfo deleted file mode 100644 index 7e1055702140..000000000000 --- a/japanese/postgresql-tcltk/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (postgresql-6.4.2.tar.gz) = 4f5e0409921892ca08fff2d8c099b3d7 -MD5 (jumbo-990217.patch.gz) = 1eab227a77332aed198ff12e36ed2a8d diff --git a/japanese/postgresql-tcltk/files/patch-ad b/japanese/postgresql-tcltk/files/patch-ad deleted file mode 100644 index 56f482cd4dd8..000000000000 --- a/japanese/postgresql-tcltk/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- template/freebsd.orig Sat Jun 14 20:12:51 1997 -+++ template/freebsd Sat Jun 14 20:13:06 1997 -@@ -1,9 +1,9 @@ - AROPT:cq - SHARED_LIB:-fpic -DPIC --CFLAGS:-O2 -m486 -pipe -+CFLAGS:-pipe -O2 - SRCH_INC: - SRCH_LIB: --USE_LOCALE:no -+USE_LOCALE:yes - DLSUFFIX:.so - YFLAGS:-d - YACC:bison -y diff --git a/japanese/postgresql-tcltk/files/pgsql.sh.tmpl b/japanese/postgresql-tcltk/files/pgsql.sh.tmpl deleted file mode 100644 index e62e65dd64b9..000000000000 --- a/japanese/postgresql-tcltk/files/pgsql.sh.tmpl +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -# $Id: $ - -# pgsql.sh - postgresql startup file for FreeBSD and possibly *BSD (untested) - -# Changes: -# - renamed startup script to be in sync with INSTALL file -# - merged ldconfig start sequence from former postgrsql.sh script (andreas) -# - modified the postmaster startup sequence as suggested in the -# INSTALL file which was given as example for FreeBSD 2.2 (andreas) -# - removed the commandline option -# -D!!PG_PATH!!/data \ -# because the postmaster process, which starts up under the -# environment of the pgsql user, sets this with the PGDATA -# environment variable in !!PG_PATH!!/.profile -# - -[ -d !!PG_PATH!!/lib ] && /sbin/ldconfig -m !!PG_PATH!!/lib - -[ -x !!PG_PATH!!/bin/postmaster ] && { - su -l !!PGSQL_UID!! -c 'exec !!PG_PATH!!/bin/postmaster -i -S -o -F \ - -D!!PG_PATH!!/data > !!PG_PATH!!/errlog' - echo -n ' PostgreSQL' -} diff --git a/japanese/postgresql-tcltk/files/post-install-notes b/japanese/postgresql-tcltk/files/post-install-notes deleted file mode 100644 index 4e6e8df02c33..000000000000 --- a/japanese/postgresql-tcltk/files/post-install-notes +++ /dev/null @@ -1,24 +0,0 @@ - -Now that PostgreSQL-j was installed, you should read the documentation and -implementation guides. These can be found at: - - http://www.PostgreSQL.org/docs - -Documentations for the Multibyte-extention can be found at: - - doc/README.mb (English) - doc/README.mb.jp (Japanese) - -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 understand Japanese, you might want to visit: - - http://www.sra.co.jp/people/t-ishii/PostgreSQL - -to subscribe a local mailing list for Japanese speakers. - -If you build PostgreSQL with TCL support, then you can use the -TCL/TK based database frontend "pgaccess" for database operations. - diff --git a/japanese/postgresql-tcltk/pkg-comment b/japanese/postgresql-tcltk/pkg-comment deleted file mode 100644 index 6bcbc8801123..000000000000 --- a/japanese/postgresql-tcltk/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -a robust, next generation, object-relational DBMS plus Multibyte-patch diff --git a/japanese/postgresql-tcltk/pkg-descr b/japanese/postgresql-tcltk/pkg-descr deleted file mode 100644 index c8fed1c9b1be..000000000000 --- a/japanese/postgresql-tcltk/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.PostgreSQL.ORG/ diff --git a/japanese/postgresql-tcltk/pkg-install b/japanese/postgresql-tcltk/pkg-install deleted file mode 100644 index 1fb5e347efe5..000000000000 --- a/japanese/postgresql-tcltk/pkg-install +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh -# an installation script for postgresql - -check_pw() -{ - if which -s pw; then - : - else - cat < /dev/null` - id_pgsql=`id -u ${PGSQL_UID} 2> /dev/null` - if [ X"$id_pgsql" != X ]; then - exit 0 - elif [ X"$id_70" != X ]; then - cat <