mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
5b4f2ad658
make things a bit more consistent. Approved by: portmgr (bapt)
33 lines
720 B
Makefile
33 lines
720 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Provide support to use the scons
|
|
#
|
|
# Feature: scons
|
|
# Usage: USES=scons
|
|
#
|
|
# MAINTAINER: python@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_SCONS_MK)
|
|
_INCLUDE_USES_SCONS_MK= yes
|
|
|
|
.if defined(scons_ARGS)
|
|
IGNORE= Incorrect 'USES+= scons:${scons_ARGS}' scons takes no arguments
|
|
.endif
|
|
|
|
MAKEFILE= #
|
|
MAKE_FLAGS= #
|
|
ALL_TARGET= #
|
|
LIBPATH?= ${LOCALBASE}/lib
|
|
CPPPATH?= ${LOCALBASE}/include
|
|
SCONS= ${LOCALBASE}/bin/scons
|
|
BUILD_DEPENDS+= ${SCONS}:${PORTSDIR}/devel/scons
|
|
MAKE_CMD?= ${SCONS}
|
|
MAKE_ENV+= PKGCONFIGDIR="${PKGCONFIGDIR}" \
|
|
CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" \
|
|
LIBPATH="${LIBPATH}" CPPPATH="${CPPPATH}"
|
|
.if !defined(NO_STAGE)
|
|
MAKE_ARGS+= ${DESTDIRNAME:L}=${STAGEDIR}
|
|
.endif
|
|
|
|
.endif
|