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 0090D138330 for ; Sun, 18 Sep 2016 09:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 934D221C054; Sun, 18 Sep 2016 09:58:07 +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 3DE4821C06C for ; Sun, 18 Sep 2016 09:58:07 +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 6E0FE340BE0 for ; Sun, 18 Sep 2016 09:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 021A2248D for ; Sun, 18 Sep 2016 09:58:03 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1474192672.5f23e374f6a8439c97cb44738bc12dff7be787e3.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/gsmartcontrol/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild X-VCS-Directories: sys-apps/gsmartcontrol/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 5f23e374f6a8439c97cb44738bc12dff7be787e3 X-VCS-Branch: master Date: Sun, 18 Sep 2016 09:58:03 +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: 99de0287-8bde-4096-857c-e8e12aeae406 X-Archives-Hash: 7e4fac6ecda1b7a8421c89d83a65c353 commit: 5f23e374f6a8439c97cb44738bc12dff7be787e3 Author: Pacho Ramos gentoo org> AuthorDate: Sun Sep 18 09:48:18 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Sep 18 09:57:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f23e374 sys-apps/gsmartcontrol: Stop relying in eapi4 support for gnome2-utils.eclass Package-Manager: portage-2.3.0 sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild | 24 ++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild b/sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild index 9fa1694..54f8351 100644 --- a/sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild +++ b/sys-apps/gsmartcontrol/gsmartcontrol-0.8.7.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 - +EAPI=6 inherit flag-o-matic gnome2-utils DESCRIPTION="Hard disk drive health inspection tool" @@ -15,25 +14,28 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="test" -COMMON_DEPEND="dev-cpp/gtkmm:2.4 - dev-libs/libpcre - sys-apps/smartmontools" +COMMON_DEPEND=" + dev-cpp/gtkmm:2.4 + dev-libs/libpcre:3 + sys-apps/smartmontools +" RDEPEND="${COMMON_DEPEND} - x11-apps/xmessage" + x11-apps/xmessage +" DEPEND="${COMMON_DEPEND} virtual/pkgconfig - test? ( dev-util/gtk-builder-convert )" + test? ( dev-util/gtk-builder-convert ) +" DOCS="TODO" # See 'dist_doc_DATA' value in Makefile.am src_prepare() { + default append-cxxflags -std=c++11 } src_configure() { - econf \ - --docdir=/usr/share/doc/${PF} \ - $(use test tests) + econf $(use test tests) } src_install() {