aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/docbook-xml/Makefile
blob: 5261a3d24cb72033eaa14e394b355f6915cf58a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# New ports collection makefile for:    DocBook XML DTD
# Date created:     28 March 1999
# Whom:         kuriyama
#
# $FreeBSD$
#

PORTNAME=   docbook-xml
PORTVERSION=    4.2
PORTREVISION=   1
CATEGORIES= textproc
MASTER_SITES=   http://www.docbook.org/xml/${PORTVERSION}/ \
        http://www.oasis-open.org/committees/docbook/xml/${PORTVERSION}/

MAINTAINER= kuriyama@FreeBSD.org
COMMENT=    XML version of the DocBook DTD

RUN_DEPENDS=    ${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr

BUILD_DEPENDS=  unzip:${PORTSDIR}/archivers/unzip
USE_ZIP=    YES
NO_BUILD=   YES
NO_WRKSUBDIR=   YES
PLIST_SUB=  DTD_VERSION=${PORTVERSION} \
        XMLCATMGR=${XMLCATMGR}\
        DOCBOOKDIR=${DOCBOOKDIR}\
        CATALOG_PORTS_SGML=${CATALOG_PORTS_SGML} \
        CATALOG_PORTS_XML=${CATALOG_PORTS_XML}

DOCBOOKDIR= ${PREFIX}/share/xml/${PORTNAME:S/-xml//}/${PORTVERSION}
XMLCATMGR=  ${LOCALBASE}/bin/xmlcatmgr
CATALOG_PORTS_SGML= ${PREFIX}/share/sgml/catalog.ports
CATALOG_PORTS_XML=  ${PREFIX}/share/xml/catalog.ports

pre-su-install:
    @[ -d ${DOCBOOKDIR}/ent ] || ${MKDIR} ${DOCBOOKDIR}/ent

do-install:
    for file in `unzip -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \
        ${INSTALL_DATA} ${WRKSRC}/$$file ${DOCBOOKDIR}/$$file; \
    done

post-install:
    @-${XMLCATMGR} -sc ${CATALOG_PORTS_SGML} add CATALOG ${DOCBOOKDIR}/docbook.cat
    @-${XMLCATMGR} -c ${CATALOG_PORTS_XML} add nextCatalog ${DOCBOOKDIR}/catalog.xml

.include <bsd.port.mk>