blob: 8ae05264bbe7555c8695f94a9ec7d93a54663053 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
# $FreeBSD$
PORTREVISION= 0
BOOKS= glib gobject gio
do-install:
.for d in ${BOOKS}
if [ -d ${REFERENCE_SRC}/${d}/html ]; then \
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/${d}; \
cd ${REFERENCE_SRC}/${d}/html && \
${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/doc/${d}; \
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"
|