bf9129c41e
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
33 lines
906 B
Makefile
33 lines
906 B
Makefile
# $NetBSD: Makefile,v 1.7 2005/07/15 18:27:48 jlam Exp $
|
|
|
|
PKGNAME= postgresql74-docs-${BASE_VERS}
|
|
SVR4_PKGNAME= pstgd
|
|
COMMENT= PostgreSQL database system documentation
|
|
|
|
.include "../../databases/postgresql74/Makefile.common"
|
|
|
|
NO_BUILD= yes
|
|
NO_CONFIGURE= yes
|
|
USE_TOOLS+= tar
|
|
|
|
#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
|
|
|
|
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"
|