1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

chown files to root:wheel after extraction;

propeply define PREFIX for *all* formats of the manual;
use install instead of cp.
This commit is contained in:
Dmitry Sivachenko 2003-03-02 09:21:53 +00:00
parent c731019d87
commit 3b8956b0d3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=76725

View File

@ -36,19 +36,20 @@ pre-fetch:
@${ECHO} "This manual is available in two formats: HTML and PDF."
@${ECHO} "Note that the manual is pretty darn big."
.if ${DOCFORMAT} == "HTML"
DISTFILES= GimpUsersManual_SecondEdition-HTML_Color.tar.gz \
GimpUsersManual_SecondEdition-HTML_Search.tar.gz
PREFIX?= ${X11BASE} # This port itself does not require Xlib
EXTRACT_ONLY= #empty
NO_BUILD= yes
.if ${DOCFORMAT} == "HTML"
DISTFILES= GimpUsersManual_SecondEdition-HTML_Color.tar.gz \
GimpUsersManual_SecondEdition-HTML_Search.tar.gz
do-install:
@${MKDIR} ${PREFIX}/share/doc/gimp
for file in ${DISTFILES} ; do \
cd ${PREFIX}/share/doc/gimp; \
${TAR} -zxf ${DISTDIR}/$${file}; \
@${CHOWN} -R root:wheel ${PREFIX}/share/doc/gimp \
done
.endif
@ -62,7 +63,7 @@ NO_BUILD= yes
do-install:
@${MKDIR} ${PREFIX}/share/doc/gimp
for file in ${DISTFILES} ; do \
${CP} ${DISTDIR}/$${file} ${PREFIX}/share/doc/gimp/; \
${INSTALL_DATA} ${DISTDIR}/$${file} ${PREFIX}/share/doc/gimp/ ; \
done
.endif