summaryrefslogtreecommitdiffstats
path: root/source/a/gpm/gpm-1.20.1-multilib.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2009-08-26 10:00:38 -0500
committer Eric Hameleers <alien@slackware.com>2018-05-31 22:41:17 +0200
commit5a12e7c134274dba706667107d10d231517d3e05 (patch)
tree55718d5acb710fde798d9f38d0bbaf594ed4b296 /source/a/gpm/gpm-1.20.1-multilib.patch
downloadcurrent-5a12e7c134274dba706667107d10d231517d3e05.tar.gz
current-5a12e7c134274dba706667107d10d231517d3e05.tar.xz
Slackware 13.0slackware-13.0
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
Diffstat (limited to 'source/a/gpm/gpm-1.20.1-multilib.patch')
-rw-r--r--source/a/gpm/gpm-1.20.1-multilib.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/source/a/gpm/gpm-1.20.1-multilib.patch b/source/a/gpm/gpm-1.20.1-multilib.patch
new file mode 100644
index 000000000..723ee2b59
--- /dev/null
+++ b/source/a/gpm/gpm-1.20.1-multilib.patch
@@ -0,0 +1,52 @@
+--- gpm-1.20.1/doc/Makefile.in.multilib 2002-12-24 17:57:16.000000000 -0500
++++ gpm-1.20.1/doc/Makefile.in 2004-10-20 17:25:11.000000000 -0400
+@@ -97,7 +97,7 @@
+
+ # Main portion
+
+-all: $(srcdir)/gpm.info $(MANPAGES)
++all: gpm.info $(MANPAGES)
+
+ # why gpmdoc.ps and gpm.ps??
+ # there is no gpm.ps in my tree and no rule to generate gpm.ps.
+@@ -131,8 +131,8 @@
+ #i keep all my infopages compressed and i'm tired to do it by
+ #hand, so check if there are any compressed pages and do this
+ #one too
+- -ls $(infodir)/*[-.]info.gz >/dev/null 2>&1 \
+- && gzip -f $(infodir)/gpm.info
++ #-ls $(infodir)/*[-.]info.gz >/dev/null 2>&1 \
++ # && gzip -f $(infodir)/gpm.info
+ # Hmm.... shouldn't man pages be compressed too?
+ # maybe they should, but at least at my system they are not.
+
+--- gpm-1.20.1/contrib/Makefile.in.multilib 2002-12-24 17:57:16.000000000 -0500
++++ gpm-1.20.1/contrib/Makefile.in 2004-10-20 17:11:38.000000000 -0400
+@@ -9,10 +9,10 @@
+
+ include $(top_builddir)/Makefile.include
+
+-all: $(srcdir)/$(ELISP)
++all: $(filter-out %.elc,$(srcdir)/$(ELISP))
+
+ install: all
+- if [ -n "$(ELISP)" ]; then for i in `echo $(ELISP)`; do \
++ if [ -n "$(filter-out %.elc,$(ELISP))" ]; then for i in `echo $(filter-out %.elc,$(ELISP))`; do \
+ $(INSTALL_DATA) $(srcdir)/$$i $(lispdir)/`basename $$i` ;\
+ done; fi
+
+@@ -20,7 +20,7 @@
+ $(EMACS) -batch -l $(srcdir)/emacs/exec.el -exec '(byte-compile-file "$<")'
+
+ uninstall:
+- if [ -n "$(ELISP)" ]; then for i in `echo $(ELISP)`; do \
++ if [ -n "$(filter-out %.elc,$(ELISP))" ]; then for i in `echo $(filter-out %.elc,$(ELISP))`; do \
+ rm -f $(lispdir)/$$i ;\
+ done; fi
+
+@@ -28,4 +28,4 @@
+ $(CP) -r $(srcdir) $(top_builddir)/gpm-$(release)/
+
+ clean distclean:
+- $(RM) -f $(srcdir)/emacs/*.elc
++ $(RM) $(srcdir)/emacs/*.elc