Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Apr 2017 09:30:41 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439370 - head/mail/neomutt
Message-ID:  <201704250930.v3P9UfaF093058@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Tue Apr 25 09:30:41 2017
New Revision: 439370
URL: https://svnweb.freebsd.org/changeset/ports/439370

Log:
  mail/neomutt: fix build
  
  Removed the ICONV option, as it is now required to build NeoMutt. Adjusted the
  NLS option, as gettext is required to configure, although it's still optional
  at build time.
  
  Approved by:	bapt (maintainer, implicit)

Modified:
  head/mail/neomutt/Makefile

Modified: head/mail/neomutt/Makefile
==============================================================================
--- head/mail/neomutt/Makefile	Tue Apr 25 09:05:07 2017	(r439369)
+++ head/mail/neomutt/Makefile	Tue Apr 25 09:30:41 2017	(r439370)
@@ -2,6 +2,7 @@
 
 PORTNAME=	neomutt
 PORTVERSION=	20170421
+PORTREVISION=	1
 DISTVERSIONPREFIX=	${PORTNAME}-
 CATEGORIES=	mail
 
@@ -16,13 +17,13 @@ RUN_DEPENDS=	${LOCALBASE}/etc/mime.types
 
 USE_GITHUB=	yes
 
-USES=		autoreconf localbase shebangfix ssl
+USES=		autoreconf gettext iconv:translit localbase shebangfix ssl
 GNU_CONFIGURE=	yes
 
 OPTIONS_SUB=	yes
 SHEBANG_FILES=	smime_keys.pl
 
-OPTIONS_DEFINE=	NLS DOCS SASL ICONV IDN FLOCK GPGME NOTMUCH
+OPTIONS_DEFINE=	NLS DOCS SASL IDN FLOCK GPGME NOTMUCH
 OPTIONS_DEFAULT=SASL TOKYOCABINET NOTMUCH GPGME LMDB NCURSES
 OPTIONS_MULTI=	HCACHE
 OPTIONS_MULTI_HCACHE=	BDB GDBM KYOTOCABINET LMDB QDBM TOKYOCABINET
@@ -50,7 +51,8 @@ CONFIGURE_ARGS=	--disable-dependency-tra
 		--enable-sidebar \
 		--disable-fcntl \
 		--enable-locales-fix \
-		--enable-external-dotlock
+		--enable-external-dotlock \
+		${ICONV_CONFIGURE_ARGS}
 
 # Header cache
 BDB_CONFIGURE_WITH=		bdb
@@ -67,17 +69,10 @@ TOKYOCABINET_CONFIGURE_WITH=	tokyocabine
 TOKYOCABINET_LIB_DEPENDS=	libtokyocabinet.so:databases/tokyocabinet
 
 NLS_CONFIGURE_ENABLE=	nls
-NLS_USES=	gettext
-NLS_IMPLIES=	ICONV
 
 IDN_LIB_DEPENDS=	libidn.so:dns/libidn
-IDN_IMPLIES=	ICONV
 IDN_CONFIGURE_WITH=	idn
 
-ICONV_USES=	iconv:translit
-ICONV_CONFIGURE_ON=	${ICONV_CONFIGURE_ARGS}
-ICONV_CONFIGURE_OFF=	--disable-iconv
-
 FLOCK_CONFIGURE_ENABLE=	flock
 
 SASL_LIB_DEPENDS=	libsasl2.so:security/cyrus-sasl2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704250930.v3P9UfaF093058>