1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/Mk/Uses/motif.mk
Baptiste Daroussin 9b17397fe0 New USES=motif that will handle the open-motif dependency.
If a user want to enforce lesstif in place of open-motif then the usual
WANT_LESSTIF in make.conf will be respected
2013-07-09 21:05:14 +00:00

31 lines
610 B
Makefile

# $FreeBSD$
#
# handle dependency on motif
#
# MAINTAINER: portmgr@FreeBSD.org
#
# Feature: motif
# Usage: USES=motif
#
# If WANT_LESSTIF is defined in user make.conf then lesstif will be used
# instead of open-motif
.if !defined(_INCLUDE_USES_MOTIF_MK)
_INCLUDE_USES_MOTIF_MK= yes
.if defined(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