aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Uses/motif.mk
blob: 60cd47e9b5737b0774d2d23c73cdeba6c14dbc67 (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
# $FreeBSD$
#
# handle dependency on motif
#
# Feature:  motif
# Usage:    USES=motif
#
# If WANT_LESSTIF is defined in user make.conf then lesstif will be used
# instead of open-motif
#
# MAINTAINER: portmgr@FreeBSD.org

.if !defined(_INCLUDE_USES_MOTIF_MK)
_INCLUDE_USES_MOTIF_MK= yes

.if !empty(motif_ARGS)
IGNORE= USES=motif takes no arguments
.endif

.if defined(WANT_LESSTIF)
LIB_DEPENDS+=       libXm.so:${PORTSDIR}/x11-toolkits/lesstif
.else
USE_XORG+=  xpm
LIB_DEPENDS+=       libXm.so.4:${PORTSDIR}/x11-toolkits/open-motif
.endif

MOTIFLIB?=  -L${LOCALBASE}/lib -lXm -lXp
MAKE_ENV+=  MOTIFLIB="${MOTIFLIB}"

.endif