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 9B809139085 for ; Sun, 18 Dec 2016 17:52:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5CB7E0D1A; Sun, 18 Dec 2016 17:52:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9D27AE0D0B for ; Sun, 18 Dec 2016 17:52:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63738341293 for ; Sun, 18 Dec 2016 17:52:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AF314A9 for ; Sun, 18 Dec 2016 17:52:11 +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: <1482083520.a219ed08ce84f92bd794e7dc81acfacd454966f7.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/hstr/hstr-1.21-r1.ebuild X-VCS-Directories: app-shells/hstr/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: a219ed08ce84f92bd794e7dc81acfacd454966f7 X-VCS-Branch: master Date: Sun, 18 Dec 2016 17:52:11 +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: f94faec7-c7d6-42d3-8fde-86e753ffb1fd X-Archives-Hash: fb03e98e4fa24f0f2d0992ab0e248f00 commit: a219ed08ce84f92bd794e7dc81acfacd454966f7 Author: Patrice Clement gentoo org> AuthorDate: Sun Dec 18 17:46:28 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Dec 18 17:52:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a219ed08 app-shells/hstr: EAPI 6 bump. Convert ebuild away from autotools-utils.eclass and to {autotools,multilib-minimal}.eclass. Package-Manager: portage-2.3.0 app-shells/hstr/hstr-1.21-r1.ebuild | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/app-shells/hstr/hstr-1.21-r1.ebuild b/app-shells/hstr/hstr-1.21-r1.ebuild new file mode 100644 index 00000000..56d9087 --- /dev/null +++ b/app-shells/hstr/hstr-1.21-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools multilib-minimal + +DESCRIPTION="Shell history suggest box" +HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com" +SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + sys-libs/ncurses:0=" + +DEPEND=" + ${RDEPEND} + virtual/pkgconfig" + +DOCS=( CONFIGURATION.md README.md ) + +src_prepare() { + default + sed \ + -e 's:-O2::g' \ + -i src/Makefile.am || die + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf +} + +src_compile() { + multilib-minimal_src_compile +} + +src_install() { + multilib-minimal_src_install +}