mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
963854440c
It simplifies the handling of the XML and SMGL catalog It brings a big of consistency by always specifying the catalog path absolute instead of mixing absolute and relative path. The keyword is also written a PKG_ROOTDIR friendly to simplify cross installing Reviewed by: hrs Differential Revision: https://reviews.freebsd.org/D6539
27 lines
573 B
Makefile
27 lines
573 B
Makefile
# Created by: Kimura Fuyuki <fuyuki@mj.0038.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmlcharent
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.oasis-open.org/docbook/${PORTNAME}/${PORTVERSION}/
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= XML character entities
|
|
|
|
RUN_DEPENDS= xmlcatmgr:textproc/xmlcatmgr
|
|
|
|
USES= zip
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
XMLDIR= ${PREFIX}/share/xml/${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${XMLDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.ent \
|
|
${FILESDIR}/catalog ${FILESDIR}/catalog.xml ${STAGEDIR}${XMLDIR}
|
|
|
|
.include <bsd.port.mk>
|