diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2001-07-02 15:14:28 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2001-07-02 15:14:28 +0000 |
commit | 5bc5989abf995ad36e5583984cbf3efba25a2861 (patch) | |
tree | 283677394d77ec37b4f3bee7e4ca1988dc538df7 /textproc | |
parent | Suggest the use of newsyslog(8) for log rotation. The exicyclog (diff) |
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 293f6243953d..757cdb30d93c 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/ |