summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorhubertf <hubertf>2001-02-25 04:17:35 +0000
committerhubertf <hubertf>2001-02-25 04:17:35 +0000
commita753e3df91cdc99aabc59d87ac260acdd2edb79d (patch)
treef7733ee24f18b76cbeda1e577b4cec2485f4cf3e /converters
parenta0e1b5390dbcf8c448cd2ce2bff91b542a46a4ef (diff)
downloadpkgsrc-a753e3df91cdc99aabc59d87ac260acdd2edb79d.tar.gz
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'converters')
-rw-r--r--converters/psiconv/Makefile4
-rw-r--r--converters/txt2html/Makefile4
-rw-r--r--converters/uudeview/Makefile10
-rw-r--r--converters/xdeview/Makefile12
4 files changed, 15 insertions, 15 deletions
diff --git a/converters/psiconv/Makefile b/converters/psiconv/Makefile
index 371b922fab9..24399d7770a 100644
--- a/converters/psiconv/Makefile
+++ b/converters/psiconv/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2001/02/16 13:59:27 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2001/02/25 04:17:39 hubertf Exp $
#
DISTNAME= psiconv-0.6.1
@@ -25,7 +25,7 @@ CONFIGURE_ENV+= CPPFLAGS="`${MAGICK_CONFIG} --cppflags` -DIMAGEMAGICK" \
LIBS="${LIBS} `${MAGICK_CONFIG} --libs`"
post-install:
- ${MKDIR} ${PREFIX}/share/doc/psiconv
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/psiconv
.for file in ascii html html4
${INSTALL_DATA} ${WRKSRC}/docs/${file} ${PREFIX}/share/doc/psiconv
.endfor
diff --git a/converters/txt2html/Makefile b/converters/txt2html/Makefile
index 38e5ac06409..e45f984e7dd 100644
--- a/converters/txt2html/Makefile
+++ b/converters/txt2html/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2001/02/16 13:59:28 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2001/02/25 04:17:39 hubertf Exp $
DISTNAME= txt2html-1.28
CATEGORIES= converters www
@@ -17,7 +17,7 @@ do-configure:
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/txt2html ${PREFIX}/bin
- -${MKDIR} ${PREFIX}/share/txt2html
+ -${INSTALL_DATA_DIR} ${PREFIX}/share/txt2html
${INSTALL_DATA} ${WRKSRC}/txt2html.dict ${PREFIX}/share/txt2html
${INSTALL_DATA} ${WRKSRC}/sample.foot ${PREFIX}/share/txt2html
${INSTALL_DATA} ${WRKSRC}/sample.html ${PREFIX}/share/txt2html
diff --git a/converters/uudeview/Makefile b/converters/uudeview/Makefile
index a2f74b805af..bb7231c4071 100644
--- a/converters/uudeview/Makefile
+++ b/converters/uudeview/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2001/02/16 13:59:29 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2001/02/25 04:17:39 hubertf Exp $
# FreeBSD Id: Makefile,v 1.15 1998/02/18 22:19:58 hoek Exp
#
@@ -16,12 +16,12 @@ GNU_CONFIGURE= Yes
CONFIGURE_ARGS= --enable-inews=inews --disable-tcl
CONFIGURE_ENV= LDFLAGS=-s
-PORTDOCDIR?= share/doc/uudeview
+PORTDOCDIR= ${PREFIX}/share/doc/uudeview
post-install:
@${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}"
- @${MKDIR} ${PREFIX}/${PORTDOCDIR}
- @${INSTALL_MAN} ${WRKSRC}/HOWTO ${PREFIX}/${PORTDOCDIR}
- @${INSTALL_MAN} ${FILESDIR}/porting.notes ${PREFIX}/${PORTDOCDIR}
+ @${INSTALL_DATA_DIR} ${PORTDOCDIR}
+ @${INSTALL_DATA} ${WRKSRC}/HOWTO ${PORTDOCDIR}
+ @${INSTALL_DATA} ${FILESDIR}/porting.notes ${PORTDOCDIR}
.include "../../mk/bsd.pkg.mk"
diff --git a/converters/xdeview/Makefile b/converters/xdeview/Makefile
index 605b5a56080..77eae72e757 100644
--- a/converters/xdeview/Makefile
+++ b/converters/xdeview/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2001/02/16 13:59:32 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2001/02/25 04:17:39 hubertf Exp $
# FreeBSD Id: Makefile,v 1.11 1998/02/24 21:43:45 jseger Exp
#
@@ -25,13 +25,13 @@ CONFIGURE_ENV= LDFLAGS=-s\
ALL_TARGET= xdeview
INSTALL_TARGET= install-tcl
-PORTDOCDIR?= share/doc/xdeview
+PORTDOCDIR= ${PREFIX}/share/doc/xdeview
DOCFILES= ${FILESDIR}/porting.notes ${WRKSRC}/HOWTO
post-install:
- @${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}"
- @${MKDIR} ${PREFIX}/${PORTDOCDIR}
- ${INSTALL_MAN} ${DOCFILES} ${PREFIX}/${PORTDOCDIR}
- ${INSTALL_MAN} ${WRKSRC}/man/xdeview.1 ${PREFIX}/man/man1
+ @${ECHO_MSG} "===> Copying documents to ${PORTDOCDIR}"
+ @${INSTALL_DATA_DIR} ${PORTDOCDIR}
+ ${INSTALL_DATA} ${DOCFILES} ${PORTDOCDIR}
+ ${INSTALL_DATA} ${WRKSRC}/man/xdeview.1 ${PREFIX}/man/man1
.include "../../mk/bsd.pkg.mk"