diff options
author | Cy Schubert <cy@FreeBSD.org> | 2007-10-25 18:01:51 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2007-10-25 18:01:51 +0000 |
commit | 25371c0261c7c174c1e78aece2cb6109a77ac650 (patch) | |
tree | 227362f8ffc7669d03baff3d5b32a79422b37d30 /sysutils/screen | |
parent | 6dd1edea73e74f402a8a67050d6d484e1483583d (diff) |
Notes
Diffstat (limited to 'sysutils/screen')
-rw-r--r-- | sysutils/screen/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index b88302fabe25..f2c2fea1b2d2 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -7,6 +7,7 @@ PORTNAME= screen PORTVERSION= 4.0.3 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.uni-erlangen.de/pub/utilities/screen/ \ http://komquats.com/distfiles/ \ @@ -23,6 +24,10 @@ OPTIONS= CJK "Treat CJK ambiguous characters as full width" OFF \ NETHACK "Enable nethack-style messages" ON \ XTERM_256 "Enable support for 256 colour xterm" OFF +NO_PACKAGE= Tends to loop using 100% CPU when used from package - perhaps it hard-codes information about the build host + +.include <bsd.port.pre.mk> + GNU_CONFIGURE= yes .if defined(WITH_MAN) MAN1= screen.1 @@ -38,10 +43,6 @@ INFO= screen MAKE_ARGS+= -DNO_INFO .endif -NO_PACKAGE= Tends to loop using 100% CPU when used from package - perhaps it hard-codes information about the build host - -.include <bsd.port.pre.mk> - .if ${ARCH} == "alpha" CFLAGS+= -O0 .endif @@ -72,5 +73,8 @@ post-install: @if [ ! -f ${PREFIX}/etc/screenrc ]; then \ ${CP} ${EXAMPLESDIR}/screenrc ${PREFIX}/etc/screenrc ; \ fi +.if defined(WITH_MAN) + ${INSTALL_MAN} ${WRKSRC}/doc/screen.1 ${MANPREFIX}/man/man1 +.endif .include <bsd.port.post.mk> |