[xml/sgml-commit] r2131 - in /packages/refdb/trunk/debian: changelog control patches/bug695846.patch patches/bug696333.patch patches/fixbatikrast.patch patches/series

malat at users.alioth.debian.org malat at users.alioth.debian.org
Fri Dec 28 16:01:49 UTC 2012


Author: malat
Date: Fri Dec 28 16:01:47 2012
New Revision: 2131

URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=2131
Log:
Fixes two bugs

Added:
    packages/refdb/trunk/debian/patches/bug695846.patch
    packages/refdb/trunk/debian/patches/bug696333.patch
Modified:
    packages/refdb/trunk/debian/changelog
    packages/refdb/trunk/debian/control
    packages/refdb/trunk/debian/patches/fixbatikrast.patch
    packages/refdb/trunk/debian/patches/series

Modified: packages/refdb/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/changelog?rev=2131&op=diff
==============================================================================
--- packages/refdb/trunk/debian/changelog (original)
+++ packages/refdb/trunk/debian/changelog Fri Dec 28 16:01:47 2012
@@ -3,6 +3,9 @@
   * Fix fop calling convention
   * Add missing Depends to php5-xsl
   * Suggests: yaz client to retrieve external database
+  * fix buffer overflow in process_ris_set(). Closes: #695846
+  * Remove extra -e from echo (dash). Closes: #696333
+  * Bump Std-Vers to 3.9.4, no changes needed
 
  -- Mathieu Malaterre <malat at debian.org>  Wed, 19 Dec 2012 18:53:35 +0100
 

Modified: packages/refdb/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/control?rev=2131&op=diff
==============================================================================
--- packages/refdb/trunk/debian/control (original)
+++ packages/refdb/trunk/debian/control Fri Dec 28 16:01:47 2012
@@ -3,12 +3,12 @@
 Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs at lists.alioth.debian.org>
 Uploaders: Mathieu Malaterre <malat at debian.org>
 Build-Depends: debhelper (>= 9), libdbi-dev (>= 0.8.1), libreadline-dev, libexpat-dev, libbtparse-dev, autotools-dev,
- docbook-xsl, docbook-xsl-ns, xsltproc, libxml2-utils,
+ docbook-xsl, docbook-xsl-ns, xsltproc, libxml2-utils, automake1.9,
  libmarc-record-perl, libmarc-charset-perl, librefdb-sru-perl, libterm-clui-perl
 #, dh-autoreconf
-Build-Depends-Indep: libbatik-java, libtrang-java, sgrep, tidy
+Build-Depends-Indep: libbatik-java, libtrang-java, sgrep, tidy, openjade
 # libsgml-dtdparser-perl
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Section: text
 Homepage: http://refdb.sf.net
 Vcs-Browser: http://anonscm.debian.org/viewvc/debian-xml-sgml/packages/refdb/
@@ -32,13 +32,13 @@
  and P5) sources with fully formatted citations and bibliographies according to
  publisher's specifications.
  .
- These are the client application for refdb server
+ These are the client applications for refdb server
 
 Package: refdb-server
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Suggests: libdbd-mysql, libdbd-pgsql, libdbd-sqlite3
-Description: Reference database and bibliography tool - sqlite3 server
+Description: Reference database and bibliography tool - sql server
  RefDB is a reference database and bibliography tool for SGML, XML, and
  LaTeX/BibTeX documents. It allows users to share databases over a network. It
  is accessible through command-line tools, through a web interface, from text
@@ -52,7 +52,7 @@
  and P5) sources with fully formatted citations and bibliographies according to
  publisher's specifications.
  .
- Provides the sqlite3/PostgreSQL/MySQL based server for refdb
+ Provides the SQLite3/PostgreSQL/MySQL based server for refdb
 
 Package: refdb-www
 Architecture: all

