In the course of make walking the dependency tree of a port it comes to devel/pkgconf and promptly stops with the following error:
kyua-0.13_9,3 kyua from base must be used for FreeBSD 14.x and newer.
When I cat the Makefile for pkgconf I get (note TEST_DEPENDS variable):
15.6 of the handbook says that everything in the list is "optional" which includes the variable "TEST_DEPENDS" so I feel like I could comment it out without any unintended consequences. Would that be a fair assessment?
Also, if kyua is to be used from base why is pkgconf referencing it as a port?
kyua-0.13_9,3 kyua from base must be used for FreeBSD 14.x and newer.
When I cat the Makefile for pkgconf I get (note TEST_DEPENDS variable):
Code:
:/usr/ports/devel/pkgconf # cat Makefile
PORTNAME= pkgconf
PORTVERSION= 2.3.0
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= https://distfiles.ariadne.space/${PORTNAME}/
# NOTE: before committing to this port, contact portmgr to arrange for an
# experimental ports run. Untested commits may be backed out at portmgr's
# discretion.
MAINTAINER= bapt@FreeBSD.org
COMMENT= Utility to help to configure compiler and linker flags
WWW= https://gitea.treehouse.systems/ariadne/${PORTNAME}
LICENSE= ISCL
TEST_DEPENDS= kyua:devel/kyua
USES= cpe tar:xz libtool pathfix
GNU_CONFIGURE= yes
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
TEST_TARGET= check
CONFIGURE_ARGS= --with-pkg-config-dir=${PREFIX}/libdata/pkgconfig:/usr/libdata/pkgconfig:${PREFIX}/share/pkgconfig \
--with-system-libdir=/usr/lib \
--with-system-includedir=/usr/include
OPTIONS_DEFINE= DOCS
TESTING_UNSAFE= tests/Kyuafile:5: Non-existent test program 'tests/basic'
post-install:
${LN} -sf pkgconf ${STAGEDIR}${PREFIX}/bin/pkg-config
.include <bsd.port.mk>
15.6 of the handbook says that everything in the list is "optional" which includes the variable "TEST_DEPENDS" so I feel like I could comment it out without any unintended consequences. Would that be a fair assessment?
Also, if kyua is to be used from base why is pkgconf referencing it as a port?