eedb2a465c
(also use INFO files feature) PR: ports/57028 Submitted by: KIMURA Yasuhiro <yasu@utahime.org> Approved by: cy@ temp absence note
39 lines
766 B
Makefile
39 lines
766 B
Makefile
# New ports collection makefile for: screen
|
|
# Date created: 25 Nov 1994
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= screen
|
|
PORTVERSION= 4.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ftp://ftp.uni-erlangen.de/pub/utilities/screen/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= screen
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= A multi-screen window manager
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= screen.1
|
|
INFO= screen
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "alpha"
|
|
CFLAGS+= -O0
|
|
.endif
|
|
|
|
post-patch:
|
|
@${RM} ${WRKSRC}/doc/screen.info*
|
|
|
|
post-install:
|
|
@${CP} ${WRKSRC}/etc/etcscreenrc ${PREFIX}/etc/screenrc.sample
|
|
@if [ ! -f ${PREFIX}/etc/screenrc ]; then \
|
|
${CP} ${PREFIX}/etc/screenrc.sample ${PREFIX}/etc/screenrc ; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|