pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/editors/gedit/patches Prevent gzip(1) from nuking itse...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/745e4bcc76a5
branches:  trunk
changeset: 547730:745e4bcc76a5
user:      hubertf <hubertf%pkgsrc.org@localhost>
date:      Tue Sep 30 08:04:30 2008 +0000

description:
Prevent gzip(1) from nuking itself (yes, the gzip binary!) by passing
its name in the GZIP environment variable. Instead, pass the compression
level in that variable.

diffstat:

 editors/gedit/patches/patch-aa |  21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diffs (25 lines):

diff -r d22f6b8df396 -r 745e4bcc76a5 editors/gedit/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/gedit/patches/patch-aa    Tue Sep 30 08:04:30 2008 +0000
@@ -0,0 +1,21 @@
+$NetBSD: patch-aa,v 1.8 2008/09/30 08:04:30 hubertf Exp $
+
+--- plugins/taglist/Makefile.in.orig   2008-09-19 04:57:38.000000000 +0200
++++ plugins/taglist/Makefile.in
+@@ -138,6 +138,7 @@ GMSGFMT = @GMSGFMT@
+ GREP = @GREP@
+ GTKDOC_CHECK = @GTKDOC_CHECK@
+ GZIP = @GZIP@
++GZIP_ENV = --best
+ HELP_DIR = @HELP_DIR@
+ HTML_DIR = @HTML_DIR@
+ INSTALL = @INSTALL@
+@@ -650,7 +651,7 @@ uninstall-am: uninstall-pluginDATA unins
+ 
+ %.tags.gz: %.tags.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po)
+       LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@:.gz=) -x -u -c $(top_builddir)/po/.intltool-merge-cache
+-      $(GZIP) --best -f $(@:.gz=)
++      env GZIP=$(GZIP_ENV) $(GZIP) -f $(@:.gz=)
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:



Home | Main Index | Thread Index | Old Index