summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason A. Donenfeld <zx2c4@gentoo.org>2013-03-17 22:19:43 +0000
committerJason A. Donenfeld <zx2c4@gentoo.org>2013-03-17 22:19:43 +0000
commit59ed6facb2d87423b0a431883848fb614e842c5a (patch)
treeadce947af5e23b31ad1f2a0347e531e5b9dfff90 /mail-mta
parentDon't ignore subsequent econf options. (diff)
downloadgentoo-2-59ed6facb2d87423b0a431883848fb614e842c5a.tar.gz
gentoo-2-59ed6facb2d87423b0a431883848fb614e842c5a.tar.bz2
gentoo-2-59ed6facb2d87423b0a431883848fb614e842c5a.zip
Add optional sqlite support.
(Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key A5DE03AE)
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/opensmtpd/ChangeLog5
-rw-r--r--mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild7
2 files changed, 8 insertions, 4 deletions
diff --git a/mail-mta/opensmtpd/ChangeLog b/mail-mta/opensmtpd/ChangeLog
index 3d9590193504..35707f535778 100644
--- a/mail-mta/opensmtpd/ChangeLog
+++ b/mail-mta/opensmtpd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/opensmtpd
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.5 2013/03/17 19:59:36 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.6 2013/03/17 22:19:43 zx2c4 Exp $
+
+ 17 Mar 2013; Jason A. Donenfeld <zx2c4@gentoo.org> opensmtpd-5.3_p1.ebuild:
+ Add optional sqlite support.
*opensmtpd-5.3_p1 (17 Mar 2013)
diff --git a/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild b/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild
index f80bf4c2a23f..4cceaa88e043 100644
--- a/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild
+++ b/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild,v 1.2 2013/03/17 21:44:53 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild,v 1.3 2013/03/17 22:19:43 zx2c4 Exp $
EAPI=5
@@ -13,13 +13,13 @@ SRC_URI="http://www.opensmtpd.org/archives/${P/_}.tar.gz"
LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="pam"
+IUSE="pam sqlite"
DEPEND="dev-libs/openssl
sys-libs/zlib
pam? ( virtual/pam )
sys-libs/db
- dev-db/sqlite:3
+ sqlite? ( dev-db/sqlite:3 )
dev-libs/libevent
!mail-mta/courier
!mail-mta/esmtp
@@ -51,6 +51,7 @@ src_configure() {
--with-privsep-path=/var/empty \
--with-sock-dir=/var/run \
--sysconfdir=/etc/opensmtpd \
+ $(use_with sqlite experimental-sqlite) \
$(use_with pam)
#--with-lookup-user=smtpl will be available in the release after 5.3p1
}