Added: packages/refdb/trunk/debian/patches/bug695846.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/patches/bug695846.patch?rev=2131&op=file
==============================================================================
--- packages/refdb/trunk/debian/patches/bug695846.patch (added)
+++ packages/refdb/trunk/debian/patches/bug695846.patch Fri Dec 28 16:01:47 2012
@@ -1,0 +1,17 @@
+Description: fixed buffer overflow in process_ris_set()
+Author: Mathieu Malaterre <malat at debian.org>
+Origin: http://refdb.svn.sourceforge.net/viewvc/refdb/refdb/trunk/src/risdb.c?view=patch&r1=763&r2=762&pathrev=763
+
+Index: refdb-0.9.9/src/risdb.c
+===================================================================
+--- refdb-0.9.9.orig/src/risdb.c	2007-10-31 01:01:22.000000000 +0100
++++ refdb-0.9.9/src/risdb.c	2012-12-28 16:01:59.414977214 +0100
+@@ -1525,7 +1525,7 @@
+ 	       || strncmp("M1  - ", token, 6) == 0
+ 	       || strncmp("M2  - ", token, 6) == 0
+ 	       || strncmp("M3  - ", token, 6) == 0) {
+-	char tofield[6];
++	char tofield[11];
+ 
+ 	if (!strncmp("U1  - ", token, 6)) {
+ 	  strcpy(tofield, "user1");

Added: packages/refdb/trunk/debian/patches/bug696333.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/patches/bug696333.patch?rev=2131&op=file
==============================================================================
--- packages/refdb/trunk/debian/patches/bug696333.patch (added)
+++ packages/refdb/trunk/debian/patches/bug696333.patch Fri Dec 28 16:01:47 2012
@@ -1,0 +1,111 @@
+Description: changed echo calls to printf calls or rewrote echo calls to be
+ compatible with dash on Debian which does not support echo -e
+Author: Mathieu Malaterre <malat at debian.org>
+Origin: http://refdb.svn.sourceforge.net/viewvc/refdb?view=revision&revision=764
+
+Index: refdb-0.9.9/scripts/refdb-backup
+===================================================================
+--- refdb-0.9.9.orig/scripts/refdb-backup	2007-07-10 23:37:16.000000000 +0200
++++ refdb-0.9.9/scripts/refdb-backup	2012-12-28 16:10:34.278988558 +0100
+@@ -122,12 +122,12 @@
+ 		\? ) echo "Error: Invalid flag '${OPTARG}' detected"
+ 		     echo "Usage: `basename $0` ${parameters}"
+ 		     echo "Try '`basename $0` -h' for help"
+-			 echo -ne "\a"
++			 printf "\a"
+ 			 exit 1;;
+ 		\: ) echo "Error: No argument supplied for flag '${OPTARG}'"
+ 		     echo "Usage: `basename $0` ${parameters}"
+ 		     echo "Try '`basename $0` -h' for help"
+-			 echo -ne "\a"
++			 printf "\a"
+ 			 exit 1;;
+ 	esac
+ done
+Index: refdb-0.9.9/scripts/refdb-init.in
+===================================================================
+--- refdb-0.9.9.orig/scripts/refdb-init.in	2007-07-10 23:37:16.000000000 +0200
++++ refdb-0.9.9/scripts/refdb-init.in	2012-12-28 16:10:34.278988558 +0100
+@@ -10,7 +10,7 @@
+ 	while [ 1 ] ; do
+ 		read confirm_input
+ 		[ `echo ${confirm_input} | grep "y\|Y\|n\|N"` ] && break
+-		echo -ne "\a"
++		printf "\a"
+ 	done
+ 	[ "${confirm_input}" = "Y" ] && confirm_input="y"
+ 	[ "${confirm_input}" = "N" ] && confirm_input="n"
+@@ -117,7 +117,7 @@
+     || [ "${engine_name}" = "sqlite" ] \
+     || [ "${engine_name}" = "sqlite3" ] \
+     && break
+-    echo -e "Please try again:\a"
++    printf "Please try again:\a\n"
+ done
+ 
+ 
+@@ -135,7 +135,7 @@
+ 	[ "${version_name}" = "pre" ] \
+ 	    || [ "${version_name}" = "post" ] \
+ 	    && break
+-	echo -e "Please try again:\a"
++	printf "Please try again:\a\n"
+     done
+ fi
+ 
+Index: refdb-0.9.9/scripts/refdb-restore
+===================================================================
+--- refdb-0.9.9.orig/scripts/refdb-restore	2007-07-10 23:37:16.000000000 +0200
++++ refdb-0.9.9/scripts/refdb-restore	2012-12-28 16:10:34.278988558 +0100
+@@ -108,12 +108,12 @@
+ 		\? ) echo "Error: Invalid flag '${OPTARG}' detected"
+ 		     echo "Usage: `basename $0` ${parameters}"
+ 		     echo "Try '`basename $0` -h' for help"
+-			 echo -ne "\a"
++			 printf "\a"
+ 			 exit 1;;
+ 		\: ) echo "Error: No argument supplied for flag '${OPTARG}'"
+ 		     echo "Usage: `basename $0` ${parameters}"
+ 		     echo "Try '`basename $0` -h' for help"
+-			 echo -ne "\a"
++			 printf "\a"
+ 			 exit 1;;
+ 	esac
+ done
+Index: refdb-0.9.9/scripts/refdb.in
+===================================================================
+--- refdb-0.9.9.orig/scripts/refdb.in	2007-07-10 23:37:16.000000000 +0200
++++ refdb-0.9.9/scripts/refdb.in	2012-12-28 16:10:34.278988558 +0100
+@@ -59,28 +59,28 @@
+ 	if [ $BSDSTYLE = "YES" ]; then
+ 	    $REFDBCTL start > /dev/null && echo -n ' refdb'
+ 	else
+-	    echo -ne "Starting bibliography tool application server: $NAME.\n"
++	    echo "Starting bibliography tool application server: $NAME."
+ 	    $REFDBCTL start
+ 	fi;;
+     stop)
+ 	if [ $BSDSTYLE = "YES" ]; then
+ 	    $REFDBCTL stop > /dev/null && echo -n ' refdb'
+ 	else
+-	    echo -ne "Stopping bibliography tool application server: $NAME.\n"
++	    echo "Stopping bibliography tool application server: $NAME."
+ 	    $REFDBCTL stop
+ 	fi;;
+     restart)
+ 	if [ $BSDSTYLE = "YES" ]; then
+ 	    $REFDBCTL restart > /dev/null && echo -n ' refdb'
+ 	else
+-	    echo -ne "Restarting bibliography tool application server: $NAME.\n"
++	    echo "Restarting bibliography tool application server: $NAME."
+ 	    $REFDBCTL restart
+ 	fi;;
+     force-reload)
+ 	if [ $BSDSTYLE = "YES" ]; then
+ 	    $REFDBCTL reload > /dev/null && echo -n ' refdb'
+ 	else
+-	    echo -ne "Reloading bibliography tool application server: $NAME.\n"
++	    echo "Reloading bibliography tool application server: $NAME."
+ 	    $REFDBCTL reload
+ 	fi;;
+     *)

