aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/db2latex
diff options
context:
space:
mode:
authorstefan <stefan@FreeBSD.org>2013-04-28 19:24:26 +0800
committerstefan <stefan@FreeBSD.org>2013-04-28 19:24:26 +0800
commit2813bd5420c28d8c95a1e942f47b39cdd7438c54 (patch)
tree7c70a632f09e8bc64c3386080a3261d0ade244ec /textproc/db2latex
parentfd412d70edf0672bd426e563a29cba6d5182bf2f (diff)
downloadfreebsd-ports-gnome-2813bd5420c28d8c95a1e942f47b39cdd7438c54.tar.gz
freebsd-ports-gnome-2813bd5420c28d8c95a1e942f47b39cdd7438c54.tar.zst
freebsd-ports-gnome-2813bd5420c28d8c95a1e942f47b39cdd7438c54.zip
Fix a problem with nested <param> tags in the XSL stylesheet which xsltproc does
not like and which prevents building the bind9 documentation. PR: 173615 Submitted by: Mark Andrews <marka@isc.org>
Diffstat (limited to 'textproc/db2latex')
-rw-r--r--textproc/db2latex/Makefile2
-rw-r--r--textproc/db2latex/files/patch-xsl-lists.mod.xsl16
2 files changed, 17 insertions, 1 deletions
diff --git a/textproc/db2latex/Makefile b/textproc/db2latex/Makefile
index 9d04c1315a56..c918dd3f99aa 100644
--- a/textproc/db2latex/Makefile
+++ b/textproc/db2latex/Makefile
@@ -8,7 +8,7 @@
PORTNAME= db2latex
PORTVERSION= 0.8p1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= textproc
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.8pre1
DISTNAME= ${PORTNAME}-xsl-${PORTVERSION:S/p/pre/}
diff --git a/textproc/db2latex/files/patch-xsl-lists.mod.xsl b/textproc/db2latex/files/patch-xsl-lists.mod.xsl
new file mode 100644
index 000000000000..08b8d7282028
--- /dev/null
+++ b/textproc/db2latex/files/patch-xsl-lists.mod.xsl
@@ -0,0 +1,16 @@
+--- xsl/lists.mod.xsl.orig 2004-01-31 11:53:50.000000000 +0000
++++ xsl/lists.mod.xsl 2012-11-13 21:15:16.000000000 +0000
+@@ -269,10 +269,8 @@
+ </doc:notes>
+ </doc:template>
+ <xsl:template match="varlistentry">
+- <xsl:param name="next.is.list">
+- <xsl:param name="object" select="listitem/*[1]"/>
+- <xsl:value-of select="count($object[self::itemizedlist or self::orderedlist or self::variablelist])"/>
+- </xsl:param>
++ <xsl:param name="object" select="listitem/*[1]"/>
++ <xsl:param name="next.is.list" select="count($object[self::itemizedlist or self::orderedlist or self::variablelist])"/>
+ <xsl:variable name="id">
+ <xsl:call-template name="label.id"/>
+ </xsl:variable>
+