diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1998-09-08 15:30:19 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1998-09-08 15:30:19 +0000 |
commit | 5308541555c6ddbec199b5afc9758682771a466c (patch) | |
tree | bd6d0d1a42503b554ba0c4ebc4cc0eef0cbc9f1c /japanese/postgresql/files | |
parent | 1847127f69dc5eea77afd8810c7edee2370c9258 (diff) | |
download | FreeBSD-ports-5308541555c6ddbec199b5afc9758682771a466c.zip FreeBSD-ports-5308541555c6ddbec199b5afc9758682771a466c.tar.gz |
a robust, next generation, object-relational DBMS plus Multibyte-patch
Submitted by: Ichiro Fukuhara <ichiro@ichiro.org>
Diffstat (limited to 'japanese/postgresql/files')
-rw-r--r-- | japanese/postgresql/files/patch-ad | 14 | ||||
-rw-r--r-- | japanese/postgresql/files/pgsql.sh.tmpl | 25 | ||||
-rw-r--r-- | japanese/postgresql/files/post-install-notes | 24 |
3 files changed, 63 insertions, 0 deletions
diff --git a/japanese/postgresql/files/patch-ad b/japanese/postgresql/files/patch-ad new file mode 100644 index 0000000..3529936 --- /dev/null +++ b/japanese/postgresql/files/patch-ad @@ -0,0 +1,14 @@ +--- 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:/usr/local/include + SRCH_LIB:/usr/local/lib +-USE_LOCALE:no ++USE_LOCALE:yes + DLSUFFIX:.so + YFLAGS:-d + YACC:bison -y diff --git a/japanese/postgresql/files/pgsql.sh.tmpl b/japanese/postgresql/files/pgsql.sh.tmpl new file mode 100644 index 0000000..e62e65d --- /dev/null +++ b/japanese/postgresql/files/pgsql.sh.tmpl @@ -0,0 +1,25 @@ +#!/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/files/post-install-notes b/japanese/postgresql/files/post-install-notes new file mode 100644 index 0000000..4e6e8df --- /dev/null +++ b/japanese/postgresql/files/post-install-notes @@ -0,0 +1,24 @@ + +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. + |