7464f336e3
# Maintainers, please let me know if I break something in your port. Submitted by: hrs PR: ports/53819, ports/53820, ports/53821, ports/53822, ports/53823, ports/53824, ports/53825, ports/53826, ports/53827, ports/53828, ports/53829, ports/53830, ports/53831, ports/53832, ports/53833, ports/53834, ports/53835, ports/53836, ports/53837
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
# New ports collection makefile for: tei-p3
|
|
# Date created: 19 May 2002
|
|
# Whom: Henrik Motakef <henrik.motakef@web.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tei
|
|
PORTVERSION= p3
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.tei-c.org/Vault/GL/
|
|
DISTNAME= teip3dtd
|
|
|
|
MAINTAINER= henrik.motakef@web.de
|
|
COMMENT= DTD of the Text Encoding Initiative
|
|
|
|
RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
PLIST_SUB= XMLCATMGR=${XMLCATMGR} \
|
|
DTDDIR=${DTDDIR} \
|
|
CATALOG_PORTS_SGML=${CATALOG_PORTS_SGML}
|
|
|
|
SGMLDIR= ${PREFIX}/share/sgml
|
|
INSTDIR= ${SGMLDIR}/${PORTNAME}/${PORTVERSION}
|
|
DTDDIR= ${PORTNAME}/${PORTVERSION}
|
|
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
|
|
CATALOG_PORTS_SGML= ${PREFIX}/share/sgml/catalog.ports
|
|
|
|
do-install:
|
|
@[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
|
|
@${INSTALL_MAN} ${WRKSRC}/*.dtd ${INSTDIR}
|
|
@${INSTALL_MAN} ${WRKSRC}/*.ent ${INSTDIR}
|
|
@${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}
|
|
|
|
post-install:
|
|
${XMLCATMGR} -sc ${CATALOG_PORTS_SGML} add CATALOG ${DTDDIR}/catalog
|
|
|
|
.include <bsd.port.mk>
|