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 9AC5F139695 for ; Sat, 4 Mar 2017 00:46:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF100E0BC5; Sat, 4 Mar 2017 00:46:10 +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 AAEADE0BB2 for ; Sat, 4 Mar 2017 00:46:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 85D7D3417B5 for ; Sat, 4 Mar 2017 00:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E60DA5B86 for ; Sat, 4 Mar 2017 00:46:07 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1488588355.186a0830b77a03e94a40f4e8fc216946c48f2914.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pnmixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pnmixer/pnmixer-9999.ebuild X-VCS-Directories: media-sound/pnmixer/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 186a0830b77a03e94a40f4e8fc216946c48f2914 X-VCS-Branch: master Date: Sat, 4 Mar 2017 00:46:07 +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: 1bcb4a1a-a4ed-4cd2-ad01-e1baed42e2cd X-Archives-Hash: b2a7d24c6f5d6ff284709093b030e457 commit: 186a0830b77a03e94a40f4e8fc216946c48f2914 Author: Julian Ospald posteo de> AuthorDate: Thu Mar 2 22:50:23 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Mar 4 00:45:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=186a0830 media-sound/pnmixer: fix live ebuild media-sound/pnmixer/pnmixer-9999.ebuild | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/media-sound/pnmixer/pnmixer-9999.ebuild b/media-sound/pnmixer/pnmixer-9999.ebuild index 472ca575804..9abf5137754 100644 --- a/media-sound/pnmixer/pnmixer-9999.ebuild +++ b/media-sound/pnmixer/pnmixer-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 WANT_LIBTOOL=none -inherit autotools eutils gnome2-utils git-r3 +inherit cmake-utils gnome2-utils git-r3 DESCRIPTION="Volume mixer for the system tray" HOMEPAGE="https://github.com/nicklan/pnmixer" @@ -15,27 +15,23 @@ EGIT_BRANCH="master" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="debug libnotify" +IUSE="libnotify" RDEPEND="dev-libs/glib:2 media-libs/alsa-lib - >=x11-libs/gtk+-3.6:3 + >=x11-libs/gtk+-3.12:3 x11-libs/libX11 libnotify? ( x11-libs/libnotify )" DEPEND="${RDEPEND} - dev-util/intltool + sys-devel/gettext virtual/pkgconfig" -src_prepare() { - eautoreconf -} - src_configure() { - econf \ - $(use_with libnotify) \ - $(use_enable debug) \ - --enable-minimal-flags \ - --with-gtk3 + local mycmakeargs=( + -DWITH_LIBNOTIFY="$(usex libnotify)" + ) + + cmake-utils_src_configure } pkg_preinst() {