summaryrefslogtreecommitdiff
path: root/x11/eterm
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>1999-10-28 00:33:09 +0000
committerjlam <jlam@pkgsrc.org>1999-10-28 00:33:09 +0000
commita6c431db4bf4ea6554109645526a1eed4d337a21 (patch)
tree1a2fcba4895b508490b9302c8b03c3c8cc417cb6 /x11/eterm
parentec5ef58b77a2fb34aab58134c22f96b3c72e65b3 (diff)
downloadpkgsrc-a6c431db4bf4ea6554109645526a1eed4d337a21.tar.gz
Add missing patches.
Diffstat (limited to 'x11/eterm')
-rw-r--r--x11/eterm/patches/patch-ac24
-rw-r--r--x11/eterm/patches/patch-ad28
2 files changed, 52 insertions, 0 deletions
diff --git a/x11/eterm/patches/patch-ac b/x11/eterm/patches/patch-ac
new file mode 100644
index 00000000000..b436f73961f
--- /dev/null
+++ b/x11/eterm/patches/patch-ac
@@ -0,0 +1,24 @@
+$NetBSD: patch-ac,v 1.1 1999/10/28 00:33:09 jlam Exp $
+
+--- themes/Makefile.in.orig Mon Apr 26 10:53:58 1999
++++ themes/Makefile.in Mon Oct 25 18:10:44 1999
+@@ -214,19 +214,13 @@
+ done
+ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/themes
+ -@for i in $(THEMES) ; do \
+- if test ! -d $(DESTDIR)$(pkgdatadir)/themes/$$i ; then \
+ echo "Installing $$i theme in $(DESTDIR)$(pkgdatadir)/themes" ; \
+ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/themes/$$i ; \
+ $(CP) $$i/???* $(DESTDIR)$(pkgdatadir)/themes/$$i ; \
+ $(CHMOD) 755 $(DESTDIR)$(pkgdatadir)/themes/$$i ; \
+ $(CHMOD) 644 $(DESTDIR)$(pkgdatadir)/themes/$$i/???* ; \
+ rm -f $(DESTDIR)$(pkgdatadir)/themes/$$i/MAIN.in ; \
+- else \
+- echo "ALERT! Not overwriting theme $$i in $(DESTDIR)$(pkgdatadir)/themes. You will need to update this theme manually." ; \
+- fi ; \
+ done
+- @if test ! -f $(HOME)/.active.tags ; then $(CP) active.tags $(HOME)/.active.tags ; \
+- else echo "Not installing $(HOME)/.active.tags -- File exists." ; fi
+
+ # 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.
diff --git a/x11/eterm/patches/patch-ad b/x11/eterm/patches/patch-ad
new file mode 100644
index 00000000000..73045001f6c
--- /dev/null
+++ b/x11/eterm/patches/patch-ad
@@ -0,0 +1,28 @@
+$NetBSD: patch-ad,v 1.1 1999/10/28 00:33:10 jlam Exp $
+
+--- utils/Etbg.c.orig Fri Mar 26 20:13:46 1999
++++ utils/Etbg.c Mon Oct 25 17:50:41 1999
+@@ -26,12 +26,20 @@
+ #include <stdio.h>
+ #include <string.h>
+
++#ifdef FALSE
++#undef FALSE
++#endif
++#define FALSE 0
++
++#ifdef TRUE
++#undef TRUE
++#endif
++#define TRUE 1
++
+ int
+ main(int argc, char **argv)
+ {
+- enum {
+- FALSE, TRUE
+- } scale = FALSE, trans = FALSE;
++ int scale = FALSE, trans = FALSE;
+ unsigned int i, pic = 0, tint = 0, shade = 0;
+
+ for (i = 1; i < argc; i++) {