From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCF17139694 for ; Mon, 3 Jul 2017 09:29:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1EE8E0C11; Mon, 3 Jul 2017 09:29:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9BDD0E0C11 for ; Mon, 3 Jul 2017 09:29:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A3543418DF for ; Mon, 3 Jul 2017 09:29:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65819749A for ; Mon, 3 Jul 2017 09:29:13 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1499074149.bda5ac1e6b5dc149f7d0491b8089e1cb8fc80e82.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/abook/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/abook/abook-0.6.1-r1.ebuild X-VCS-Directories: app-misc/abook/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: bda5ac1e6b5dc149f7d0491b8089e1cb8fc80e82 X-VCS-Branch: master Date: Mon, 3 Jul 2017 09:29:13 +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: b95c0744-2b7d-4ad7-9d9d-9eab5b7c91eb X-Archives-Hash: 8ba57d91b47476051f54b4a2e42fc196 commit: bda5ac1e6b5dc149f7d0491b8089e1cb8fc80e82 Author: Patrice Clement gentoo org> AuthorDate: Mon Jul 3 09:28:16 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Jul 3 09:29:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda5ac1e app-misc/abook: EAPI 6 bump. Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-misc/abook/abook-0.6.1-r1.ebuild | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/app-misc/abook/abook-0.6.1-r1.ebuild b/app-misc/abook/abook-0.6.1-r1.ebuild new file mode 100644 index 00000000000..4d1dccd13b8 --- /dev/null +++ b/app-misc/abook/abook-0.6.1-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +MY_P="${P/_/}" +DESCRIPTION="Abook is a text-based addressbook program designed to use with mutt mail client" +HOMEPAGE="http://abook.sourceforge.net/" +SRC_URI="http://abook.sourceforge.net/devel/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="nls" + +RDEPEND=" + sys-libs/ncurses + sys-libs/readline + dev-libs/libvformat + nls? ( virtual/libintl )" + +DEPEND="nls? ( sys-devel/gettext )" + +S="${WORKDIR}/${MY_P}" + +DOCS=( BUGS ChangeLog FAQ README TODO sample.abookrc ) + +src_prepare() { + default + + # TODO: do the right thing and find out whats wrong with Makefile.in + eautoreconf +} + +src_configure() { + econf \ + --with-curses \ + --with-readline \ + --enable-vformat \ + $(use_enable nls) +} + +src_compile() { + # bug 570428 + emake CFLAGS="${CFLAGS} -std=gnu89" +} + +src_install() { + default +}