diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-08-29 14:09:54 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-08-29 14:09:54 +0000 |
commit | b6d1aea0a8970378539eb777ece20fe3daaeb167 (patch) | |
tree | 80f4e13fc37b0ed3844ce68de610fa7cc660f30a /sysutils/screen/Makefile | |
parent | 5b8e294a687866106bba7af9333c5942abe4ba53 (diff) |
Always install the manpage and let the user decide if they do want
to install groff(1) as advised by man(1) if they want.
Reviewed by: cy
Approved by: cy (maintainer)
Differential Revision: https://reviews.freebsd.org/D21463
Notes
Notes:
svn path=/head/; revision=510164
Diffstat (limited to 'sysutils/screen/Makefile')
-rw-r--r-- | sysutils/screen/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index 82cbd988e358..e689159f10d9 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -3,7 +3,7 @@ PORTNAME= screen PORTVERSION= 4.6.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= GNU \ ftp://ftp.gnu.org/gnu/screen/ \ @@ -19,14 +19,13 @@ COMMENT= Multi-screen window manager LICENSE= GPLv3 -OPTIONS_DEFINE= INFO MAN NETHACK XTERM_256 SHOWENC SYSTEM_SCREENRC +OPTIONS_DEFINE= INFO NETHACK XTERM_256 SHOWENC SYSTEM_SCREENRC OPTIONS_DEFAULT= INFO NETHACK XTERM_256 SOCKETS SYSTEM_SCREENRC \ NCURSES_DEFAULT OPTIONS_SINGLE= IPC NCURSES OPTIONS_SINGLE_IPC= SOCKETS NAMED_PIPES OPTIONS_SINGLE_NCURSES= NCURSES_DEFAULT NCURSES_BASE NCURSES_PORT INFO_DESC= Build and install info documentation -MAN_DESC= Build and install man pages NETHACK_DESC= Enable nethack-style messages XTERM_256_DESC= Enable support for 256 colour xterm SHOWENC_DESC= Show encoding on the status line @@ -44,6 +43,7 @@ NCURSES_PORT_USES= ncurses:port OPTIONS_SUB= USES= gmake cpe +MAKE_ARGS+= WITH_MAN=1 CPE_VENDOR= gnu @@ -53,13 +53,6 @@ GNU_CONFIGURE= yes CFLAGS+= -I${NCURSESINC} LDFLAGS+= -L${NCURSESLIB} -.if ${PORT_OPTIONS:MMAN} -MAKE_ARGS+= WITH_MAN=1 -PLIST_SUB+= MAN="" -USES+= groff -.else -PLIST_SUB+= MAN="@comment" -.endif .if ${PORT_OPTIONS:MINFO} INFO= screen MAKE_ARGS+= WITH_INFO=1 |