1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/Mk/Uses/lazarus.mk
Tijl Coosemans 572f236169 Mk/*: Build with a clean environment
Both our make and gmake use the MAKEFLAGS environment variable but the
values aren't compatible and the latest version of gmake complains about
that.  To rule out that any environment variable can cause problems like
this, add a new command SETENVI=/usr/bin/env -i that clears the
environment, and use it to run upstream build systems with a clean
environment.

Introduce a new variable WRK_ENV that contains the environment to use
with SETENVI in all targets that run upstream build commands.  Variables
that are common between CONFIGURE_ENV and MAKE_ENV could be moved to
WRK_ENV but for now it just contains a minimal environment:

HOME=${WRKDIR}: Fixes USES=elixir ports that were using the user's HOME.
OSVERSION: For cross building; determines the output of uname -K and
getosreldate(3); affects net/freebsd-telnetd for example.
PATH: Fixes USES=gem ports that were using the user's PATH.
PWD=$${PWD}: Preserve current working directory; affects USES=go ports.
TERM: To preserve colored output to terminals.
TMPDIR: For users who define that.
UNAME_*: For cross building; determines the output of uname(1); affects
lang/python* for example.

This commit deals with everything under Mk/.  Ports that have their own
targets running upstream build commands can switch to SETENVI later.

The ports tree adds its definition of ARCH to the MAKEFLAGS environment
variable, which is interpreted by sub-makes as command line arguments,
which means that any definition of ARCH in upstream makefiles was
overridden.  The following ports required fixes now that this is no
longer the case.

games/iortcw, games/q3cellshading, games/tremulous:
These use Quake 3 engine code.  Fix use of ARCH.  Reduce diff between
FreeBSD code and Linux code.

games/legesmotus:
Remove ARCH related patches.

lang/ocaml:
Patch configure script so it detects amd64 correctly.  Also make the
powerpc case consistent with the other architectures.  This also affects
other ocaml ports like devel/ocaml-ocamlbuild and math/ocaml-num that
include a Makefile.config installed by lang/ocaml.  While here, use
SETENVI in check-test target.

net/libnatpmp:
Use of upstream definition of ARCH triggers installation in PREFIX/lib64
on amd64.  Disable this.

PR:		276478
Approved by:	portmgr (antoine)
Exp-run by:	antoine
2024-02-29 21:21:37 +01:00

155 lines
4.7 KiB
Makefile

# Support for Lazarus-based ports.
#
# Feature: lazarus
# Usage: USES=lazarus
# Valid ARGS: (none), gtk2, qt5, qt6, flavors
#
# (none) - This automatically build lazarus-app with gtk2 interface
#
# gtk2 - This automatically build lazarus-app with gtk2 interface
#
# qt5 - This automatically build lazarus-app with qt5 interface
#
# qt6 - This automatically build lazarus-app with qt6 interface
#
# flavors - This automatically build lazarus-app with flavors feature
#
# If the port not requires compile lazarus project files automatically, you can
# defined the following:
#
# NO_LAZBUILD= yes
#
# Variables for ports:
#
# LAZARUS_PROJECT_FILES - List of lpi files. It must not be empty
# Default: empty
# LAZARUS_DIR - Path to lazarus installation directory
# Default: ${LOCALBASE}/share/lazarus-${LAZARUS_VER}
# LAZBUILD_ARGS - lazbuild extra args. It could be -d most of cases.
# See man lazbuild for more information
# Default: empty
# LAZARUS_NO_FLAVORS - Do NOT build these lazarus flavors.
# If LAZARUS_NO_FLAVORS is not define then all
# valid lazarus flavors are assumed.
#
# Example:
#
# USES+= lazarus:flavors
# LAZARUS_NO_FLAVORS=qt5
#
.if !defined(_INCLUDE_USES_LAZARUS_MK)
LAZARUS_Include_MAINTAINER= acm@FreeBSD.org
_INCLUDE_USES_LAZARUS_MK= yes
. if defined(DEFAULT_LAZARUS_VER)
WARNING+= "DEFAULT_LAZARUS_VER is defined, consider using DEFAULT_VERSIONS=lazarus=${DEFAULT_LAZARUS_VER} instead"
. endif
. if ${lazarus_ARGS:Ngtk2:Nqt5:Nqt6:Nflavors}
IGNORE= Unknown argument for USES=lazarus: ${lazarus_ARGS:Ngtk2:Nqt5:Nqt6:Nflavors}
. endif
. if !empty(LAZARUS_NO_FLAVORS)
. if ${LAZARUS_NO_FLAVORS:Ngtk2:Nqt5:Nqt6}
IGNORE= Unknown argument for LAZARUS_NO_FLAVORS: ${LAZARUS_NO_FLAVORS:Ngtk2:Nqt5:Nqt6}
. endif
. endif
DEFAULT_LAZARUS_VER= ${LAZARUS_DEFAULT}
DEFAULT_FPC_VER= ${FPC_DEFAULT}
# When adding a version, please keep the comment in
# Mk/bsd.default-versions.mk in sync.
LAZARUS_VER= ${DEFAULT_LAZARUS_VER}
FPC_VER= ${DEFAULT_FPC_VER}
LAZARUS_ARCH= ${ARCH:S/amd64/x86_64/}
LAZARUS_PROJECT_FILES?= # empty
LAZARUS_DIR?= ${LOCALBASE}/share/lazarus-${LAZARUS_VER}
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= not yet ported to anything other than i386 and amd64
. if !defined(WANT_FPC_DEVEL)
FPC_DEVELSUFFIX= #
. else
FPC_DEVELSUFFIX= -devel
. endif
BUILDNAME= ${LAZARUS_ARCH}-${OPSYS:tl}
LCL_UNITS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER}/lcl/units/${BUILDNAME}
MKINSTDIR= ${LOCALBASE}/lib/fpc/${FPC_VER}/fpmkinst/${BUILDNAME}
BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils \
${MKINSTDIR}/utils-lexyacc.fpm:lang/fpc${FPC_DEVELSUFFIX}
LAZARUS_FLAVORS= gtk2 qt5 qt6
. if ${lazarus_ARGS:Mflavors}
. if defined(LAZARUS_NO_FLAVORS)
. for flavor in ${LAZARUS_NO_FLAVORS}
FLAVORS:= ${LAZARUS_FLAVORS:N${flavor}}
. endfor
. else
FLAVORS:= ${LAZARUS_FLAVORS}
. endif
. if empty(FLAVOR)
FLAVOR= ${FLAVORS:[1]}
. endif
. endif
LAZARUS_PKGNAMESUFFIX= -${FLAVOR}
. if !defined(WANT_LAZARUS_DEVEL)
LAZARUS_DEVELSUFFIX= #
. else
LAZARUS_DEVELSUFFIX= -devel
. endif
. if ${lazarus_ARGS:Mgtk2} || ${FLAVOR} == gtk2
LIB_DEPENDS+= libglib-2.0.so:devel/glib20 \
libgtk-x11-2.0.so:x11-toolkits/gtk20 \
libatk-1.0.so:accessibility/at-spi2-core \
libpango-1.0.so:x11-toolkits/pango \
libgdk_pixbuf-2.0.so:graphics/gdk-pixbuf2
LCL_PLATFORM= gtk2
BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus${LAZARUS_DEVELSUFFIX}
. endif
. if ${lazarus_ARGS:Mqt5} || ${FLAVOR} == qt5
LIB_DEPENDS+= libQt5Pas.so:x11-toolkits/qt5pas
LCL_PLATFORM= qt5
BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-qt5${LAZARUS_DEVELSUFFIX}
. endif
. if ${lazarus_ARGS:Mqt6} || ${FLAVOR} == qt6
LIB_DEPENDS+= libQt6Pas.so:x11-toolkits/qt6pas
LCL_PLATFORM= qt6
BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-qt6${LAZARUS_DEVELSUFFIX}
. endif
LAZBUILD_CMD= ${LOCALBASE}/bin/lazbuild
LAZBUILD_ARGS?= # empty
_USES_POST+= lazarus
.endif
# End of _INCLUDE_USES_LAZARUS_MK
.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_LAZARUS_POST_MK)
_INCLUDE_USES_LAZARUS_POST_MK= yes
. if !defined(NO_LAZBUILD)
. if !target(do-build)
do-build:
. for PROJECT_FILE in ${LAZARUS_PROJECT_FILES}
@(cd ${BUILD_WRKSRC}; ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${LAZBUILD_CMD} \
${LAZBUILD_ARGS} --ws=${LCL_PLATFORM} --lazarusdir=${LAZARUS_DIR} ${PROJECT_FILE})
. endfor
. endif # !target(do-build)
. endif
.endif
# End of _INCLUDE_USES_LAZARUS_POST_MK