diff options
Diffstat (limited to 'textproc/ispell/scripts/configure')
-rw-r--r-- | textproc/ispell/scripts/configure | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/textproc/ispell/scripts/configure b/textproc/ispell/scripts/configure index 5d05bf280ae5..8ba19d8c338a 100644 --- a/textproc/ispell/scripts/configure +++ b/textproc/ispell/scripts/configure @@ -10,28 +10,9 @@ if [ ! -f /usr/share/dict/words ]; then fi cd $WRKSRC || exit 1; -if [ -f $WRKDIR/extra_dict ]; then - extra_dict=`cat $WRKDIR/extra_dict`; - case $extra_dict in - francais-IREQ*) - mkdir -p $WRKSRC/languages/francais-IREQ - LOCAL=' {francais-IREQ}' - for i in $WRKDIR/[A-Za-z]*; do - if [ -f $i ]; then cp $i $WRKSRC/languages/francais-IREQ/; fi - done - (echo RM=rm -f; echo LIBDIR=$PREFIX/lib; echo HASH=../../buildhash) \ - >> $WRKSRC/languages/francais-IREQ/Makefile - ;; - *) - echo "I don't now how to configure ispell with $extra_dict" - exit 1; - ;; - esac -fi - sed -e s:/usr/local:$PREFIX: <local.h.samp >local.h || exit 1; echo "#undef NO8BIT" >> local.h -case $LANG in +case $ISPELL_LANG in british) echo "#define LANGUAGES \"{british,MASTERDICTS=british.xlg,HASHFILES=britishxlg.hash,EXTRADICT=}$LOCAL\"" >>local.h ||exit 1; echo '#define MASTERHASH "britishxlg.hash"' >> local.h @@ -45,6 +26,7 @@ echo "#undef WORDS" >> local.h echo '#define WORDS "/usr/share/dict/words"' >> local.h echo '#undef ELISPDIR' >> local.h echo "#define ELISPDIR \"$PREFIX/share/emacs/site-lisp\"" >> local.h +echo "#define SHAREDIR \"$PREFIX/share/ispell\"" >> local.h mv Makefile Makefile.orig sed -e 's/^[ ]*$/\ |