openbsd-ports/misc/screen/Makefile
2013-03-11 11:20:26 +00:00

50 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.65 2013/03/11 11:23:58 espie Exp $
# Please adjust www/faq/faq15.html if updating.
COMMENT= multi-screen window manager
VERSION= 4.0.3
DISTNAME= screen-${VERSION}
REVISION= 3
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GNU:=screen/}
HOMEPAGE= http://www.gnu.org/software/screen/
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
SUBST_VARS= VERSION
CFLAGS+= -Wall
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --with-sys-screenrc="${SYSCONFDIR}/screenrc"
USE_GROFF = Yes
FLAVORS= static shm
FLAVOR?=
.if ${FLAVOR} == "static"
CONFIGURE_ENV= LDFLAGS="-static"
.else
WANTLIB= c curses util
.endif
.if ${FLAVOR} == "shm"
PATCH_LIST= patch-* shmpatch-*
.endif
ALL_TARGET= screen screen.info
pre-build:
@perl -pi -e s#!!sysconfdir!!#${SYSCONFDIR}#g ${WRKSRC}/doc/screen.1
post-install:
@cd ${PREFIX}/bin && mv -f screen-${VERSION} screen
@chmod 755 ${PREFIX}/bin/screen
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/screen
${INSTALL_DATA} ${WRKSRC}/etc/etcscreenrc \
${PREFIX}/share/examples/screen/screenrc
.include <bsd.port.mk>