summaryrefslogtreecommitdiff
path: root/x11/xorg-clients/Makefile
blob: 70f17146df30a8928a6a1bda8c4975acbc278175 (plain) (blame)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# New ports collection makefile for:    xorg-clients
# Date created:		30 May 2004
# Whom:			anholt@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=	xorg-clients
PORTVERSION=	6.9.0
PORTREVISION=	3
CATEGORIES=	x11
MASTER_SITES=	${MASTER_SITE_XORG}
MASTER_SITE_SUBDIR=	X11R${PORTVERSION}/src
DISTFILES=	X11R${PORTVERSION}-src1.tar.gz \
		X11R${PORTVERSION}-src2.tar.gz \
		X11R${PORTVERSION}-src3.tar.gz

MAINTAINER=	x11@FreeBSD.org
COMMENT=	X client programs and related files from X.Org

RUN_DEPENDS=	xterm>0:${PORTSDIR}/x11/xterm
LIB_DEPENDS=	png.5:${PORTSDIR}/graphics/png \
		Xft.2:${PORTSDIR}/x11-fonts/libXft

CONFLICTS=	XFree86-clients-*

EXTRA_PATCHES=	${CF_PATCHES}

XINCLUDE_DIRS=	lib/xtrans
XBUILD_DIRS=	programs fonts/util
XMAN_DIRS=	programs
USE_XLIB=	yes

XDMCONFDATA=	Xaccess Xresources Xservers xdm-config
XDMCONFSCRIPTS=	GiveConsole TakeConsole Xsession Xsetup_0 Xwilling

.if !defined(WITH_SETUID_LUIT)
pre-everything::
	@${ECHO_MSG} "If you want to use xterm with locales in a secure manner, luit must be"
	@${ECHO_MSG} "installed setuid.  If you want to do this, define WITH_SETUID_LUIT when"
	@${ECHO_MSG} "installing this port (either in /etc/make.conf or on command line with"
	@${ECHO_MSG} "install target)."
.endif

post-install:
	if [ ! -e ${X11BASE}/bin/resize ]; then \
		${LN} -sf ${X11BASE}/bin/resize-static ${X11BASE}/bin/resize; \
	fi
	if [ ! -e ${X11BASE}/bin/xterm ]; then \
		${LN} -sf ${X11BASE}/bin/xterm-static ${X11BASE}/bin/xterm; \
	fi
	if [ ! -e ${X11BASE}/bin/uxterm ]; then \
		${LN} -sf ${X11BASE}/bin/uxterm-static ${X11BASE}/bin/uxterm; \
	fi
	if [ ! -e ${X11BASE}/lib/X11/app-defaults/UXTerm ]; then \
		${LN} -sf ${X11BASE}/lib/X11/app-defaults/UXTerm-static \
		${X11BASE}/lib/X11/app-defaults/UXTerm; \
	fi
	if [ ! -e ${X11BASE}/lib/X11/app-defaults/XTerm ]; then \
		${LN} -sf ${X11BASE}/lib/X11/app-defaults/XTerm-static \
		${X11BASE}/lib/X11/app-defaults/XTerm; \
	fi
	if [ ! -e ${X11BASE}/lib/X11/app-defaults/XTerm-color ]; then \
		${LN} -sf ${X11BASE}/lib/X11/app-defaults/XTerm-color-static \
		${X11BASE}/lib/X11/app-defaults/XTerm-color; \
	fi

.if defined(WITH_SETUID_LUIT)
	${CHOWN} root:wheel ${PREFIX}/bin/luit
	${CHMOD} 04711 ${PREFIX}/bin/luit
.endif
	${MKDIR} ${PREFIX}/lib/X11/xinit
	${INSTALL_DATA} ${WRKSRC}/programs/xinit/xinitrc \
		${PREFIX}/lib/X11/xinit/xinitrc.default
.for i in ${XDMCONFDATA}
	${INSTALL_DATA} ${WRKSRC}/programs/xdm/config/${i} \
		${PREFIX}/lib/X11/xdm/${i}.default
.endfor
.for i in ${XDMCONFSCRIPTS}
	${INSTALL_SCRIPT} ${WRKSRC}/programs/xdm/config/${i} \
		${PREFIX}/lib/X11/xdm/${i}.default
.endfor
	@${SETENV} ${SCRIPTS_ENV} PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL

.include "${.CURDIR}/../../x11-servers/xorg-server/Makefile.inc"
.include <bsd.port.pre.mk>

.if ${OSVERSION} < 502123
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-4x
.endif

.if ${X_WINDOW_SYSTEM:L} != xorg
IGNORE=	is part of X.Org and you have ${X_WINDOW_SYSTEM} set for X11\
	distribution. See The X Window System and Virtual Consoles chapter\
	of FAQ for more information
.endif

.include "${FILESDIR}/manpages"

.include <bsd.port.post.mk>