diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2005-02-06 12:32:05 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2005-02-06 12:32:05 +0000 |
commit | 48471244013036dfc7df4818018c8908adc59fc8 (patch) | |
tree | ca025c7eef396d233c2e4340a7c68a2a92ecf72b /databases/postgresql80-docs/Makefile | |
parent | 91c0fb562dd0add1e9e9ed0f340e5c25ec7bf2b5 (diff) | |
download | pkgsrc-48471244013036dfc7df4818018c8908adc59fc8.tar.gz |
PostgreSQL 8.0.1 packages. A dump/restore using pg_dump is required
for those wishing to migrate data from any previous release.
Major changes relative to 7.4.x:
* Savepoints
* Point-in-Time recovery
* Tablespaces
* Improved buffer management
* ALTER TABLE column management improvements
Full list of changes is available at:
http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0
Also note that PostgreSQL server listens also on localhost (127.0.0.1)
by default now.
Diffstat (limited to 'databases/postgresql80-docs/Makefile')
-rw-r--r-- | databases/postgresql80-docs/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/databases/postgresql80-docs/Makefile b/databases/postgresql80-docs/Makefile new file mode 100644 index 00000000000..938354cd5f7 --- /dev/null +++ b/databases/postgresql80-docs/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/02/06 12:32:05 jdolecek Exp $ + +PKGNAME= postgresql80-docs-${BASE_VERS} +COMMENT= PostgreSQL database system documentation + +.include "../../wip/postgresql80/Makefile.common" + +NO_BUILD= yes +NO_BUILDLINK= yes +NO_CONFIGURE= yes + +#BUILD_DIRS= ${WRKSRC}/doc +DOCDIR= ${PREFIX}/share/doc/postgresql80 + +# The manpage documentation is installed with the relevant packages. +#pre-build: +# cd ${WRKSRC}/doc && ${RM} -f man.tar.gz + +do-install: + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${DOCDIR}/TODO.detail + cd ${WRKSRC}/doc; for file in \ + FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO \ + bug.template; \ + do \ + ${INSTALL_DATA} $${file} ${DOCDIR}/$${file}; \ + done + cd ${WRKSRC}/doc/TODO.detail && \ + ${PAX} -rwppm . ${DOCDIR}/TODO.detail + ${TAR} -zxm -C ${DOCDIR} -f ${WRKSRC}/doc/postgres.tar.gz + +.include "../../mk/bsd.pkg.mk" |