From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9314B1388B6 for ; Tue, 5 Jan 2016 15:09:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F06A921C003; Tue, 5 Jan 2016 15:09:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62E8D21C003 for ; Tue, 5 Jan 2016 15:09:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28FE334089F for ; Tue, 5 Jan 2016 15:09:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28640CB1 for ; Tue, 5 Jan 2016 15:09:10 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1452006530.18216e3146fbbbb41072990e723b41393bc13ab3.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/lbdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/lbdb/lbdb-0.39-r1.ebuild X-VCS-Directories: net-mail/lbdb/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: 18216e3146fbbbb41072990e723b41393bc13ab3 X-VCS-Branch: master Date: Tue, 5 Jan 2016 15:09:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fb2c07ba-7c0c-4349-986e-124f7473893f X-Archives-Hash: fc6e0c9ada09b373f2b1dfae034e2f5b commit: 18216e3146fbbbb41072990e723b41393bc13ab3 Author: Eray Aslan gentoo org> AuthorDate: Tue Jan 5 15:08:50 2016 +0000 Commit: Eray Aslan gentoo org> CommitDate: Tue Jan 5 15:08:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18216e31 net-mail/lbdb: remove nis support (#570726) Package-Manager: portage-2.2.26 net-mail/lbdb/lbdb-0.39-r1.ebuild | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/net-mail/lbdb/lbdb-0.39-r1.ebuild b/net-mail/lbdb/lbdb-0.39-r1.ebuild new file mode 100644 index 0000000..54bc2d6 --- /dev/null +++ b/net-mail/lbdb/lbdb-0.39-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit versionator + +MY_P=${P/-/_} +DESCRIPTION="Little Brother database" +SRC_URI="http://www.spinnaker.de/debian/${MY_P}.tar.gz" +HOMEPAGE="http://www.spinnaker.de/lbdb/" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="GPL-2" +IUSE="pda ldap finger nis abook crypt evo" + +DEPEND="dev-libs/libvformat + evo? ( mail-client/evolution ) + finger? ( net-misc/netkit-fingerd ) + abook? ( app-misc/abook ) + crypt? ( app-crypt/gnupg )" +RDEPEND="${DEPEND} + pda? ( dev-perl/p5-Palm ) + ldap? ( dev-perl/perl-ldap )" +# Bug 570726 +REQUIRED_USE="!nis" + +src_configure() { + local evoversion + local evolution_addressbook_export + + if use evo ; then + evoversion=$(best_version mail-client/evolution) + evoversion=${evoversion##mail-client/evolution-} + evolution_addressbook_export="/usr/libexec/evolution/$(get_version_component_range 1-2 ${evoversion})/evolution-addressbook-export" + fi + + econf $(use_with finger) \ + $(use_with abook) \ + --without-ypcat \ + $(use_with crypt gpg) \ + $(use_with evo evolution-addressbook-export "${evolution_addressbook_export}" ) \ + --enable-lbdb-dotlock \ + --without-pgpk --without-pgp \ + --without-niscat --without-addr-email --with-getent \ + --libdir=/usr/$(get_libdir)/lbdb +} + +src_install () { + emake install_prefix="${D}" install + dodoc README TODO debian/changelog +}