blob: 565098ef0bb911d6d75880fec8de9d395430e02b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# $NetBSD: Makefile,v 1.96 2015/09/11 01:24:06 kim Exp $
DISTNAME= screen-4.3.1
#PKGREVISION= 0
CATEGORIES= misc shells
MASTER_SITES= ${MASTER_SITE_GNU:=screen/}
MAINTAINER= kimmo@suominen.com
HOMEPAGE= http://www.gnu.org/software/screen/screen.html
COMMENT= Multi-screen window manager
LICENSE= gnu-gpl-v3
# In file included from list_display.c:36:
# In file included from ./screen.h:150:
# ./display.h:154:19: error: use of undeclared identifier 'T_N'
MAKE_JOBS_SAFE= no
.include "options.mk"
NOT_FOR_PLATFORM= Interix-*-* # user auth and username size fixes needed
PLIST_SUBST+= DISTNAME=${DISTNAME:Q}
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-sys-screenrc=${PKG_SYSCONFDIR}/screenrc
CONFIGURE_ARGS+= --enable-telnet
PKG_SHELL= bin/screen
USE_TOOLS+= makeinfo
INFO_FILES= YES
.include "../../mk/bsd.prefs.mk"
SUBST_CLASSES+= paths
SUBST_FILES.paths= etc/etcscreenrc doc/screen.1
SUBST_SED.paths+= -e 's,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},g'
SUBST_SED.paths+= -e 's,@EXAMPLES@,${PREFIX}/share/examples/screen,g'
SUBST_STAGE.paths= post-patch
PLIST_VARS+= terminfo
.if ${OPSYS} == "SunOS"
CPPFLAGS+= -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
. if ${CURSES_DEFAULT} == "curses"
INSTALLATION_DIRS+= share/lib/terminfo
PLIST.terminfo= yes
post-install: screen-terminfo
. endif
.endif
INSTALLATION_DIRS+= share/examples/screen
.if empty(UNPRIVILEGED:M[Yy][Ee][Ss])
SPECIAL_PERMS+= bin/${DISTNAME} ${SETUID_ROOT_PERMS}
.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/etc/etcscreenrc \
${DESTDIR}${PREFIX}/share/examples/screen/etcscreenrc
${INSTALL_DATA} ${WRKSRC}/etc/screenrc \
${DESTDIR}${PREFIX}/share/examples/screen/screenrc
.if !empty(UNPRIVILEGED:M[Yy][Ee][Ss])
chmod -s ${DESTDIR}${PREFIX}/bin/${DISTNAME}
.endif
.PHONY: screen-terminfo
screen-terminfo:
cd ${WRKSRC}/terminfo && \
${SETENV} TERMINFO=${DESTDIR}${PREFIX}/share/lib/terminfo \
/usr/bin/tic screeninfo.src
.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|