From owner-svn-ports-head@freebsd.org Wed Nov 16 13:23:17 2016 Return-Path: Delivered-To: svn-ports-head@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 50F33C4340C; Wed, 16 Nov 2016 13:23:17 +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 008667A4; Wed, 16 Nov 2016 13:23:16 +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 uAGDNGt0055573; Wed, 16 Nov 2016 13:23:16 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAGDNG1f055572; Wed, 16 Nov 2016 13:23:16 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201611161323.uAGDNG1f055572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 16 Nov 2016 13:23:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426239 - 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 13:23:17 -0000 Author: gahr Date: Wed Nov 16 13:23:15 2016 New Revision: 426239 URL: https://svnweb.freebsd.org/changeset/ports/426239 Log: mail/neomutt: add OPTIONs for all hcache backends, fix LICENSE, bump P'REVISION Approved by: bapt (maintainer) Modified: head/mail/neomutt/Makefile Modified: head/mail/neomutt/Makefile ============================================================================== --- head/mail/neomutt/Makefile Wed Nov 16 13:19:06 2016 (r426238) +++ head/mail/neomutt/Makefile Wed Nov 16 13:23:15 2016 (r426239) @@ -3,13 +3,13 @@ PORTNAME= neomutt PORTVERSION= 20161104 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MAINTAINER= bapt@FreeBSD.org COMMENT= Bringing together all the Mutt Code -LICENSE= GPLv1 +LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support \ @@ -26,13 +26,16 @@ SHEBANG_FILES= smime_keys.pl OPTIONS_DEFINE= NLS DOCS SASL ICONV IDN FLOCK GPGME NOTMUCH OPTIONS_DEFAULT=SASL TOKYOCABINET NOTMUCH GPGME OPTIONS_RADIO= HCACHE -OPTIONS_RADIO_HCACHE= TOKYOCABINET LMDB +OPTIONS_RADIO_HCACHE= BDB GDBM KYOTOCABINET LMDB QDBM TOKYOCABINET FLOCK_DESC= Use flock() to lock files GPGME_DESC= Use gpgme to handle pgp NOTMUCH_DESC= Use notmuch for tagging and searching -TOKYOCABINET_DESC= Use TokyoCabinet as header-cache backend -LMDB_DESC= Use LMDB as header-cache backend +HCACHE_DESC= Header-cache backend +KYOTOCABINET_DESC= Kyoto Cabinet support +LMDB_DESC= Lightning Memory-Mapped Database support +QDBM_DESC= Quick DataBase Manager support +TOKYOCABINET_DESC= Tokyo Cabinet support CONFIGURE_ARGS= --disable-dependency-tracking \ --with-docdir="${DOCSDIR}" \ @@ -44,16 +47,23 @@ CONFIGURE_ARGS= --disable-dependency-tra --enable-compressed \ --enable-hcache \ --enable-sidebar \ - --without-qdbm \ --disable-fcntl \ --enable-external-dotlock +# Header cache +BDB_CONFIGURE_WITH= bdb +BDB_USES= bdb +GDBM_CONFIGURE_WITH= gdbm +GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm +KYOTOCABINET_CONFIGURE_WITH= kyotocabinet +KYOTOCABINET_LIB_DEPENDS= libkyotocabinet.so:databases/kyotocabinet +LMDB_CONFIGURE_WITH= lmdb +LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb +QDBM_CONFIGURE_WITH= qdbm +QDBM_LIB_DEPENDS= libqdbm.so:databases/qdbm 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