blob: 938354cd5f740974d336c256b68f9738e8062f13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
|