From owner-svn-ports-all@freebsd.org Fri Sep 16 13:25:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF166BDC26F; Fri, 16 Sep 2016 13:25:12 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82FD621C; Fri, 16 Sep 2016 13:25:12 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GDPBZ4035507; Fri, 16 Sep 2016 13:25:11 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GDPBXZ035506; Fri, 16 Sep 2016 13:25:11 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201609161325.u8GDPBXZ035506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 16 Sep 2016 13:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422253 - head/mail/neomutt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 13:25:12 -0000 Author: gahr Date: Fri Sep 16 13:25:11 2016 New Revision: 422253 URL: https://svnweb.freebsd.org/changeset/ports/422253 Log: mail/neomutt: provide an OPTION to use LMDB as a header-cache backend https://www.neomutt.org/feature/lmdb/ PR: 212725 Submitted by: gahr Approved by: bapt (maintainer) Modified: head/mail/neomutt/Makefile Modified: head/mail/neomutt/Makefile ============================================================================== --- head/mail/neomutt/Makefile Fri Sep 16 12:20:01 2016 (r422252) +++ head/mail/neomutt/Makefile Fri Sep 16 13:25:11 2016 (r422253) @@ -3,6 +3,7 @@ PORTNAME= neomutt PORTVERSION= 20160910 DISTVERSIONPREFIX= ${PORTNAME}- +PORTREVISION= 1 CATEGORIES= mail MAINTAINER= bapt@FreeBSD.org @@ -16,8 +17,7 @@ USE_GITHUB= yes USES= autoreconf localbase ncurses shebangfix ssl GNU_CONFIGURE= yes -LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet \ - libnotmuch.so:mail/notmuch +LIB_DEPENDS= libnotmuch.so:mail/notmuch BUILD_DEPENDS= gdate:sysutils/coreutils RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support \ urlview:textproc/urlview @@ -26,10 +26,14 @@ OPTIONS_SUB= yes SHEBANG_FILES= smime_keys.pl OPTIONS_DEFINE= NLS DOCS SASL ICONV IDN FLOCK GPGME -OPTIONS_DEFAULT= SASL +OPTIONS_DEFAULT=SASL TOKYOCABINET +OPTIONS_RADIO= HCACHE +OPTIONS_RADIO_HCACHE= TOKYOCABINET LMDB FLOCK_DESC= Use flock() to lock files GPGME_DESC= Use gpgme to handle pgp +TOKYOCABINET_DESC= Use TokyoCabinet as header-cache backend +LMDB_DESC= Use LMDB as header-cache backend CONFIGURE_ARGS= --disable-dependency-tracking \ --with-docdir="${DOCSDIR}" \ @@ -42,11 +46,16 @@ CONFIGURE_ARGS= --disable-dependency-tra --enable-hcache \ --enable-sidebar \ --enable-notmuch \ - --with-tokyocabinet \ --without-qdbm \ --disable-fcntl \ --enable-external-dotlock +TOKYOCABINET_CONFIGURE_WITH= tokyocabinet +TOKYOCABINET_LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet + +LMDB_CONFIGURE_WITH= lmdb +LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb + NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext NLS_IMPLIES= ICONV