blob: 2ad8266da0d4bca6d2323a1891813ef3603b6502 (
plain) (
blame)
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
|
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
# $FreeBSD$
PORTREVISION= 1
BOOKS= gdk gtk
PLIST= ${.CURDIR}/pkg-plist
NO_STAGE= yes
do-install:
.for d in ${BOOKS}
if [ -d ${REFERENCE_SRC}/${d}/html ]; then \
${MKDIR} ${PREFIX}/share/doc/${d}2; \
cd ${REFERENCE_SRC}/${d}/html && \
${FIND} * -type d ! -empty -exec ${MKDIR} "${PREFIX}/share/doc/${d}2/{}" \; && \
${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${PREFIX}/share/doc/${d}2/{}" \; ; \
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"
|