diff options
author | imp <imp@FreeBSD.org> | 2014-04-18 17:03:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2014-04-18 17:03:49 +0000 |
commit | 45481ab5835a397fc7869e0509e561e115d872e6 (patch) | |
tree | 91b6477681214976126e32609714b45d03e5816c /share | |
parent | af1f03cbf480161e858291b0269b7b3dcf85ffa3 (diff) | |
download | FreeBSD-src-45481ab5835a397fc7869e0509e561e115d872e6.zip FreeBSD-src-45481ab5835a397fc7869e0509e561e115d872e6.tar.gz |
Convert NO_MANCOMPRESSED to MK_MANCOMPRESSED.
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/etc/make.conf | 2 | ||||
-rw-r--r-- | share/man/man5/make.conf.5 | 7 | ||||
-rw-r--r-- | share/mk/bsd.man.mk | 9 | ||||
-rw-r--r-- | share/mk/bsd.own.mk | 3 |
4 files changed, 12 insertions, 9 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 6774deb..5a52933 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -138,7 +138,7 @@ # If you do not want unformatted manual pages to be compressed # when they are installed: # -#NO_MANCOMPRESS= +#WITHOUT_MANCOMPRESS=t # # # Default format for system documentation, depends on your printer. diff --git a/share/man/man5/make.conf.5 b/share/man/man5/make.conf.5 index 7430a09..2480b84 100644 --- a/share/man/man5/make.conf.5 +++ b/share/man/man5/make.conf.5 @@ -434,8 +434,11 @@ Set this to run .Dq Li "${MAKE} clean" instead of .Dq Li "${MAKE} cleandir" . -.It Va NO_MANCOMPRESS -.Pq Vt bool +.It Va WITH_MANCOMPRESS +.Pq Vt defined +Set to install manual pages compressed. +.It Va WITHOUT_MANCOMPRESS +.Pq Vt defined Set to install manual pages uncompressed. .It Va NO_SHARE .Pq Vt bool diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 6445ba3..46c0989 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -30,9 +30,6 @@ # second, and there may be multiple pairs. The files # are hard-linked. # -# NO_MANCOMPRESS If you do not want unformatted manual pages to be -# compressed when they are installed. [not set] -# # NO_MLINKS If you do not want install manual page links. [not set] # # MANFILTER command to pipe the raw man page through before compressing @@ -77,10 +74,10 @@ MAN+= ${MAN${__sect}} _manpages: all-man: _manpages -.if defined(NO_MANCOMPRESS) +.if ${MK_MANCOMPRESS} == "no" # Make special arrangements to filter to a temporary file at build time -# for NO_MANCOMPRESS. +# for MK_MANCOMPRESS == no. .if defined(MANFILTER) FILTEXTENSION= .filt .else @@ -162,7 +159,7 @@ maninstall: _maninstall _maninstall: .if defined(MAN) && !empty(MAN) _maninstall: ${MAN} -.if defined(NO_MANCOMPRESS) +.if ${MK_MANCOMPRESS} == "no" .if defined(MANFILTER) .for __page in ${MAN} ${MINSTALL} ${__page:T:S/$/${FILTEXTENSION}/g} \ diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 94e302f..c3bf33b 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -301,6 +301,7 @@ __DEFAULT_YES_OPTIONS = \ MAILWRAPPER \ MAKE \ MAN \ + MANCOMPRESS \ NCURSESW \ NDIS \ NETCAT \ @@ -459,6 +460,8 @@ MK_${var}:= no # Supported NO_* options (if defined, MK_* will be forced to "no", # regardless of user's setting). # +# These are transitional and will disappaer in the fullness of time. +# .for var in \ CTF \ DEBUG_FILES \ |