summaryrefslogtreecommitdiff
path: root/databases/postgresql73-docs/Makefile
diff options
context:
space:
mode:
authorrecht <recht@pkgsrc.org>2004-07-24 22:16:56 +0000
committerrecht <recht@pkgsrc.org>2004-07-24 22:16:56 +0000
commit98e7b825dffaaa30224615efaef67e94296dedae (patch)
treecd9deca5dbbd47b9012eb0eb41cc59695f228aaa /databases/postgresql73-docs/Makefile
parentde683c56951dfe413b0409f030e24ff20d6558e2 (diff)
downloadpkgsrc-98e7b825dffaaa30224615efaef67e94296dedae.tar.gz
reimport of postgresql-docs as postgresql73-docs
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. PostgreSQL is free and the complete source is available. This package contains the database documentation.
Diffstat (limited to 'databases/postgresql73-docs/Makefile')
-rw-r--r--databases/postgresql73-docs/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/databases/postgresql73-docs/Makefile b/databases/postgresql73-docs/Makefile
new file mode 100644
index 00000000000..218a322bfd6
--- /dev/null
+++ b/databases/postgresql73-docs/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/07/24 22:16:56 recht Exp $
+
+PKGNAME= postgresql73-docs-${BASE_VERS}
+SVR4_PKGNAME= pstgd
+COMMENT= PostgreSQL database system documentation
+
+USE_BUILDLINK3= yes
+
+.include "../../databases/postgresql73/Makefile.common"
+
+BUILD_DIRS= ${WRKSRC}/doc
+DOCDIR= ${PREFIX}/share/doc/postgresql
+
+# The manpage documentation is installed with the relevant packages.
+pre-build:
+ cd ${WRKSRC}/doc && ${RM} -f man.tar.gz
+
+post-install:
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+ cd ${WRKSRC}/doc; for file in \
+ FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO \
+ bug.template; \
+ do \
+ ${INSTALL_DATA} $${file} ${DOCDIR}/$${file}; \
+ done
+
+.include "../../mk/bsd.pkg.mk"