diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-11 13:44:09 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-11 13:44:09 +0000 |
commit | 97097ef9cf49fd6eedc430491658340aff45cd0d (patch) | |
tree | f1fededf773421323117ef61515a817e29505469 /textproc/docbook-xml | |
parent | 0b3d229e9da508cdafb4cfacfa65d6c75536af16 (diff) | |
download | ports-97097ef9cf49fd6eedc430491658340aff45cd0d.tar.gz ports-97097ef9cf49fd6eedc430491658340aff45cd0d.zip |
Notes
Diffstat (limited to 'textproc/docbook-xml')
-rw-r--r-- | textproc/docbook-xml/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/textproc/docbook-xml/Makefile b/textproc/docbook-xml/Makefile index 56e22e14521d..01b555bece84 100644 --- a/textproc/docbook-xml/Makefile +++ b/textproc/docbook-xml/Makefile @@ -28,17 +28,12 @@ XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr CATALOG_PORTS_SGML= ${PREFIX}/share/sgml/catalog.ports CATALOG_PORTS_XML= ${PREFIX}/share/xml/catalog.ports -NO_STAGE= yes pre-su-install: - @[ -d ${DOCBOOKDIR}/ent ] || ${MKDIR} ${DOCBOOKDIR}/ent + @[ -d ${STAGEDIR}${DOCBOOKDIR}/ent ] || ${MKDIR} ${STAGEDIR}${DOCBOOKDIR}/ent do-install: for file in `unzip -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${DOCBOOKDIR}/$$file; \ + ${INSTALL_DATA} ${WRKSRC}/$$file ${STAGEDIR}${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> |