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)
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# Created by: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cosmo
|
|
PORTVERSION= 2.0.4
|
|
PORTREVISION= 6
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://hanzubon.jp/mirrors/Vine/%SUBDIR%/ \
|
|
http://ftp.jaist.ac.jp/pub/Linux/Vine/%SUBDIR%/ \
|
|
http://ftp.riken.go.jp/Linux/vine/%SUBDIR%/ \
|
|
http://ftp.yz.yamagata-u.ac.jp/pub/Linux/Vine/%SUBDIR%/ \
|
|
http://ftp.nara.wide.ad.jp/pub/Linux/vine/%SUBDIR%/ \
|
|
http://ftp.vinelinux.org/pub/Vine/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= VinePlus/1.1/JG-0.9.1/other-sources/jp
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} moon.tif.gz
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Clone of Cosmo Gang the Puzzle (Namco)
|
|
|
|
NO_CDROM= Possible copyright infringement
|
|
|
|
WRKSRC= ${WRKDIR}/cosmo2
|
|
DIST_SUBDIR= cosmo
|
|
USES= imake:notall,noman xorg
|
|
USE_XORG= x11 xext
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/cosmo
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cosmo ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/cosmorc ${STAGEDIR}${PREFIX}/lib/X11/cosmo
|
|
${MKDIR} ${STAGEDIR}/var/games/cosmo
|
|
${ECHO_CMD} > ${STAGEDIR}/var/games/cosmo/best.dat.sample
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/moon.tif.gz \
|
|
${STAGEDIR}${PREFIX}/lib/X11/cosmo
|
|
|
|
.include <bsd.port.mk>
|