file: add build option for seccomp.

file(1) is known to fail in arbitrary ways when seccomp is enabled, and
it's used as a build tool by us. To minimize the potential impact, make
it an off by default build option.

The build option also allows us to re-organize the template logic, since
--disable-seccomp will now be in configure_args by default.
This commit is contained in:
Érico Nogueira 2021-06-23 15:45:24 -03:00 committed by Érico Nogueira Rolim
parent 80f6771649
commit 65bf9757e4

View file

@ -1,11 +1,11 @@
# Template file for 'file' # Template file for 'file'
pkgname=file pkgname=file
version=5.40 version=5.40
revision=2 revision=3
bootstrap=yes bootstrap=yes
build_style=gnu-configure build_style=gnu-configure
configure_args="--enable-static" configure_args="--enable-static $(vopt_enable libseccomp)"
makedepends="zlib-devel" makedepends="zlib-devel $(vopt_if libseccomp libseccomp-devel)"
short_desc="File type identification utility" short_desc="File type identification utility"
maintainer="Enno Boland <gottox@voidlinux.org>" maintainer="Enno Boland <gottox@voidlinux.org>"
license="BSD-2-Clause" license="BSD-2-Clause"
@ -13,12 +13,16 @@ homepage="http://www.darwinsys.com/file/"
distfiles="https://astron.com/pub/file/file-${version}.tar.gz" distfiles="https://astron.com/pub/file/file-${version}.tar.gz"
checksum=167321f43c148a553f68a0ea7f579821ef3b11c27b8cbe158e4df897e4a5dd57 checksum=167321f43c148a553f68a0ea7f579821ef3b11c27b8cbe158e4df897e4a5dd57
build_options="libseccomp"
if [ -z "$CHROOT_READY" ]; then if [ -z "$CHROOT_READY" ]; then
# libseccomp's default=auto # libseccomp's default=auto and
# and libseccomp is not bootstrap # libseccomp is not bootstrap
# If we're bootstrap from host with libseccomp installed # If we're bootstraping from host with libseccomp installed,
# bootstrap will fail to install shlib required by file. # bootstrap will fail to install shlib required by file.
configure_args+=" --disable-libseccomp" if [ "$build_option_libseccomp" ]; then
msg_error "libseccomp can't be enabled when bootstrapping\n"
fi
fi fi
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
@ -26,7 +30,6 @@ if [ "$CROSS_BUILD" ]; then
hostmakedepends="file" hostmakedepends="file"
fi fi
post_install() { post_install() {
vlicense COPYING vlicense COPYING
} }