1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/textproc/xhtml-11/Makefile
Gabor Kovesdan 336e8813f4 - Modify SGML catalog to prevent some building errors by an SGML
declaration, which cannot be interpreted by Jade

PR:		ports/152457 (related)
Submitted by:	mandree
2011-02-25 18:18:06 +00:00

63 lines
1.6 KiB
Makefile

# New ports collection makefile for: XHTML 1.1 DTD
# Date created: 18 April 2003
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
#
# $FreeBSD$
#
PORTNAME= xhtml
PORTVERSION= 1.1.${RECDATE}
PORTREVISION= 2
CATEGORIES= textproc
MASTER_SITES= http://www.w3.org/TR/2007/WD-xhtml11-${RECDATE}/
DISTNAME= xhtml11
EXTRACT_SUFX= .tgz
MAINTAINER= gabor@FreeBSD.org
COMMENT= W3C's XHTML 1.1 DTD
RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr
RECDATE= 20070216
LATEST_LINK= xhtml-11
WRKSRC= ${WRKDIR}/xhtml11-${RECDATE}
NO_BUILD= yes
PLIST_SUB+= XMLCAT_ADD="${XMLCAT_ADD}" \
XMLCAT_RM="${XMLCAT_RM}" \
SGMLCAT_ADD="${SGMLCAT_ADD}" \
SGMLCAT_RM="${SGMLCAT_RM}"
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
SGMLCAT= ${PREFIX}/share/sgml/catalog.ports
XMLCAT= ${PREFIX}/share/xml/catalog.ports
XMLCAT_ADD= ${XMLCATMGR} -c ${XMLCAT} add nextCatalog \
${PREFIX}/${DTDDIR}/catalog.xml
XMLCAT_RM= ${XMLCATMGR} -c ${XMLCAT} remove \
${PREFIX}/${DTDDIR}/catalog.xml
SGMLCAT_ADD= ${XMLCATMGR} -sc ${SGMLCAT} add CATALOG \
${PREFIX}/${DTDDIR}/xhtml11.cat
SGMLCAT_RM= ${XMLCATMGR} -sc ${SGMLCAT} remove \
${PREFIX}/${DTDDIR}/xhtml11.cat
DTDDIR= share/xml/${PORTNAME}/1.1/dtd
XSDDIR= share/xml/${PORTNAME}/1.1/xsd
post-patch:
${REINPLACE_CMD} -i '' 's|SGMLDECL "xml1.dcl"|-- SGMLDECL "xml1.dcl" --|g' \
${WRKSRC}/DTD/xhtml11.cat
do-install:
${MKDIR} ${PREFIX}/${DTDDIR}
${INSTALL_DATA} ${WRKSRC}/DTD/* ${PREFIX}/${DTDDIR}
${INSTALL_DATA} ${FILESDIR}/catalog.xml ${PREFIX}/${DTDDIR}
${MKDIR} ${PREFIX}/${XSDDIR}
${INSTALL_DATA} ${WRKSRC}/SCHEMA/* ${PREFIX}/${XSDDIR}
post-install:
${XMLCAT_ADD}
${SGMLCAT_ADD}
.include <bsd.port.mk>