mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
aba308616a
other docbook-* ports were broken in the same way, so I've taken the liberty of updating the URL for all of them -- it looks as though OASIS have fallen over, so point these at docbook.org for the time being.
40 lines
896 B
Makefile
40 lines
896 B
Makefile
# New ports collection makefile for: docbook-400
|
|
# Date created: 4 April 2000
|
|
# Whom: asmodai
|
|
#
|
|
# Based on nik's docbook-310 port
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= docbook
|
|
PORTVERSION= 4.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.docbook.org/sgml/4.0/
|
|
DISTNAME= docbk40
|
|
|
|
MAINTAINER= asmodai@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${ISOCAT}:${PORTSDIR}/textproc/iso8879
|
|
|
|
USE_ZIP= yes
|
|
NO_MTREE= yes
|
|
EXTRACT_ONLY= # empty
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
INSTDIR= ${PREFIX}/share/sgml/docbook
|
|
ISOCAT= ${PREFIX}/share/sgml/iso8879/catalog
|
|
|
|
pre-install:
|
|
@[ -d ${INSTDIR}/4.0 ] || ${MKDIR} ${INSTDIR}/4.0
|
|
|
|
do-install:
|
|
@unzip -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/4.0
|
|
@${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/4.0/catalog
|
|
@${ECHO} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/4.0/catalog
|
|
@${CHMOD} ${SHAREMODE} ${INSTDIR}/4.0/*
|
|
@${CHOWN} -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|