diff options
author | Doug Barton <dougb@FreeBSD.org> | 2006-08-28 06:03:13 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2006-08-28 06:03:13 +0000 |
commit | f7b8b9e6a376ecf0c349bb960d3f63338d475bda (patch) | |
tree | 5dd8b87e81158687554508e441199cdb7d62eddc /editors/pico | |
parent | e89f5385b37dede91e9f7a298a1f54878584ee09 (diff) |
Notes
Diffstat (limited to 'editors/pico')
-rw-r--r-- | editors/pico/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/pico/Makefile b/editors/pico/Makefile index d0ebdb26e8b3..16a9fc4eee70 100644 --- a/editors/pico/Makefile +++ b/editors/pico/Makefile @@ -22,9 +22,16 @@ DISTNAME= pine${PORTVERSION} MAINTAINER= DougB@FreeBSD.org COMMENT= PIne's message COmposition editor +OPTIONS= ISPELL "Use ispell as the spell checker" on \ + NO_SPELLER "Do not use a spell checker" off + +.include <bsd.port.pre.mk> + +.if !defined(WITH_NO_SPELLER) .if !defined(WITHOUT_ISPELL) RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell .endif +.endif WRKSRC= ${WRKDIR}/pine${PORTVERSION}/pico PATCH_WRKSRC= ${WRKSRC}/.. @@ -44,4 +51,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pico ${PREFIX}/bin/pico ${INSTALL_MAN} ${WRKSRC}/../doc/pico.1 ${PREFIX}/man/man1/pico.1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |