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)
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: Matthieu Guegan <matt.guegan@free.fr>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gimmix
|
|
PORTVERSION= 0.5.7.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= BERLIOS
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphical MPD client written in C using GTK2
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libmpd.so:audio/libmpd \
|
|
libtag.so:audio/taglib \
|
|
libnxml.so:textproc/libnxml
|
|
|
|
USES= desktop-file-utils gmake gnome pkgconfig tar:bzip2
|
|
USE_GNOME= gtk20 intltool libglade2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= DATADIRNAME=share
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CPPFLAGS= -I${LOCALBASE}/include
|
|
NLS_LDFLAGS= -L${LOCALBASE}/lib -lintl
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
NLS_USES_OFF= gettext-tools
|
|
|
|
post-patch:
|
|
@${LN} -sf ${LOCALBASE}/share/intltool/Makefile.in.in ${WRKSRC}/po/Makefile.in.in
|
|
@${REINPLACE_CMD} -e '/<curl\/types.h>/d' ${WRKSRC}/src/gimmix-covers.c ${WRKSRC}/src/gimmix-lyrics.c
|
|
|
|
.include <bsd.port.mk>
|