Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/rovclock/
Date: Sun, 16 Apr 2017 18:44:37
Message-Id: 1492368232.c2239b59735892e44fc997a44e2f8710e00dbef7.dilfridge@gentoo
1 commit: c2239b59735892e44fc997a44e2f8710e00dbef7
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 13 20:33:05 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 16 18:43:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2239b59
7
8 media-video/rovclock: EAPI bump
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 media-video/rovclock/rovclock-0.6e-r1.ebuild | 29 ++++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/media-video/rovclock/rovclock-0.6e-r1.ebuild b/media-video/rovclock/rovclock-0.6e-r1.ebuild
16 new file mode 100644
17 index 00000000000..99e6304df25
18 --- /dev/null
19 +++ b/media-video/rovclock/rovclock-0.6e-r1.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="Overclocking utility for ATI Radeon cards"
29 +HOMEPAGE="http://www.hasw.net/linux/"
30 +SRC_URI="http://www.hasw.net/linux/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +src_prepare() {
38 + eapply "${FILESDIR}"/${P}-ldflags.patch
39 + default
40 +}
41 +
42 +src_compile() {
43 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
44 +}
45 +
46 +src_install() {
47 + dosbin rovclock
48 + dodoc ChangeLog README
49 +}