diff options
author | marcus <marcus@FreeBSD.org> | 2002-08-12 01:32:35 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-08-12 01:32:35 +0800 |
commit | 2adade594a9be30680f11921a2e2dc607dfb3161 (patch) | |
tree | b652cc65f431fc14efeec713407f19258b10573a | |
parent | dab88ab0a6296006bc0973c6efd88291d5fc3d27 (diff) | |
download | freebsd-ports-gnome-2adade594a9be30680f11921a2e2dc607dfb3161.tar.gz freebsd-ports-gnome-2adade594a9be30680f11921a2e2dc607dfb3161.tar.zst freebsd-ports-gnome-2adade594a9be30680f11921a2e2dc607dfb3161.zip |
Add an explicit dependency on docbook-xml to get around a problem where
the implicit dependency fails due to the catalog file not being removed
when docbook-xml is deleted.
PR: 41300
-rw-r--r-- | textproc/scrollkeeper/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/textproc/scrollkeeper/Makefile b/textproc/scrollkeeper/Makefile index 0e34308b341d..a683fdda4cfd 100644 --- a/textproc/scrollkeeper/Makefile +++ b/textproc/scrollkeeper/Makefile @@ -18,8 +18,10 @@ MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= xslt.1:${PORTSDIR}/textproc/libxslt \ intl.4:${PORTSDIR}/devel/gettext BUILD_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool \ + ${LOCALBASE}/share/xml/docbook/${DOCBOOK_VERSION}/docbook.cat:${PORTSDIR}/textproc/docbook-xml \ ${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl RUN_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool \ + ${LOCALBASE}/share/xml/docbook/${DOCBOOK_VERSION}/docbook.cat:${PORTSDIR}/textproc/docbook-xml \ ${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl # Don't use USE_X_PREFIX - the port doesn't really require X11 to run. @@ -28,6 +30,8 @@ RUN_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool \ # put in the right place. PREFIX?= ${X11BASE} +DOCBOOK_VERSION= 4.1.2 + USE_BZIP2= yes USE_GMAKE= yes USE_LIBTOOL= yes |