blob: 4a6fba0f1226c068759d9e1e34beb14b92dc46dc (
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
48
49
50
51
52
53
54
55
|
# New ports collection makefile for: docbook
# Date created: 7 April 1997
# Whom: nik
#
# Based heavily on work by jfieber.
#
# $FreeBSD$
#
PORTNAME= docbook
PORTVERSION= 2.4.1
PORTEPOCH= 1
CATEGORIES= textproc
MASTER_SITES= http://www.oasis-open.org/docbook/sgml/2.4.1/
DISTNAME= docbk241
MAINTAINER= gabor@FreeBSD.org
COMMENT= V2.4.1 of the DocBook DTD, designed for technical documentation
RUN_DEPENDS= ${ISOCAT}:${PORTSDIR}/textproc/iso8879 \
${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr
USE_ZIP= yes
NO_MTREE= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
DTDDIR= share/sgml/docbook/2.4.1/dtd
PLIST_SUB+= SGMLCAT_ADD="${SGMLCAT_ADD}" \
SGMLCAT_RM="${SGMLCAT_RM}"
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
SGMLCAT= ${PREFIX}/share/sgml/catalog.ports
XMLCAT= ${PREFIX}/share/xml/catalog.ports
ISOCAT= ${PREFIX}/share/sgml/iso8879/catalog
SGMLCAT_ADD= ${XMLCATMGR} -sc ${SGMLCAT} add CATALOG \
${PREFIX}/${DTDDIR}/catalog
SGMLCAT_RM= ${XMLCATMGR} -sc ${SGMLCAT} remove \
${PREFIX}/${DTDDIR}/catalog
LATEST_LINK= docbook-241
do-install:
@${MKDIR} ${PREFIX}/${DTDDIR}
files=$$(${FIND} ${WRKSRC} -type f | ${GREP} -v "${WRKSRC}/\."); \
for i in $${files}; do \
${INSTALL_DATA} $${i} ${PREFIX}/${DTDDIR}; \
done
@${ECHO} "CATALOG \"${ISOCAT}\"" >> ${PREFIX}/${DTDDIR}/catalog
post-install:
-${SGMLCAT_ADD}
.include <bsd.port.mk>
|