diff options
author | jmz <jmz@FreeBSD.org> | 2004-03-26 03:02:12 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2004-03-26 03:02:12 +0800 |
commit | 70cb503a01cc02890dd6d53570c60eb37f7a3419 (patch) | |
tree | 2ef0d375e400cda0b1b151633517989be2d4f54b /textproc/ispell | |
parent | 7158fe4362f2aab47f3e3be6b01d5be9e66c75db (diff) | |
download | freebsd-ports-gnome-70cb503a01cc02890dd6d53570c60eb37f7a3419.tar.gz freebsd-ports-gnome-70cb503a01cc02890dd6d53570c60eb37f7a3419.tar.zst freebsd-ports-gnome-70cb503a01cc02890dd6d53570c60eb37f7a3419.zip |
- define MAXPATHLEN in confix.X so that names of backup files are not
limited to 14 chars.
- suppress messages about non existing files in make install.
PR: ports/64700
Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com>
Diffstat (limited to 'textproc/ispell')
-rw-r--r-- | textproc/ispell/Makefile | 4 | ||||
-rw-r--r-- | textproc/ispell/files/patch-aa | 31 |
2 files changed, 20 insertions, 15 deletions
diff --git a/textproc/ispell/Makefile b/textproc/ispell/Makefile index ad5045ba0548..4af95b1c7665 100644 --- a/textproc/ispell/Makefile +++ b/textproc/ispell/Makefile @@ -7,7 +7,7 @@ PORTNAME?= ispell PORTVERSION?= 3.2.06 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES+= textproc MASTER_SITES= http://fmg-www.cs.ucla.edu/geoff/tars/ DISTNAME= ispell-3.2.06 # needed for slave ports / options @@ -289,7 +289,9 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/languages/american/english.med+ \ ${DATADIR}/english.dict .endif +.if defined(ISPELL_DENEU) || defined(ISPELL_DEALT) || defined(ISPELL_FI) || defined(ISPELL_PL) @-${INSTALL_DATA} ${WRKDIR}/*/*.aff ${WRKDIR}/*/*.hash ${DATADIR} +.endif .if defined(ISPELL_IT) @${CAT} ${MASTERDIR}/pkg-plist.it >> ${TMPPLIST} .endif diff --git a/textproc/ispell/files/patch-aa b/textproc/ispell/files/patch-aa index 2841968d5e1a..10afd57e634a 100644 --- a/textproc/ispell/files/patch-aa +++ b/textproc/ispell/files/patch-aa @@ -1,14 +1,17 @@ -*** config.X.bak Mon Jan 23 21:28:24 1995 ---- config.X Tue Dec 16 18:49:29 1997 -*************** -*** 107,115 **** - - #include <sys/param.h> - #include <sys/types.h> -- #ifndef USG -- #include <sys/dir.h> -- #endif /* USG */ - - /* - ** Things that normally go in a Makefile. Define these just like you ---- 107,112 ---- +--- config.X.orig Wed Jul 25 23:51:45 2001 ++++ config.X Thu Mar 25 19:54:53 2004 +@@ -168,9 +168,11 @@ + + #include <sys/param.h> + #include <sys/types.h> +-#ifndef USG +-#include <sys/dir.h> +-#endif /* USG */ ++ ++/* Support MAXNAMLEN greater than 14 on FreeBSD; this is not in ++ * sys/param.h for obvious reasons. ++ */ ++#include <dirent.h> + + /* + ** Things that normally go in a Makefile. Define these just like you |