+2008-05-08 John Darrington <john@darrington.wattle.id.au>
+
+ * automake.mk: Compress the info files, because later
+ versions of yelp seem to crash otherwise.
+
2008-03-11 Jason Stover <jhs@math.gcsu.edu>
* regression.texi (REGRESSION): Fixed use of @dots in @math
doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
@$(MKDIR_P) doc
@PERL@ $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
+
+# It seems that recent versions of yelp, upon which the gui relies to display the reference
+# manual, are broken. It only works on compressed info files. So we must compress them.
+install-data-hook::
+ for ifile in $(DESTDIR)$(infodir)/pspp.info-[0-9] \
+ $(DESTDIR)$(infodir)/pspp.info ; do \
+ gzip -f $$ifile ; \
+ done
+
+uninstall-hook::
+ rm -f $(DESTDIR)$(infodir)/pspp.info-[0-9].gz
+ rm -f $(DESTDIR)$(infodir)/pspp.info.gz
msgstr ""
"Project-Id-Version: PSPP 0.4.3\n"
"Report-Msgid-Bugs-To: pspp-dev@gnu.org\n"
-"POT-Creation-Date: 2008-05-09 13:35+0800\n"
+"POT-Creation-Date: 2008-05-09 11:48+0800\n"
"PO-Revision-Date: 2006-07-28 19:32+0800\n"
"Last-Translator: John Darrington <john@darrington.wattle.id.au>\n"
"Language-Team: German <pspp-dev@gnu.org>\n"
msgstr ""
"Project-Id-Version: PSPP 0.4.3\n"
"Report-Msgid-Bugs-To: pspp-dev@gnu.org\n"
-"POT-Creation-Date: 2008-05-09 13:35+0800\n"
+"POT-Creation-Date: 2008-05-09 11:48+0800\n"
"PO-Revision-Date: 2007-09-15 08:29+0800\n"
"Last-Translator: John Darrington <john@darrington.wattle.id.au>\n"
"Language-Team: John Darrington <john@darrington.wattle.id.au>\n"
+2008-05-09 John Darrington <john@darrington.wattle.id.au>
+
+ * automake.mk: On make install, warn about the non-existance of yelp.
+
2008-05-08 Ben Pfaff <blp@gnu.org>
Patch #6505. Reviewed by John Darrington.
src/ui/gui/window-manager.c \
src/ui/gui/window-manager.h
-
+install-data-hook::
+ @if ! yelp --version > /dev/null 2>&1 ; then \
+ echo ; \
+ echo ' The Yelp document viewer does not seem to be installed on the system.' ; \
+ echo ' If Yelp is not available at run time, then the PSPPIRE online reference' ; \
+ echo ' manual will not be available.' ; \
+ echo ' Yelp is available from the GNOME project. ftp://ftp.gnome.org/pub/gnome/sources/yelp' ; \
+ echo ; \
+ fi