diff options
author | wiz <wiz@pkgsrc.org> | 2005-05-20 08:59:40 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-05-20 08:59:40 +0000 |
commit | d70ab0f519d95b6a68c4f2057852f17899a1c56d (patch) | |
tree | 8edfa40d3189ae81c4033233a00021c464207e1f /textproc/html/Makefile | |
parent | f1bb560a710a3c3ee9ee5d0b6405333f2a27888d (diff) | |
download | pkgsrc-d70ab0f519d95b6a68c4f2057852f17899a1c56d.tar.gz |
Change install target to use tar instead of gtar.
Add missing files to PLIST and bump PKGREVISION.
Diffstat (limited to 'textproc/html/Makefile')
-rw-r--r-- | textproc/html/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/textproc/html/Makefile b/textproc/html/Makefile index e65f7a45beb..2aef00a8380 100644 --- a/textproc/html/Makefile +++ b/textproc/html/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.15 2005/05/16 01:15:33 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2005/05/20 08:59:40 wiz Exp $ # DISTNAME= html-4.01 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= textproc MASTER_SITES= ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ @@ -19,8 +19,6 @@ NO_MTREE= yes EXTRACT_ONLY= # empty NO_BUILD= yes -PKGSRC_USE_TOOLS+= gtar - INSTDIR= ${PREFIX}/share/sgml/html ISOCAT= ${PREFIX}/share/sgml/iso8879/catalog @@ -28,7 +26,8 @@ SGML_CATALOGS= ${INSTDIR}/catalog do-install: ${INSTALL_DATA_DIR} ${INSTDIR} - ${GTAR} -plzx -C ${INSTDIR} -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} + cd ${INSTDIR} && \ + ${TAR} -zxf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${ECHO} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/catalog .include "../../textproc/xmlcatmgr/catalogs.mk" |