- Nuke NOPORTDOCS, those ports are already IGNOREd with NOPORTDOCS Approved by: kwm (maintainer)
21 lines
515 B
Makefile
21 lines
515 B
Makefile
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 2
|
|
|
|
BOOKS= gdk gtk
|
|
|
|
do-install:
|
|
.for d in ${BOOKS}
|
|
if [ -d ${REFERENCE_SRC}/${d}/html ]; then \
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/${d}3; \
|
|
cd ${REFERENCE_SRC}/${d}/html && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/doc/${d}3; \
|
|
fi
|
|
.endfor
|
|
|
|
# overwrite this from bsd.port.mk, because we not don't honow DOCSDIR
|
|
add-plist-docs:
|
|
@${DO_NADA}
|
|
|
|
.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk"
|