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 CA3AF138335 for ; Wed, 22 Aug 2018 18:35:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6ADCE09A7; Wed, 22 Aug 2018 18:35:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 780D1E09A2 for ; Wed, 22 Aug 2018 18:35:14 +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 C46F5335C47 for ; Wed, 22 Aug 2018 18:35:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97B833AD for ; Wed, 22 Aug 2018 18:35:10 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1534962902.0ab2c57f59377e34945ecf99b4a85dcc3c8b4386.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/mbrowse/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/mbrowse/mbrowse-0.4.3-r1.ebuild X-VCS-Directories: net-analyzer/mbrowse/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 0ab2c57f59377e34945ecf99b4a85dcc3c8b4386 X-VCS-Branch: master Date: Wed, 22 Aug 2018 18:35: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: 1cdadcac-b55d-4557-871d-d0a1376a6ad3 X-Archives-Hash: cfa28da8b17f796ed2d06ac91996ed95 commit: 0ab2c57f59377e34945ecf99b4a85dcc3c8b4386 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Aug 22 18:29:53 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Aug 22 18:35:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ab2c57f net-analyzer/mbrowse: EAPI bump. Package-Manager: Portage-2.3.48, Repoman-2.3.10 net-analyzer/mbrowse/mbrowse-0.4.3-r1.ebuild | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/net-analyzer/mbrowse/mbrowse-0.4.3-r1.ebuild b/net-analyzer/mbrowse/mbrowse-0.4.3-r1.ebuild new file mode 100644 index 00000000000..daa9bedf0c8 --- /dev/null +++ b/net-analyzer/mbrowse/mbrowse-0.4.3-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="MBrowse is a graphical MIB browser" +HOMEPAGE="https://sourceforge.net/projects/mbrowse/" +SRC_URI="mirror://sourceforge/${PN}/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND=" + dev-libs/glib + net-analyzer/net-snmp:= + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS README ChangeLog ) + +src_prepare() { + default + sed -i \ + -e '/LDFLAGS=/d' \ + acinclude.m4 || die + eautoreconf +}