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)
36 lines
827 B
Makefile
36 lines
827 B
Makefile
# Created by: Michael Elbel (me)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= seyon
|
|
PORTVERSION= 2.20c
|
|
PORTREVISION= 1
|
|
CATEGORIES= comms
|
|
MASTER_SITES= DEBIAN
|
|
DISTFILES= ${DISTNAME:S/-/_/}.orig${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Communications package for the X Window system
|
|
|
|
USES= imake xorg
|
|
USE_XORG= x11 xext xpm xmu xaw xt sm ice
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
PLIST_FILES= bin/seyon lib/X11/app-defaults/Seyon \
|
|
lib/X11/app-defaults/Seyon-color lib/X11/seyon.help \
|
|
man/man1/${PORTNAME}.1.gz
|
|
|
|
post-extract:
|
|
${CHMOD} +x ${WRKSRC}/makever.sh
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s/getline(/seyon_getline(/g" \
|
|
${WRKSRC}/SeDecl.h ${WRKSRC}/SeScript.c ${WRKSRC}/SeSupp.c
|
|
|
|
.include <bsd.port.mk>
|