diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-03-02 09:21:53 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-03-02 09:21:53 +0000 |
commit | 3b8956b0d3670e466319c30a79beebfb010acd28 (patch) | |
tree | 65a45a5efe5f56b49a6c2b72a764977b04744680 /graphics/gimp-manual-html | |
parent | c731019d87f0f65c6d960896d78f69e7d300f7c0 (diff) | |
download | ports-3b8956b0d3670e466319c30a79beebfb010acd28.tar.gz ports-3b8956b0d3670e466319c30a79beebfb010acd28.zip |
Notes
Diffstat (limited to 'graphics/gimp-manual-html')
-rw-r--r-- | graphics/gimp-manual-html/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/graphics/gimp-manual-html/Makefile b/graphics/gimp-manual-html/Makefile index 731172850ae4..3bd05724e6fe 100644 --- a/graphics/gimp-manual-html/Makefile +++ b/graphics/gimp-manual-html/Makefile @@ -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 |