summaryrefslogtreecommitdiff
path: root/editors/abiword/patches/patch-ac
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-02-29 18:31:30 +0000
committerjlam <jlam@pkgsrc.org>2000-02-29 18:31:30 +0000
commit03efc6a5c58748af101034d74731112ec2bc495e (patch)
treedadfb2636ff0ba6d227550efe68c5e091bba26e2 /editors/abiword/patches/patch-ac
parente201752bc5d0d1e9730b22ded1829c5c57b22852 (diff)
downloadpkgsrc-03efc6a5c58748af101034d74731112ec2bc495e.tar.gz
Update AbiWord Personal to 0.7.8. Selected highlights since 0.7.5:
True WYSIWYG. Previously, we had subtle reformatting discrepancies when changing resolutions (such as printing and zooming). No more character dirt. Overline support. Minor display glitches. Insert Date and Time. Page-level navigation. Better support for non-English content. LaTeX exporter. Word importer. Justin and Caolan have fixed things so that tabstops, breaks, unicode conversion, page break before, widow/orphan control are all imported successfully now. RTF importer. Now handles negative values for margin-left and text-indent. Minor file format change. Error propagation. Unix stuff. By popular request, libstdc++ is no longer required. (We never really needed it anyhow.) PostScript emissions now use signed characters, as suggested by Bob Monaghan <bob@sbst.com>. With the latest fonts.dir, Symbol fonts should print properly now, too. First support for GNOME. Spelling speedup. The interactive spell check logic is now fast and smart like it should be, instead of woefully poky and dumb like it used to be. Subscript and superscript. View ruler. Stephen Hack <shack@uiuc.edu> implemented this menu item so that you can hide or show the ruler on a per-window basis. Compressed AbiWord files. The AbiWord file format (*.abw) was designed from the get-go to be a highly-readable form of XML. However, for those of you who care more about bloat than legibility, Richard Jefts <babs@cs.jhu.edu> added import/export logic for a gzip-compressed variant (*.zabw). Options dialog started. Zoom and Paragraph dialogs. Justification. Clipboard improvements. More Unicode-friendly. Smarter preferences.
Diffstat (limited to 'editors/abiword/patches/patch-ac')
-rw-r--r--editors/abiword/patches/patch-ac37
1 files changed, 23 insertions, 14 deletions
diff --git a/editors/abiword/patches/patch-ac b/editors/abiword/patches/patch-ac
index b01075ed10e..33fefc50090 100644
--- a/editors/abiword/patches/patch-ac
+++ b/editors/abiword/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.2 1999/09/14 02:19:15 jlam Exp $
+$NetBSD: patch-ac,v 1.3 2000/02/29 18:31:30 jlam Exp $
---- src/config/abi_defs.mk.orig Tue Jul 27 11:18:52 1999
-+++ src/config/abi_defs.mk Sat Sep 11 13:47:32 1999
-@@ -260,7 +260,7 @@
+--- src/config/abi_defs.mk.orig Tue Jan 11 06:46:50 2000
++++ src/config/abi_defs.mk Tue Feb 29 12:05:03 2000
+@@ -296,7 +296,7 @@
## a date stamp in a nightly build system).
##
@@ -10,18 +10,27 @@ $NetBSD: patch-ac,v 1.2 1999/09/14 02:19:15 jlam Exp $
+ABI_BUILD_VERSION ?= unnumbered
ABI_BUILD_ID =
- DIST = $(ABI_ROOT)/dist
-@@ -310,8 +310,11 @@
- ## We should change this when get non-gtk versions on unix....
+ ##################################################################
+@@ -353,14 +353,18 @@
ifeq ($(ABI_NATIVE),unix)
--CFLAGS += `gtk-config --cflags`
--EXTRA_LIBS += `gtk-config --libs`
-+GTK_CFLAGS := $(shell gtk-config --cflags)
-+GTK_LIBS := $(shell gtk-config --libs)
-+
+ ifdef ABI_OPT_GNOME
+-CFLAGS += `$(GNOME_CONFIG) --cflags gnorba gnomeui` -DHAVE_GNOME
+-EXTRA_LIBS += `$(GNOME_CONFIG) --libs gnorba gnomeui`
++GNOME_CFLAGS := $(shell $(GNOME_CONFIG) --cflags gnorba gnomeui)
++GNOME_LIBS := $(shell $(GNOME_CONFIG) --libs gnorba gnomeui)
++CFLAGS += $(GNOME_CFLAGS) -DHAVE_GNOME
++EXTRA_LIBS += $(GNOME_LIBS)
+ ABI_GNOME_DIR = gnome
+ ABI_GNOME_PREFIX = Gnome
+ ABI_OPTIONS+=Gnome:On
+ else
+-CFLAGS += `$(GTK_CONFIG) --cflags`
+-EXTRA_LIBS += `$(GTK_CONFIG) --libs`
++GTK_CFLAGS := $(shell $(GTK_CONFIG) --cflags)
++GTK_LIBS := $(shell $(GTK_CONFIG) --libs)
+CFLAGS += $(GTK_CFLAGS)
+EXTRA_LIBS += $(GTK_LIBS)
+ ABI_OPTIONS+=Gnome:Off
+ endif
endif
-
- ##################################################################