Modified: packages/refdb/trunk/debian/patches/fixbatikrast.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/patches/fixbatikrast.patch?rev=2131&op=diff
==============================================================================
--- packages/refdb/trunk/debian/patches/fixbatikrast.patch (original)
+++ packages/refdb/trunk/debian/patches/fixbatikrast.patch Fri Dec 28 16:01:47 2012
@@ -4,8 +4,8 @@
 
 Index: refdb-0.9.9/configure.in
 ===================================================================
---- refdb-0.9.9.orig/configure.in	2012-12-13 15:35:54.149235462 +0100
-+++ refdb-0.9.9/configure.in	2012-12-13 15:36:01.721235507 +0100
+--- refdb-0.9.9.orig/configure.in	2012-12-28 16:57:09.259050139 +0100
++++ refdb-0.9.9/configure.in	2012-12-28 16:57:10.959050177 +0100
 @@ -209,7 +209,7 @@
  AC_PATH_PROG(mydtdformat, dtdformat)
  AC_PATH_PROG(mysgrep, sgrep)
@@ -15,3 +15,55 @@
  fi
  
  dnl see whether subversion is installed
+Index: refdb-0.9.9/doc/Makefile.am
+===================================================================
+--- refdb-0.9.9.orig/doc/Makefile.am	2012-12-28 16:57:17.847050329 +0100
++++ refdb-0.9.9/doc/Makefile.am	2012-12-28 16:57:24.147050467 +0100
+@@ -76,7 +76,7 @@
+ 
+ if HAVEBATIK
+ $(png_images): %.png: %.svg
+-	batik-rasterizer -m image/png $<
++	rasterizer -m image/png $<
+ else
+ $(png_images): %.png: %.svg
+ 	convert $< $@
+Index: refdb-0.9.9/doc/Makefile.in
+===================================================================
+--- refdb-0.9.9.orig/doc/Makefile.in	2012-12-28 16:58:02.559051314 +0100
++++ refdb-0.9.9/doc/Makefile.in	2012-12-28 16:58:14.579051576 +0100
+@@ -791,7 +791,7 @@
+ 	$(top_srcdir)/scripts/statgen.pl docbook > refdb-manual-statustable.xml
+ 
+ @HAVEBATIK_TRUE@$(png_images): %.png: %.svg
+- at HAVEBATIK_TRUE@	batik-rasterizer -m image/png $<
++ at HAVEBATIK_TRUE@	rasterizer -m image/png $<
+ @HAVEBATIK_FALSE@$(png_images): %.png: %.svg
+ @HAVEBATIK_FALSE@	convert $< $@
+ 
+Index: refdb-0.9.9/doc/chapter-installation.xml
+===================================================================
+--- refdb-0.9.9.orig/doc/chapter-installation.xml	2012-12-28 16:57:35.463050717 +0100
++++ refdb-0.9.9/doc/chapter-installation.xml	2012-12-28 16:57:42.079050863 +0100
+@@ -545,7 +545,7 @@
+ 	    <para>The SVN version also lacks a few other things which are included in the source tarballs. In order to create the missing stuff, you'll need the following additional tools:</para>
+ 	    <itemizedlist>
+ 	      <listitem>
+-		<para><ulink url="http://xml.apache.org/batik/svgrasterizer.html">Batik SVG Rasterizer</ulink>: an image converter used to create the images from the <acronym>SVG</acronym> sources. The Makefile calls a script in your path called <filename moreinfo="none">batik-rasterizer</filename> which is supposed to run this Java application appropriately.</para>
++		<para><ulink url="http://xml.apache.org/batik/svgrasterizer.html">Batik SVG Rasterizer</ulink>: an image converter used to create the images from the <acronym>SVG</acronym> sources. The Makefile calls a script in your path called <filename moreinfo="none">rasterizer</filename> which is supposed to run this Java application appropriately.</para>
+ 	      </listitem>
+ 	      <listitem>
+ 		<para><ulink url="http://dtdparse.sourceforge.net">dtdparse</ulink>: a Perl script (which in turn depends on a few Perl modules, see the installation instuctions) which generates the DTD documentation.</para>
+Index: refdb-0.9.9/doc/refdb-manual/ch04s04.html
+===================================================================
+--- refdb-0.9.9.orig/doc/refdb-manual/ch04s04.html	2012-12-28 16:57:49.315051022 +0100
++++ refdb-0.9.9/doc/refdb-manual/ch04s04.html	2012-12-28 16:57:54.851051144 +0100
+@@ -18,7 +18,7 @@
+ 	    </pre><p>Consider subscribing to the refdb-cvs mailing list as you'll be notified about each SVN checkin.</p></li><li><p>The SVN version lacks all autotool-generated files. You'll have to create them with your local autotools. RefDB contains a small script called <code class="filename">autogen.sh</code> in its top-level directory which performs all necessary steps.</p><pre class="screen">
+ 	      <code class="prompt">$~/build/refdb </code>
+ 	      <strong class="userinput"><code>./autogen.sh</code></strong>
+-	    </pre><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>The autotools can cause severe headaches at times. If the above command causes errors, read <code class="filename">autogen.sh</code> and run the commands manually, substituting different versions as appropriate. E.g. substitute <span><strong class="command">automake</strong></span> with <span><strong class="command">automake-1.8</strong></span> if this gives better results. The native autotools shipped with FreeBSD 5.4 and later are unusable for our purposes, you have to install the gnu-autotools package instead. You have to modify your <code class="envar">PATH</code> to pick up the latter, and fiddle with the m4 macro paths in order to see the light.</p></div></li><li><p>The SVN version also lacks a few other things which are included in the source tarballs. In order to create the missing stuff, you'll need the following additional tools:</p><div class="itemizedlist"><ul type="disc"><li><p><a href="http://xml.apache.org/batik/svgrasterizer.html" target="_top">Batik SVG Rasterizer</a>: an image converter used to create the images from the <acronym class="acronym">SVG</acronym> sources. The Makefile calls a script in your path called <code class="filename">batik-rasterizer</code> which is supposed to run this Java application appropriately.</p></li><li><p><a href="http://dtdparse.sourceforge.net" target="_top">dtdparse</a>: a Perl script (which in turn depends on a few Perl modules, see the installation instuctions) which generates the DTD documentation.</p></li><li><p><a href="http://www.thaiopensource.com/relaxng/trang.html" target="_top">trang</a>: a tool required to turn the RefDB DTDs into RelaxNG schemas.</p></li></ul></div><p>To work around problems, you may want to use the following <span><strong class="command">./configure</strong></span> switches:</p><div class="itemizedlist"><ul type="disc"><li><p>--with-trang-jar=PATH</p></li><li><p>--disable-docs</p></li></ul></div></li><li><p>Finally you're ready to build RefDB like you would with a <a href="ch04s04.html#sect-install-from-sources-unix" title="Installation from the sources">released version</a>.</p></li></ol></div><p>There is also a neat shell script available on the RefDB <a href="http://refdb.sourceforge.net/download.html" target="_top">download page</a> which helps you to keep a SVN version up to date with a minimum number of keystrokes.</p></div><div class="sect3" lang="en" xml:lang="en"><div class="titlepage"><div><div><h4 class="title"><a id="id2580045"></a>Installation of refdbd as a daemon</h4></div></div></div><p>This is all it takes to run RefDB from the command line. If you want to start refdbd as a daemon at system startup, a few more steps are necessary. The exact procedure varies greatly between operating systems and distributions. First we'll look at SysV-style systems (most Linux distributions), then at BSD-style systems (BSD-derived Unices and the Slackware Linux distribution).</p><div class="sect4" lang="en" xml:lang="en"><div class="titlepage"><div><div><h5 class="title"><a id="id2580055"></a>SysV-style</h5></div></div></div><p>The following procedure describes the setup on a Debian GNU/Linux system. With a little help of your system handbook you should be able to adapt this to your system. On many systems <code class="filename">/etc/init.d/README</code> contains just what you need to know or at least it points you to the correct resources.</p><div class="procedure"><ol type="1"><li><p>Review the parameters in the script <code class="filename">refdb</code> in the <code class="filename">scripts</code> directory of the source distribution (this file is not automatically installed). If necessary, change the paths and names to your needs and adapt the following steps. Make sure the <code class="varname">BSDSTYLE</code> variable is set to "NO" (this is the default value).</p></li><li><p>Copy the script <code class="filename">refdb</code> to <code class="filename">/etc/init.d/</code> and make sure it is executable: <span><strong class="command">chmod 755 /etc/init.d/refdb</strong></span>.</p></li><li><p>Create symbolic links from every runlevel directory that should start refdbd to <code class="filename">/etc/init.d/refdb</code>, e.g. <span><strong class="command">ln -s /etc/init.d/refdb /etc/rc2.d/S93refdb</strong></span>. The numbers in the link names are a convenient and simple way to determine the sequence of daemon starts. As most likely no other daemons rely on RefDB, you can choose as high a number as you want (the daemons are started in lexicographical order).</p></li><li><p>In analogy to the previous step, generate symbolic links in every runlevel directory that should stop the daemon. Usually these are the runlevels 0 (system halt) and 6 (reboot):</p><p>
++	    </pre><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>The autotools can cause severe headaches at times. If the above command causes errors, read <code class="filename">autogen.sh</code> and run the commands manually, substituting different versions as appropriate. E.g. substitute <span><strong class="command">automake</strong></span> with <span><strong class="command">automake-1.8</strong></span> if this gives better results. The native autotools shipped with FreeBSD 5.4 and later are unusable for our purposes, you have to install the gnu-autotools package instead. You have to modify your <code class="envar">PATH</code> to pick up the latter, and fiddle with the m4 macro paths in order to see the light.</p></div></li><li><p>The SVN version also lacks a few other things which are included in the source tarballs. In order to create the missing stuff, you'll need the following additional tools:</p><div class="itemizedlist"><ul type="disc"><li><p><a href="http://xml.apache.org/batik/svgrasterizer.html" target="_top">Batik SVG Rasterizer</a>: an image converter used to create the images from the <acronym class="acronym">SVG</acronym> sources. The Makefile calls a script in your path called <code class="filename">rasterizer</code> which is supposed to run this Java application appropriately.</p></li><li><p><a href="http://dtdparse.sourceforge.net" target="_top">dtdparse</a>: a Perl script (which in turn depends on a few Perl modules, see the installation instuctions) which generates the DTD documentation.</p></li><li><p><a href="http://www.thaiopensource.com/relaxng/trang.html" target="_top">trang</a>: a tool required to turn the RefDB DTDs into RelaxNG schemas.</p></li></ul></div><p>To work around problems, you may want to use the following <span><strong class="command">./configure</strong></span> switches:</p><div class="itemizedlist"><ul type="disc"><li><p>--with-trang-jar=PATH</p></li><li><p>--disable-docs</p></li></ul></div></li><li><p>Finally you're ready to build RefDB like you would with a <a href="ch04s04.html#sect-install-from-sources-unix" title="Installation from the sources">released version</a>.</p></li></ol></div><p>There is also a neat shell script available on the RefDB <a href="http://refdb.sourceforge.net/download.html" target="_top">download page</a> which helps you to keep a SVN version up to date with a minimum number of keystrokes.</p></div><div class="sect3" lang="en" xml:lang="en"><div class="titlepage"><div><div><h4 class="title"><a id="id2580045"></a>Installation of refdbd as a daemon</h4></div></div></div><p>This is all it takes to run RefDB from the command line. If you want to start refdbd as a daemon at system startup, a few more steps are necessary. The exact procedure varies greatly between operating systems and distributions. First we'll look at SysV-style systems (most Linux distributions), then at BSD-style systems (BSD-derived Unices and the Slackware Linux distribution).</p><div class="sect4" lang="en" xml:lang="en"><div class="titlepage"><div><div><h5 class="title"><a id="id2580055"></a>SysV-style</h5></div></div></div><p>The following procedure describes the setup on a Debian GNU/Linux system. With a little help of your system handbook you should be able to adapt this to your system. On many systems <code class="filename">/etc/init.d/README</code> contains just what you need to know or at least it points you to the correct resources.</p><div class="procedure"><ol type="1"><li><p>Review the parameters in the script <code class="filename">refdb</code> in the <code class="filename">scripts</code> directory of the source distribution (this file is not automatically installed). If necessary, change the paths and names to your needs and adapt the following steps. Make sure the <code class="varname">BSDSTYLE</code> variable is set to "NO" (this is the default value).</p></li><li><p>Copy the script <code class="filename">refdb</code> to <code class="filename">/etc/init.d/</code> and make sure it is executable: <span><strong class="command">chmod 755 /etc/init.d/refdb</strong></span>.</p></li><li><p>Create symbolic links from every runlevel directory that should start refdbd to <code class="filename">/etc/init.d/refdb</code>, e.g. <span><strong class="command">ln -s /etc/init.d/refdb /etc/rc2.d/S93refdb</strong></span>. The numbers in the link names are a convenient and simple way to determine the sequence of daemon starts. As most likely no other daemons rely on RefDB, you can choose as high a number as you want (the daemons are started in lexicographical order).</p></li><li><p>In analogy to the previous step, generate symbolic links in every runlevel directory that should stop the daemon. Usually these are the runlevels 0 (system halt) and 6 (reboot):</p><p>
+ 		<span><strong class="command">ln -s /etc/init.d/refdb /etc/rc0.d/K20refdb</strong></span>
+ 	      </p><p>
+ 		<span><strong class="command">ln -s /etc/init.d/refdb /etc/rc6.d/K20refdb</strong></span>

Modified: packages/refdb/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/refdb/trunk/debian/patches/series?rev=2131&op=diff
==============================================================================
--- packages/refdb/trunk/debian/patches/series (original)
+++ packages/refdb/trunk/debian/patches/series Fri Dec 28 16:01:47 2012
@@ -6,3 +6,5 @@
 #fix-doc-installation.patch
 fix-underlinking.patch
 fixfopjava.patch
+bug695846.patch
+bug696333.patch




More information about the debian-xml-sgml-commit mailing list