diff options
author | jmz <jmz@FreeBSD.org> | 2001-07-02 15:14:28 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2001-07-02 15:14:28 +0000 |
commit | 9e524f61cdc6f0b1968ce68c92f83b29a244fd0b (patch) | |
tree | d537ad7afd157a92aa883e1a2fdff9cf37126b7d /textproc | |
parent | de0543c12b62b6cc3da4c8fe126b93af75ccd8ea (diff) | |
download | FreeBSD-ports-9e524f61cdc6f0b1968ce68c92f83b29a244fd0b.zip FreeBSD-ports-9e524f61cdc6f0b1968ce68c92f83b29a244fd0b.tar.gz |
Export $ISPELL_BRITISH to the configure script if it is defined. This fix an
install problem when it is set via make.conf.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ispell/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/textproc/ispell/Makefile b/textproc/ispell/Makefile index 293f624..757cdb3 100644 --- a/textproc/ispell/Makefile +++ b/textproc/ispell/Makefile @@ -7,7 +7,7 @@ PORTNAME?= ispell PORTVERSION?= 3.2.04 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES+= textproc MASTER_SITES= http://fmg-www.cs.ucla.edu/geoff/tars/ @@ -48,6 +48,9 @@ pre-everything: @${ECHO_MSG} '* Example: "make ISPELL_FR=yes ISPELL_SE=yes install" *' @${ECHO_MSG} '*********************************************************' .else +.if defined(ISPELL_BRITISH) +SCRIPTS_ENV+= ISPELL_BRITISH=${ISPELL_BRITISH} +.endif .if defined(ISPELL_FR) FRDISTFILE= francais-IREQ-1.4.tar.gz MASTER_SITES+= ftp://ftp.robot.ireq.ca/pub/ispell/ |