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 C3E9259CA5 for ; Mon, 21 Mar 2016 15:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F329821C063; Mon, 21 Mar 2016 15:24:15 +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 2849521C063 for ; Mon, 21 Mar 2016 15:24:15 +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 3BB26340A9C for ; Mon, 21 Mar 2016 15:24:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EAFB866 for ; Mon, 21 Mar 2016 15:24:10 +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: <1458573030.b02e140454b97001ae09db7496cabfd6a093bbe3.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/memwatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/memwatch/memwatch-0.0.2-r1.ebuild X-VCS-Directories: sys-process/memwatch/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b02e140454b97001ae09db7496cabfd6a093bbe3 X-VCS-Branch: master Date: Mon, 21 Mar 2016 15:24: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: 7ac19d7d-5805-4d10-98be-c6a1367f39fb X-Archives-Hash: ff71a59d314388631a59a3120cb81946 commit: b02e140454b97001ae09db7496cabfd6a093bbe3 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 15:09:59 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02e1404 sys-process/memwatch: EAPI 6 bump. Package-Manager: portage-2.2.26 sys-process/memwatch/memwatch-0.0.2-r1.ebuild | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sys-process/memwatch/memwatch-0.0.2-r1.ebuild b/sys-process/memwatch/memwatch-0.0.2-r1.ebuild new file mode 100644 index 0000000..7ac38fb --- /dev/null +++ b/sys-process/memwatch/memwatch-0.0.2-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Interactive memory viewer" +HOMEPAGE="https://bitbucket.org/PascalRD/memwatch/" +SRC_URI="http://unixdev.ru/src/${P}.tar.gz" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-libs/ncurses:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + einfo "Regenerating autotools files..." + ./autogen.sh || die "autogen failed" +} + +src_configure() { + econf +} + +src_compile() { + emake +} + +src_install() { + emake DESTDIR="${D}" install +}