- After the repocopy in the previous commit, update the port to version 2.4.3. - Lint with portfmt and portclippy. - Update CONFLICTS_INSTALL in other talloc* ports. - Remove a patch file that on longer applied. It seems harmless to remove it. - Remove NO_COLOR-related settings. The port builds fine without those and the reason for their presence is unclear. Let's drop them. PR: 287985 Reported by: Andrej Ebert <andrej@ebert.su> Sponsored by: Klara, Inc.
71 lines
2.0 KiB
Makefile
71 lines
2.0 KiB
Makefile
PORTNAME= talloc
|
|
DISTVERSION= 2.4.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SAMBA
|
|
PKGNAMESUFFIX= 242
|
|
|
|
MAINTAINER= samba@FreeBSD.org
|
|
COMMENT= Hierarchical pool based memory allocator
|
|
WWW= https://talloc.samba.org/
|
|
|
|
LICENSE= LGPL3
|
|
|
|
USES= compiler pkgconfig shebangfix waf
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_GLOB= *.py
|
|
WAF_CMD= buildtools/bin/waf
|
|
CONFIGURE_LOG= bin/config.log
|
|
|
|
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
|
|
PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR:S;^${PREFIX}/;;}
|
|
|
|
CONFIGURE_ARGS+= --disable-rpath \
|
|
--disable-rpath-install \
|
|
--bundled-libraries=NONE \
|
|
--builtin-libraries=replace \
|
|
--without-gettext
|
|
CONFIGURE_ENV= PYTHONHASHSEED=1
|
|
MAKE_ENV= PYTHONHASHSEED=1
|
|
|
|
CONFLICTS_INSTALL= talloc talloc[0-9]*
|
|
|
|
OPTIONS_DEFINE= DEBUG MANPAGES PYTHON
|
|
OPTIONS_DEFAULT= MANPAGES PYTHON
|
|
OPTIONS_SUB= yes
|
|
|
|
DEBUG_CFLAGS= -g -ggdb3 -O0
|
|
DEBUG_CONFIGURE_ON= --verbose --enable-debug
|
|
DEBUG_MAKE_ARGS= --verbose
|
|
|
|
PYTHON_USES= gettext-runtime python
|
|
PYTHON_USES_OFF= python:build,test
|
|
PYTHON_CONFIGURE_OFF= --disable-python
|
|
|
|
MANPAGES_BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:textproc/docbook-xsl \
|
|
xsltproc:textproc/libxslt
|
|
MANPAGES_CONFIGURE_ENV_OFF= XSLTPROC="false"
|
|
|
|
# No fancy color error messages
|
|
CFLAGS+= ${CFLAGS_${CHOSEN_COMPILER_TYPE}}
|
|
CFLAGS_clang= -fno-color-diagnostics
|
|
CONFIGURE_ENV+= NOCOLOR=yes
|
|
MAKE_ENV+= NOCOLOR=yes
|
|
# Some symbols in talloc's linker version scripts are not defined, but since the
|
|
# scripts are generated dynamically, suppress errors with lld >= 17 due to these
|
|
# undefined symbols.
|
|
LDFLAGS+= -Wl,--undefined-version
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PKGCONFIGDIR%%|${PKGCONFIGDIR}|g' \
|
|
${BUILD_WRKSRC}/wscript
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtalloc.so.2
|
|
|
|
post-install-PYTHON-on:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpytalloc-util*.so
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/talloc*.so
|
|
|
|
.include <bsd.port.mk>
|