aboutsummaryrefslogtreecommitdiffstats
path: root/editors/abiword-devel/files/patch-aq
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-05-22 09:41:36 +0000
committerWill Andrews <will@FreeBSD.org>2000-05-22 09:41:36 +0000
commitb652eb35423693c3c9e44ff03daca0eedc0bd494 (patch)
tree7f3d992feef18a638dddbc53db0d025328ada57b /editors/abiword-devel/files/patch-aq
parentda5eed337ab4d6dbd0c193d60de50f3f95080071 (diff)
Update to 0.79.
1) Change of MAINTAINER, as dburr seems too busy to bother taking care of this port. He has never done any upgrades since originally importing it over a year ago. 2) Finally make spell-checking work. 3) Let AbiWord's own twisted Makefile mechanism install AbiWord. PR: 18692 Submitted by: Alec Wolman <wolman@cs.washington.edu>
Diffstat (limited to 'editors/abiword-devel/files/patch-aq')
-rw-r--r--editors/abiword-devel/files/patch-aq27
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/abiword-devel/files/patch-aq b/editors/abiword-devel/files/patch-aq
new file mode 100644
index 000000000000..c541d8b5d2f3
--- /dev/null
+++ b/editors/abiword-devel/files/patch-aq
@@ -0,0 +1,27 @@
+--- config/abi_defs.mk Mon Mar 13 14:48:16 2000
++++ config/abi_defs.mk.new Sat May 13 16:07:19 2000
+@@ -121,7 +121,9 @@
+ ##################################################################
+ ##################################################################
+
+-ABICOPY=cp
++ABICOPY = cp
++ABICHMOD = chmod
++ABIMKDIR = mkdir -m u=rwx,go=rx
+
+ ifdef ABISOURCE_LICENSED_TRADEMARKS
+ ABI_TMDEFS= -DABISOURCE_LICENSED_TRADEMARKS
+@@ -287,11 +289,11 @@
+ ## INSTALL program...
+
+ define MAKE_OBJDIR
+-if test ! -d $(@D); then rm -rf $(@D); mkdir -p $(@D); fi
++if test ! -d $(@D); then rm -rf $(@D); $(ABIMKDIR) -p $(@D); fi
+ endef
+
+ define VERIFY_DIRECTORY
+-if test ! -d xxxx; then rm -rf xxxx; mkdir -p xxxx; fi
++if test ! -d xxxx; then rm -rf xxxx; $(ABIMKDIR) -p xxxx; fi
+ endef
+
+ ##################################################################