diff options
author | jschauma <jschauma> | 2002-07-27 19:05:54 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2002-07-27 19:05:54 +0000 |
commit | 61cca3da0ccf658fd4440ce74fcfdaf5670cf0c4 (patch) | |
tree | 164e946040d70da3ab39201c3b6dab7995885974 /textproc/ispell-german/Makefile | |
parent | 54d8624696a7b8f07a10e2864c4d981f9cb9592a (diff) | |
download | pkgsrc-61cca3da0ccf658fd4440ce74fcfdaf5670cf0c4.tar.gz |
symlink deutsch.{hash,aff} to german.{hash,aff} as suggested by
Marko Schuetz (MarkoSchuetz at web dot de) in PR pkg/17008, so that
emacsen find the german dicitionary.
Obsolete patches/patch-aa.
While we're at it, update to 20011124 with new Homepage and mastersite.
Changes since last version:
- Conform with new rules (use ispell-deutsch for old rules!)
- many new words, esp. imperative and subjunctive forms
- new typo file with trap words that should never get into the dict
Diffstat (limited to 'textproc/ispell-german/Makefile')
-rw-r--r-- | textproc/ispell-german/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/textproc/ispell-german/Makefile b/textproc/ispell-german/Makefile index 640a7e158ba..04fc1bc0e22 100644 --- a/textproc/ispell-german/Makefile +++ b/textproc/ispell-german/Makefile @@ -1,18 +1,25 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/03/15 15:26:35 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2002/07/27 19:05:54 jschauma Exp $ # -DISTNAME= igerman98-20001109 -PKGNAME= ispell-german-20001109 +DISTNAME= igerman98-20011124 +PKGNAME= ispell-german-20011124 CATEGORIES= textproc -MASTER_SITES= http://www.suse.de/~bjacke/igerman98/dict/ +MASTER_SITES= http://lisa.goe.net/~bjacke/igerman98/dict/ EXTRACT_SUFX= .tar.bz2 MAINTAINER= packages@netbsd.org -HOMEPAGE= http://www.suse.de/~bjacke/igerman98/ +HOMEPAGE= http://lisa.goe.net/~bjacke/igerman98/ COMMENT= German dictionary for interactive spelling checker DEPENDS+= ispell-base>=3.1.20nb1:../../textproc/ispell-base ALL_TARGET= german.hash +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/german.aff ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/german.hash ${PREFIX}/lib + (cd ${PREFIX}/lib && ${LN} -s german.aff deutsch.aff) + (cd ${PREFIX}/lib && ${LN} -s german.hash deutsch.hash) + .include "../../mk/bsd.pkg.mk" |