Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mixer_app/, x11-misc/mixer_app/files/
Date: Tue, 26 Jun 2018 21:53:23
Message-Id: 1530049985.829bd74a5da67a35b70cef531c33ac8d34401d74.voyageur@gentoo
1 commit: 829bd74a5da67a35b70cef531c33ac8d34401d74
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Jun 20 19:20:11 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 26 21:53:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=829bd74a
7
8 x11-misc/mixer_app: EAPI7, improve ebuild
9
10 .../mixer_app/files/mixer_app-1.8.0-build.patch | 4 +--
11 x11-misc/mixer_app/mixer_app-1.8.0-r1.ebuild | 35 ++++++++++++++++++++++
12 2 files changed, 37 insertions(+), 2 deletions(-)
13
14 diff --git a/x11-misc/mixer_app/files/mixer_app-1.8.0-build.patch b/x11-misc/mixer_app/files/mixer_app-1.8.0-build.patch
15 index f36ea6e78ec..232a4cc4e9a 100644
16 --- a/x11-misc/mixer_app/files/mixer_app-1.8.0-build.patch
17 +++ b/x11-misc/mixer_app/files/mixer_app-1.8.0-build.patch
18 @@ -1,5 +1,5 @@
19 ---- Makefile
20 -+++ Makefile
21 +--- a/Makefile
22 ++++ b/Makefile
23 @@ -2,32 +2,24 @@
24 # Mixer.app Makefile
25 #
26
27 diff --git a/x11-misc/mixer_app/mixer_app-1.8.0-r1.ebuild b/x11-misc/mixer_app/mixer_app-1.8.0-r1.ebuild
28 new file mode 100644
29 index 00000000000..45d98e6279d
30 --- /dev/null
31 +++ b/x11-misc/mixer_app/mixer_app-1.8.0-r1.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit toolchain-funcs
39 +
40 +MY_P=Mixer.app-${PV}
41 +
42 +DESCRIPTION="mixer_app has volume controllers that can be configured to handle sound sources"
43 +HOMEPAGE="http://www.fukt.bsnet.se/~per/mixer/"
44 +SRC_URI="http://www.fukt.bsnet.se/~per/mixer/${MY_P}.tar.gz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
49 +IUSE=""
50 +
51 +RDEPEND="x11-libs/libX11
52 + x11-libs/libXext
53 + x11-libs/libXpm"
54 +DEPEND="${RDEPEND}
55 + virtual/os-headers
56 + x11-base/xorg-proto"
57 +
58 +S=${WORKDIR}/${MY_P}
59 +
60 +DOCS=( ChangeLog README )
61 +
62 +PATCHES=( "${FILESDIR}"/${P}-build.patch )
63 +
64 +src_compile() {
65 + tc-export CXX
66 + emake
67 +}