mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
a1b290c54d
Extend the expiration of unmaintained leaf ports that are broken with -fno-common and previously had a short expiration date. The new date is set to 2021-04-01, meaning the ports will be in the 2021Q2 branch, giving people until 2021-06-30 (10 months from now) to fix issues. Improve the wording of the deprecation message, mentioning both llvm 11 and -fno-common. Bump portrevision to force reinstall. This way the warning message about deprecation will be displayed to users installing or reinstalling the software. MFH: 2020Q3 (maybe)
27 lines
611 B
Makefile
27 lines
611 B
Makefile
# Created by: Joachim Strombergson <watchman@ludd.ltu.se>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= shftool
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://www.df.lth.se/~triad/krad/shftool/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Converter for the Standard Hex Format (SHF)
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,^LIBLOC_LIST=.*,LIBLOC_LIST=${LOCALBASE},' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|