mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
d3f311ee72
general character entity definitions used by numerous SGML DTDs including DocBook and our version of Linuxdoc.
38 lines
758 B
Makefile
38 lines
758 B
Makefile
# New ports collection makefile for: iso8879
|
|
# Version required: 1.0
|
|
# Date created: June 19, 1997
|
|
# Whom: jfieber
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= iso8879-1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.sil.org/sgml/
|
|
|
|
MAINTAINER= jfieber@FreeBSD.ORG
|
|
|
|
DISTFILES= isoENTS.zip
|
|
|
|
NO_MTREE= yes
|
|
NO_EXTRACT= yes
|
|
NO_BUILD= yes
|
|
NO_PATCH= yes
|
|
NO_CONFIGURE= yes
|
|
NO_WRKDIR= yes
|
|
|
|
BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
INSTDIR= ${PREFIX}/share/sgml/iso8879/
|
|
|
|
pre-install:
|
|
@[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
|
|
|
|
do-install:
|
|
@unzip -a -q -o -d ${INSTDIR} ${DISTDIR}/${DISTFILES}
|
|
@${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/catalog
|
|
@chmod ${SHAREMODE} ${INSTDIR}/*
|
|
@chown -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|