mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
9ff3f5045b
Fix the problem where nsgmls would load parts of the HTML 4.0 DTD from www.w3.org rather than the local disk.
33 lines
707 B
Makefile
33 lines
707 B
Makefile
# New ports collection makefile for: html
|
|
# Version required: 4.0
|
|
# Date created: Sept 19, 1997
|
|
# Whom: jfieber
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1997/09/19 21:19:25 jfieber Exp $
|
|
#
|
|
|
|
DISTNAME= html-4.0b
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://fallout.campusview.indiana.edu/pub/sgml/
|
|
|
|
MAINTAINER= jfieber@FreeBSD.ORG
|
|
|
|
NO_MTREE= yes
|
|
EXTRACT_ONLY= # empty
|
|
NO_BUILD= yes
|
|
NO_PATCH= yes
|
|
NO_CONFIGURE= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
INSTDIR= ${PREFIX}/share/sgml/html
|
|
|
|
pre-install:
|
|
@[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
|
|
|
|
do-install:
|
|
@zcat ${DISTDIR}/${DISTFILES} |(cd ${INSTDIR}; pax -r)
|
|
@chmod ${SHAREMODE} `find ${INSTDIR} -type f`
|
|
@chown -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|