BUGFIX: sgml-common build needs to define docdir.
authorChris Larson <clarson@kergoth.com>
Thu, 22 Jan 2004 04:43:04 +0000 (04:43 +0000)
committerChris Larson <clarson@kergoth.com>
Thu, 22 Jan 2004 04:43:04 +0000 (04:43 +0000)
BKrev: 400f54d88tzEllHqpTzdJXPQUHbNjQ

sgml-common/sgml-common-0.6.3/autohell.patch

index e69de29..6ebd5d9 100644 (file)
@@ -0,0 +1,52 @@
+
+#
+# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
+#
+
+--- sgml-common-0.6.3/bin/Makefile.am~autohell 2001-01-30 09:42:21.000000000 -0500
++++ sgml-common-0.6.3/bin/Makefile.am  2004-01-21 22:02:11.000000000 -0500
+@@ -1,6 +1,5 @@
+ primitive_scripts = sgmlwhich
+-bindir = $(prefix)/bin
+ bin_SCRIPTS = install-catalog $(primitive_scripts)
+ EXTRA_DIST =  install-catalog.in $(primitive_scripts)
+--- /dev/null  2003-09-23 18:19:32.000000000 -0400
++++ sgml-common-0.6.3/bin/sgmlwhich.in 2004-01-21 22:02:11.000000000 -0500
+@@ -0,0 +1,7 @@
++#!/bin/sh
++# Location of the main configuration file for consistency with non-LSB platforms
++# Send any comments to Eric Bischoff <eric@caldera.de>
++# This program is under GPL license. See LICENSE file for details.
++
++echo "@sysconfdir@/sgml/sgml.conf"
++# Simple, isn't it? ;-)
+--- /dev/null  2003-09-23 18:19:32.000000000 -0400
++++ sgml-common-0.6.3/config/sgml.conf.in      2004-01-21 22:02:11.000000000 -0500
+@@ -0,0 +1,2 @@
++SGML_BASE_DIR=@datadir@/sgml
++SGML_CATALOGS_DIR=@sysconfdir@/sgml
+--- sgml-common-0.6.3/configure.in~autohell    2001-05-25 12:40:54.000000000 -0400
++++ sgml-common-0.6.3/configure.in     2004-01-21 22:18:11.000000000 -0500
+@@ -3,10 +3,9 @@
+ AM_INIT_AUTOMAKE(sgml-common, 0.6.3)
+-docdir='$(prefix)/doc'
+-AC_SUBST(docdir)
+-
+ dnl Checks for programs.
++docdir='$(datadir)/doc'
++AC_SUBST(docdir)
+ dnl Checks for libraries.
+@@ -18,6 +17,6 @@
+ AC_OUTPUT(Makefile \
+           bin/Makefile bin/install-catalog \
+-          config/Makefile \
++          config/Makefile config/sgml.conf bin/sgmlwhich \
+           doc/Makefile doc/HTML/Makefile doc/man/Makefile doc/refentry/Makefile \
+           sgml-iso-entities/Makefile xml-iso-entities/Makefile)