Files
ports/lang/angelscript/Makefile
T
Jason E. Hale 14f7c29430 */*: De-orbit alias.mk
Mk/Uses/alias.mk was an attempt for compat with DPorts, but has rotted.
This feature was never documented in the PHB, so there is no work to
be done by the docs@ team.

Nothing against DragonFly, but if DPorts still needs FreeBSD 9
support, they really should work that out with upstream projects.

Ultimately, we don't need to keep carrying this outdated feature that
doesn't affect us.
2025-12-30 07:00:05 -05:00

35 lines
898 B
Makefile

PORTNAME= angelscript
PORTVERSION= 2.34.0
CATEGORIES= lang
MASTER_SITES= http://www.angelcode.com/angelscript/sdk/files/
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ndowens04@gmail.com
COMMENT= AngelCode Scripting Library
WWW= https://www.angelcode.com/angelscript/
LICENSE= ZLIB
USES= compiler:c11 dos2unix gmake zip
USE_LDCONFIG= yes
DOS2UNIX_FILES= ../../source/as_config.h
MAKE_ARGS= CP_SYMLINK="${INSTALL_LIB}"
WRKSRC= ${WRKDIR}/sdk/angelscript/projects/gnuc/
PLIST_FILES= include/angelscript.h \
lib/libangelscript.a \
lib/libangelscript.so \
lib/libangelscript.so.${PORTVERSION}
.include <bsd.port.options.mk>
.if ${ARCH} == "i386"
pre-build:
(cd ${WRKDIR}/sdk/angelscript/source && ${REINPLACE_CMD} -e 's|ifdef __OPTIMIZE__|if defined(__OPTIMIZE__) \&\&\ !defined(__clang__)|g' \
-e 's,ifdef __OPTIMIZE__ifdef __OPTIMIZE__,,g' *.cpp)
.endif
.include <bsd.port.mk>