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 E5DDD138334 for ; Tue, 30 Jul 2019 20:48:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D95FBE07D8; Tue, 30 Jul 2019 20:48:11 +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 BFEA8E07D8 for ; Tue, 30 Jul 2019 20:48:11 +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 D5588348FDD for ; Tue, 30 Jul 2019 20:48:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4C1874B for ; Tue, 30 Jul 2019 20:48:07 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1564519624.1dd944fb6ef06ade266522f8d01e812029e4adbf.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmamixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmamixer/wmamixer-1.0-r1.ebuild X-VCS-Directories: x11-plugins/wmamixer/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 1dd944fb6ef06ade266522f8d01e812029e4adbf X-VCS-Branch: master Date: Tue, 30 Jul 2019 20:48: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2d87826-4843-40fa-815b-ccc315d0c8ba X-Archives-Hash: abf957c2e146b8664f7ce22b5a76f777 commit: 1dd944fb6ef06ade266522f8d01e812029e4adbf Author: Bernard Cafarelli gentoo org> AuthorDate: Tue Jul 30 20:36:43 2019 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Jul 30 20:47:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd944fb x11-plugins/wmamixer: add missing alsa-lib dependency Closes: https://bugs.gentoo.org/690358 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmamixer/wmamixer-1.0-r1.ebuild | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/x11-plugins/wmamixer/wmamixer-1.0-r1.ebuild b/x11-plugins/wmamixer/wmamixer-1.0-r1.ebuild new file mode 100644 index 00000000000..a73c156da7f --- /dev/null +++ b/x11-plugins/wmamixer/wmamixer-1.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="ALSA mixer dockapp, fork of wmsmixer" +HOMEPAGE="https://github.com/gryf/wmamixer" +SRC_URI="https://github.com/gryf/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/alsa-lib + x11-libs/libXpm + x11-libs/libXext + x11-libs/libX11" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +DOCS=( README.rst ) + +src_compile() { + $(tc-getCC) ${CFLAGS} -c -o wmamixer.o wmamixer.c + $(tc-getCC) ${LDFLAGS} -o wmamixer wmamixer.o -lm -lXpm -lXext -lX11 -lasound +} + +src_install() { + dobin wmamixer + einstalldocs +}