diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-08-14 18:44:18 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-08-14 18:44:18 +0800 |
commit | 9491743fbc37d336da40547b06e385f4b23c6989 (patch) | |
tree | b7635f209e4e63c7a2875261df8f53cd8da97731 /graphics/py-imaging-handbook/Makefile | |
parent | 84d6e2d03c4dc4933fc1332c5af509278ac20eab (diff) | |
download | freebsd-ports-graphics-9491743fbc37d336da40547b06e385f4b23c6989.tar.gz freebsd-ports-graphics-9491743fbc37d336da40547b06e385f4b23c6989.tar.zst freebsd-ports-graphics-9491743fbc37d336da40547b06e385f4b23c6989.zip |
Update to 1.1.
Submitted by: bento
Diffstat (limited to 'graphics/py-imaging-handbook/Makefile')
-rw-r--r-- | graphics/py-imaging-handbook/Makefile | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/graphics/py-imaging-handbook/Makefile b/graphics/py-imaging-handbook/Makefile index 57c889c1f4e..c51b9f2f0b5 100644 --- a/graphics/py-imaging-handbook/Makefile +++ b/graphics/py-imaging-handbook/Makefile @@ -6,28 +6,39 @@ # PORTNAME= imaging-handbook -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= graphics -MASTER_SITES= http://www.pythonware.com/library/pil/handbook/ +MASTER_SITES= http://www.pythonware.com/library/pil/handbook/ \ + http://www.pythonware.com/images/ \ + http://www.pythonware.com/ PKGNAMEPREFIX= py- -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 +DISTFILES= appendices.htm blank.gif blurb-works-1.2.gif concepts.htm \ + concept1.gif getting-support.htm icon-works.gif \ + image-file-formats.htm image.htm imagechops.htm \ + imagecrackcode.htm imagedraw.htm imageenhance.htm \ + imagefile.htm imagefileio.htm imagefilter.htm imagefont.htm \ + imagepath.htm imagesequence.htm imagestat.htm imagetk.htm \ + imagewin.htm index.htm introducing-pil.htm mailto-light.gif \ + module-reference.htm pilconvert.htm pildriver.htm pilfile.htm \ + pilfont.htm pilprint.htm preface.htm psdraw.htm pythonware.css \ + remote-light.gif software-license.htm tools-reference.htm \ + tutorial.htm writing-your-own-file-decoder.htm MAINTAINER= john@coastalgeology.org DIST_SUBDIR= pil EXTRACT_ONLY= -NO_BUILD= yes + +do-build: +.for file in ${DISTFILES} + ${SED} 's|\.\./\.\./\.\./pythonware\.css|pythonware.css|g ; \ + s|\.\./\.\./\.\./images/||g' \ + ${DISTDIR}/${DIST_SUBDIR}/${file} > ${WRKDIR}/${file} +.endfor 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 + @cd ${WRKDIR} && ${INSTALL_DATA} ${DISTFILES} \ + ${PREFIX}/share/doc/PIL/handbook .include <bsd.port.mk> |