1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/graphics/gimp-manual-html/Makefile

67 lines
1.6 KiB
Makefile
Raw Normal View History

2003-02-17 17:02:07 +00:00
# New ports collection makefile for: gimp-manual
# Date created: 5 June 1998
# Whom: Brett Taylor
#
1999-08-25 06:16:32 +00:00
# $FreeBSD$
#
PORTNAME= GimpUserManual
2003-02-17 17:02:07 +00:00
PORTVERSION= 2
CATEGORIES= graphics
MASTER_SITES= http://kefk.net/Open_Source/FS/GIMP/Download/GUM/ \
http://ftp.nluug.nl/ftp/graphics/gimp/manual/
PKGNAMESUFFIX= -${DOCFORMAT}
MAINTAINER= ports@FreeBSD.org
2003-02-21 12:17:17 +00:00
COMMENT= The user manual for the GNU Image Manipulation Program (GIMP)
.if !defined(DOCFORMAT)
DOCFORMAT=HTML
.else
2003-04-29 22:14:05 +00:00
.if ${DOCFORMAT} != "HTML" && ${DOCFORMAT} != "PDF"
.BEGIN:
@${ECHO_MSG} "ERROR: invalid value for DOCFORMAT: \"${DOCFORMAT}\""
@${ECHO_MSG} "Possible values are: HTML, PDF."
@${FALSE}
.endif
.endif
2000-10-08 01:14:54 +00:00
PLIST= ${PKGDIR}/pkg-plist_${DOCFORMAT}
pre-everything::
@${ECHO_MSG} "This manual is available in two formats: HTML and PDF."
@${ECHO_MSG} "Note that the manual is pretty darn big."
2001-01-21 19:26:19 +00:00
PREFIX?= ${X11BASE} # This port itself does not require Xlib
2003-02-17 17:02:07 +00:00
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
2003-02-17 17:02:07 +00:00
for file in ${DISTFILES} ; do \
cd ${PREFIX}/share/doc/gimp; \
${TAR} -zxf ${DISTDIR}/$${file}; \
${CHOWN} -R root:wheel ${PREFIX}/share/doc/gimp; \
2003-02-17 17:02:07 +00:00
done
.endif
.if ${DOCFORMAT} == "PDF"
2003-02-17 17:02:07 +00:00
DISTFILES= GimpUsersManual_SecondEdition-PDF_Color.pdf \
GimpUsersManual_SecondEdition-PDF.pdf
EXTRACT_ONLY= #empty
NO_BUILD= yes
do-install:
@${MKDIR} ${PREFIX}/share/doc/gimp
2003-02-17 17:02:07 +00:00
for file in ${DISTFILES} ; do \
${INSTALL_DATA} ${DISTDIR}/$${file} ${PREFIX}/share/doc/gimp/ ; \
2003-02-17 17:02:07 +00:00
done
.endif
.include <bsd.port.mk>