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)
31 lines
654 B
Makefile
31 lines
654 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cave
|
|
PORTVERSION= 1.0b
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= SF/bjk/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Character Animation Viewer for Everyone
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= ncurses
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= LIBS="${LDFLAGS} -lncurses"
|
|
CPPFLAGS+= -I${NCURSESINC} -I${LOCALBASE}/include
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man1/cave.1.gz
|
|
|
|
post-patch:
|
|
@${LN} -sf ${PORTNAME}.man ${WRKSRC}/doc/${PORTNAME}.1
|
|
|
|
.include <bsd.port.mk>
|