Re: git: 3eb30c6af392 - main - archivers/lzip: Update to 1.26

From: Daniel Engberg <diizzy_at_FreeBSD.org>
Date: Sun, 22 Mar 2026 18:27:09 UTC
On 2026-03-22 19:04, Gerald Pfeifer wrote:
> On Sun, 22 Mar 2026, Daniel Engberg wrote:
>>>    archivers/lzip/Makefile | 2 +-
>>>    archivers/lzip/distinfo | 6 +++---
>> This should use HAS_CONFIGURE rather than GNU_CONFIGURE
> 
> How did you notice this? Good eyes! (Was it the warning in configure
> stage?)
> 
> And in a way you're right since lzip does not use autoconf.
> 
> It does, however, provide a configure script that essentially behaves as
> if. Simply replacing GNU_CONFIGURE with HAS_CONFIGURE does not work in my
> test environment (--prefix= is required) and would make the port more
> complex.
> 
> Gerald
> 

Release archive looked suspiciously small for Autotools without USES= 
autoreconf :)

It needs something like:

CONFIGURE_ARGS=	--prefix="${LOCALBASE}" \
		CXX="${CXX}" \
  		CXXFLAGS="${CXXFLAGS}" \
  		LDFLAGS="${LDFLAGS}"

..and also removes "configure: WARNING: unrecognized option: 
'--build=amd64-portbld-freebsd15.0'"

Best regards,
Daniel