diff options
author | mycroft <mycroft@pkgsrc.org> | 2003-01-10 06:52:52 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2003-01-10 06:52:52 +0000 |
commit | a61518dd7bd424ff8c24da1721509960be33e719 (patch) | |
tree | 76e211042da0d16de3dc0a155096dab73b7f987e /editors/abiword | |
parent | 1dd3b92673c9a5e00a1c00027c19ba95c2138c7d (diff) | |
download | pkgsrc-a61518dd7bd424ff8c24da1721509960be33e719.tar.gz |
Use the ispell dictionary again. That's why there's a dependency.
(Maybe some day they will fix the endian and word size problems...)
Diffstat (limited to 'editors/abiword')
-rw-r--r-- | editors/abiword/distinfo | 3 | ||||
-rw-r--r-- | editors/abiword/patches/patch-al | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/editors/abiword/distinfo b/editors/abiword/distinfo index 2010da5a682..455e997d378 100644 --- a/editors/abiword/distinfo +++ b/editors/abiword/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2003/01/10 00:51:25 mycroft Exp $ +$NetBSD: distinfo,v 1.17 2003/01/10 06:52:52 mycroft Exp $ SHA1 (abisuite/abiword-1.0.3.tar.gz) = 45961eba73a09d46807130f0689f31dd3022a3a1 Size (abisuite/abiword-1.0.3.tar.gz) = 19443331 bytes @@ -9,3 +9,4 @@ SHA1 (patch-af) = 9bf0cb3abe338b7021acbf771b34b55bb7edcbae SHA1 (patch-ag) = 9a9faa81fc5343c7f33e8148f30fbbb845b21c4c SHA1 (patch-ah) = 19e2e5def6d235ff44efc856346a4ae85b2bdbd5 SHA1 (patch-ak) = 692401ca4f4d701b5eca3952ef300497d35f6b27 +SHA1 (patch-al) = c4ee2f73250efc2cce768bdb3f86088a6d1f00e5 diff --git a/editors/abiword/patches/patch-al b/editors/abiword/patches/patch-al new file mode 100644 index 00000000000..34c518833cb --- /dev/null +++ b/editors/abiword/patches/patch-al @@ -0,0 +1,23 @@ +$NetBSD: patch-al,v 1.5 2003/01/10 06:52:54 mycroft Exp $ + +--- GNUmakefile.in.orig Thu Sep 12 00:26:24 2002 ++++ GNUmakefile.in Fri Jan 10 06:47:05 2003 +@@ -135,8 +135,7 @@ + libiconv_peerdir = @LIBICONV_PEERDIR@ + libpng_peerdir = @LIBPNG_PEERDIR@ + +-@BIGENDIAN_TRUE@dictionary = $(top_srcdir)/../abidistfiles/dictionary/BigEndian32.american.hash +-@BIGENDIAN_FALSE@dictionary = $(top_srcdir)/../abidistfiles/dictionary/LittleEndian32.american.hash ++dictionary = ${prefix}/lib/american.hash + subdir = . + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + mkinstalldirs = $(SHELL) $(top_srcdir)/ac-helpers/mkinstalldirs +@@ -495,7 +494,7 @@ + for dir in `cd $(top_srcdir)/../abidistfiles; find . -type d ! -name CVS` ; do \ + $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$dir ;\ + if test "$$dir" = "./dictionary"; then \ +- $(INSTALL_DATA) $(dictionary) $(DESTDIR)$(pkgdatadir)/$$dir/american.hash; \ ++ $(LN_S) $(dictionary) $(DESTDIR)$(pkgdatadir)/$$dir/american.hash; \ + else \ + for file in $(top_srcdir)/../abidistfiles/$$dir/* ; do \ + if test -f $$file ; then \ |