diff options
author | Cy Schubert <cy@FreeBSD.org> | 2008-06-10 05:53:18 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2008-06-10 05:53:18 +0000 |
commit | 9f0c9494cf741a763edc41cd54fdcf9a7976fd6a (patch) | |
tree | f6c2dbc20ecf68c4781ae5ebac9a50b53db48f3a /sysutils/screen | |
parent | 0d9502dd46e50572b805581a6b8933ef0d2af3c4 (diff) | |
download | ports-9f0c9494cf741a763edc41cd54fdcf9a7976fd6a.tar.gz ports-9f0c9494cf741a763edc41cd54fdcf9a7976fd6a.zip |
Notes
Diffstat (limited to 'sysutils/screen')
-rw-r--r-- | sysutils/screen/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index e33e27a5cc02..fb3a16072faa 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -22,7 +22,8 @@ OPTIONS= CJK "Treat CJK ambiguous characters as full width" OFF \ INFO "Build and install info documentation" ON \ MAN "Build and install man pages" ON \ NETHACK "Enable nethack-style messages" ON \ - XTERM_256 "Enable support for 256 colour xterm" OFF + XTERM_256 "Enable support for 256 colour xterm" OFF \ + HOSTINLOCKED "Print user@host in locked message" OFF NO_PACKAGE= Tends to loop using 100% CPU when used from package - perhaps it hard-codes information about the build host @@ -62,6 +63,10 @@ CFLAGS+= -DNONETHACK EXTRA_PATCHES+= ${FILESDIR}/opt-cjkwidth .endif +.if defined(WITH_HOSTINLOCKED) +EXTRA_PATCHES+= ${FILESDIR}/opt-hostinlocked +.endif + post-patch: @${RM} ${WRKSRC}/doc/screen.info* @${REINPLACE_CMD} -e 's|/dev/ptmx|/nonexistent|' ${WRKSRC}/configure |