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)
42 lines
977 B
Makefile
42 lines
977 B
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= elmo
|
|
PORTVERSION= 1.3.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Receive, filter, read, compose, and send mail at the text console
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CONFLICTS= elmo-devel-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= iconv localbase ncurses shebangfix perl5 ssl
|
|
SHEBANG_FILES= src/elmoconf.pl
|
|
USE_PERL5= run
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
OPTIONS_DEFINE= GPGME NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
GPGME_DESC= GnuPG support using GPGME
|
|
GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme
|
|
GPGME_CONFIGURE_ENV_OFF=ac_cv_header_gpgme_h=no
|
|
NLS_CONFIGURE_ON= --with-libintl-prefix="${LOCALBASE}"
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
NLS_USES= gettext
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/if test/s|==|=|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|