mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
d32b8fe316
In this version, libgpgme-pthread.so has been removed in favor of just using libgpgme.so as the thread-safe library. PORTREVISION has been bumped on all ports depending on security/gpgme so that any that may have linked to -lgpgme-pthread will link to -lgpgme instead. The Python module provided by security/py-gpgme has been renamed upstream from pyme3 to gpg. This removes the conflict with security/py-pyme, although security/py-gpgme is still the direct replacement of that module.
37 lines
843 B
Makefile
37 lines
843 B
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= elmo
|
|
PORTVERSION= 1.3.2
|
|
PORTREVISION= 1
|
|
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
|
|
|
|
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>
|