diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /editors/vile | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | FreeBSD-ports-8b766534122d71052c9f8e5a0752944edf0450f8.zip FreeBSD-ports-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Diffstat (limited to 'editors/vile')
-rw-r--r-- | editors/vile/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/vile/Makefile b/editors/vile/Makefile index 2c64484..54bb3ba 100644 --- a/editors/vile/Makefile +++ b/editors/vile/Makefile @@ -18,15 +18,15 @@ MAKEFILE= makefile GNU_CONFIGURE= yes MAN1= vile.1 -.if defined(USE_PERL) +.if defined(WITH_PERL) CONFIGURE_ARGS= --with-perl PLIST= ${PKGDIR}/PLIST.perl USE_PERL5= yes .endif pre-configure: -.if ! defined(USE_PERL) - @${ECHO_MSG} "Define USE_PERL if you want to make a vile which includes" +.if ! defined(WITH_PERL) + @${ECHO_MSG} "Define WITH_PERL if you want to make a vile which includes" @${ECHO_MSG} "PERL functionality" .endif @@ -38,7 +38,7 @@ post-install: @if ! [ -d ${PREFIX}/share/vile/macros ]; then ${MKDIR} ${PREFIX}/share/vile/macros; fi ${INSTALL_DATA} ${WRKSRC}/macros/*.rc ${PREFIX}/share/vile/macros ${INSTALL_SCRIPT} ${WRKSRC}/macros/vile-pager ${PREFIX}/share/vile/macros -.if defined(USE_PERL) +.if defined(WITH_PERL) ${INSTALL_DATA} ${WRKSRC}/*.doc ${PREFIX}/share/doc/vile .endif @${ECHO_MSG} "Look in ${PREFIX}/share/doc/vile for documentation." |