pkgsrc/databases/postgresql73-docs/Makefile
jdolecek 0c4849511b Update all postgresql73 packages to 7.3.8. This fixes following two issues:
* A vulnerability exists due to the insecure creation of temporary files,
  which could possibly let a malicious user overwrite arbitrary files

* Repair possible failure to update hint bits on disk
  Under rare circumstances this oversight could lead to "could not access
  transaction status" failures, which qualifies it as a potential-data-loss bug.
2004-10-25 17:40:00 +00:00

28 lines
726 B
Makefile

# $NetBSD: Makefile,v 1.3 2004/10/25 17:40:01 jdolecek Exp $
PKGNAME= postgresql73-docs-${BASE_VERS}
SVR4_PKGNAME= pstgd
PKGREVISION= # empty
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"