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: x11-plugins/asclock/
Date: Thu, 22 Feb 2018 22:54:23
Message-Id: 1519340055.515b2e39c12141f3ab943741a25e0f321ed56c27.dilfridge@gentoo
1 commit: 515b2e39c12141f3ab943741a25e0f321ed56c27
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 22:53:58 2018 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 22:54:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515b2e39
7
8 x11-plugins/asclock: EAPI bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 ...{asclock-2.0.12-r1.ebuild => asclock-2.0.12-r2.ebuild} | 15 +++++++++------
13 1 file changed, 9 insertions(+), 6 deletions(-)
14
15 diff --git a/x11-plugins/asclock/asclock-2.0.12-r1.ebuild b/x11-plugins/asclock/asclock-2.0.12-r2.ebuild
16 similarity index 86%
17 rename from x11-plugins/asclock/asclock-2.0.12-r1.ebuild
18 rename to x11-plugins/asclock/asclock-2.0.12-r2.ebuild
19 index eb6bcd3414b..e7b14ca2e97 100644
20 --- a/x11-plugins/asclock/asclock-2.0.12-r1.ebuild
21 +++ b/x11-plugins/asclock/asclock-2.0.12-r2.ebuild
22 @@ -1,7 +1,8 @@
23 -# Copyright 1999-2014 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=3
28 +EAPI=6
29 +
30 inherit eutils toolchain-funcs
31
32 IUSE=""
33 @@ -17,8 +18,10 @@ RDEPEND="${DEPEND}
34 x11-proto/xextproto
35 x11-proto/xproto"
36
37 +PATCHES=( "${FILESDIR}"/${PN}-gcc41.patch )
38 +
39 src_prepare() {
40 - epatch "${FILESDIR}"/${PN}-gcc41.patch
41 + default
42 ln -s themes/classic default_theme
43 }
44
45 @@ -58,7 +61,7 @@ src_install() {
46 insinto ${themesdir}
47 doins -r themes/*
48 dodoc README README.THEMES TODO
49 - cd "${D}"/${themesdir}
50 - rm -f Freeamp/Makefile{,.*}
51 - ln -s classic default_theme
52 + cd "${D}"/${themesdir} || die
53 + rm -f Freeamp/Makefile{,.*} || die
54 + ln -s classic default_theme || die
55 }