mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
33 lines
987 B
Makefile
33 lines
987 B
Makefile
|
# New ports collection makefile for: PIL handbook
|
||
|
# Version required: 1.0
|
||
|
# Date created: 18th October 1999
|
||
|
# Whom: Jose Marques
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
DISTNAME= py-imaging-handbook-1.0
|
||
|
CATEGORIES= graphics
|
||
|
MASTER_SITES= http://www.pythonware.com/library/pil/handbook/
|
||
|
DISTFILES= labdoc.css index.htm overview.htm concepts.htm \
|
||
|
intro01.htm support.htm license.htm image.htm \
|
||
|
imagechops.htm imagedraw.htm imageenhance.htm \
|
||
|
imagefilter.htm imagefileio.htm imagefont.htm \
|
||
|
imagepalette.htm imagesequence.htm imagestat.htm \
|
||
|
imagetk.htm imagewin.htm psdraw.htm pilconvert.htm \
|
||
|
pildriver.htm pilfile.htm pilfont.htm pilprint.htm \
|
||
|
formats.htm decoder.htm
|
||
|
|
||
|
MAINTAINER= ports@FreeBSD.org
|
||
|
|
||
|
DIST_SUBDIR= pil
|
||
|
EXTRACT_ONLY=
|
||
|
NO_BUILD= yes
|
||
|
|
||
|
do-install:
|
||
|
@${MKDIR} ${PREFIX}/share/doc/PIL/handbook
|
||
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/*.css ${PREFIX}/share/doc/PIL/handbook
|
||
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/*.htm ${PREFIX}/share/doc/PIL/handbook
|
||
|
|
||
|
.include <bsd.port.mk>
|