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 B35A9138334 for ; Fri, 20 Jul 2018 06:28:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B506CE0B48; Fri, 20 Jul 2018 06:28:41 +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 7E995E0B48 for ; Fri, 20 Jul 2018 06:28:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 28BAE335CAC for ; Fri, 20 Jul 2018 06:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB89B373 for ; Fri, 20 Jul 2018 06:28:36 +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: <1532068110.5d15f4eb9b71f3fda4808cc2e779cd6d984dbdea.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmamixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmamixer/Manifest x11-plugins/wmamixer/wmamixer-1.0.ebuild X-VCS-Directories: x11-plugins/wmamixer/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 5d15f4eb9b71f3fda4808cc2e779cd6d984dbdea X-VCS-Branch: master Date: Fri, 20 Jul 2018 06:28:36 +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: 6bf4d184-1cdc-47df-b511-81ac63763907 X-Archives-Hash: 024423c0b7fd0f2eac006117efe99e09 commit: 5d15f4eb9b71f3fda4808cc2e779cd6d984dbdea Author: Bernard Cafarelli gentoo org> AuthorDate: Fri Jul 20 06:28:17 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Fri Jul 20 06:28:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d15f4eb x11-plugins/wmamixer: 1.0 bump Package-Manager: Portage-2.3.43, Repoman-2.3.10 x11-plugins/wmamixer/Manifest | 1 + x11-plugins/wmamixer/wmamixer-1.0.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/x11-plugins/wmamixer/Manifest b/x11-plugins/wmamixer/Manifest index 3d115b6e420..5e5951b5d33 100644 --- a/x11-plugins/wmamixer/Manifest +++ b/x11-plugins/wmamixer/Manifest @@ -1 +1,2 @@ DIST wmamixer-0.2.tar.gz 93067 BLAKE2B 9e888b9b3214eee6c8e59da564e36e8f7c1e55df711ebeaaf73300b27b934840994177d003f2be14f40b5e30321c572e82888e030534ccc7cbe0ff12109231d4 SHA512 94f971ac59134f926b637c6c4ef80be1e082b9b81d2e744b921562140e610e958233645c0ee12310086f1aaa3bbb20622c6c92666dac51df3a963e725374583c +DIST wmamixer-1.0.tar.gz 93181 BLAKE2B 16370da2c1f408b3b584a649e1317850963f2446997e1027cfa7b2cdfa1351807761d3981e2a2cc91ef42272df1146550b3943862d1cf03af5f96d83e6c2c42f SHA512 a5eac2ea3f63770f64f6d2c921aec0d38c54e953c7f5bf1d7ba14c510cc21927751d6939571eb3aede2c7bd0e44bfc84f8dd06ae1af0ef71f2bce8f1b6614708 diff --git a/x11-plugins/wmamixer/wmamixer-1.0.ebuild b/x11-plugins/wmamixer/wmamixer-1.0.ebuild new file mode 100644 index 00000000000..3e72430e43b --- /dev/null +++ b/x11-plugins/wmamixer/wmamixer-1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# 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="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 +}