mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +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)
32 lines
795 B
Makefile
32 lines
795 B
Makefile
# Created by: Brian Handy <handy@physics.montana.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmmatrix
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11 windowmaker
|
|
MASTER_SITES= http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/files/ \
|
|
http://ia300205.us.archive.org/0/items/tucows_10414_WMMatrix/
|
|
DISTNAME= wmMatrix-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= DockApp that runs a version of the xmatrix screenhack
|
|
|
|
# Fix build with -fno-common (llvm 11)
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= bin/wmmatrix
|
|
USES= gmake xorg
|
|
USE_XORG= xpm
|
|
ALL_TARGET= clean all
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmMatrix ${STAGEDIR}${PREFIX}/bin/wmmatrix
|
|
|
|
.include <bsd.port.mk>
|