diff options
author | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
commit | 4998ed1120ceba68dfd376a31c35cc7e7560d644 (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /graphics/sketch/Makefile | |
parent | 404fa988da3e4b378114094a680f0dd6928e6d43 (diff) | |
download | pkgsrc-4998ed1120ceba68dfd376a31c35cc7e7560d644.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'graphics/sketch/Makefile')
-rw-r--r-- | graphics/sketch/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/sketch/Makefile b/graphics/sketch/Makefile index ca93279dff3..e12c19cc912 100644 --- a/graphics/sketch/Makefile +++ b/graphics/sketch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/02/16 15:22:33 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2001/02/25 04:17:52 hubertf Exp $ # FreeBSD Id: Makefile,v 1.4 1999/05/19 09:41:06 tg Exp $ DISTNAME= sketch-0.6.3 @@ -30,15 +30,15 @@ do-build: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} python setup.py build) do-install: - ${MKDIR} ${SKETCHDIR} + ${INSTALL_DATA_DIR} ${SKETCHDIR} .for dir in Filter Pax Plugins Resources Script Sketch (cd ${WRKSRC}; ${GTAR} -c -f - --exclude-from=${FILESDIR}/excludelist ${dir}) | \ (cd ${SKETCHDIR}/; ${GTAR} xf -) .endfor (cd ${WRKSRC}; ${INSTALL_SCRIPT} finishinst.py sk2ps.py sketch.py ${SKETCHDIR}) - ${MKDIR} ${SKETCHDOCDIR} + ${INSTALL_DATA_DIR} ${SKETCHDOCDIR} (cd ${WRKSRC}; ${GTAR} cf - ${SKETCHDOCS}) | (cd ${SKETCHDOCDIR}; ${GTAR} xf -) - ${MKDIR} ${SKETCHEXDIR} + ${INSTALL_DATA_DIR} ${SKETCHEXDIR} (cd ${WRKSRC}/Examples; ${GTAR} cf - .) | (cd ${SKETCHEXDIR}; ${GTAR} xf -) (cd ${SKETCHDIR}; python finishinst.py) ${SED} -e "s|@PREFIX@|${PREFIX}|g" < ${FILESDIR}/sketch.in > ${PREFIX}/bin/sketch |