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-themes/goddard-backgrounds/
Date: Sun, 30 Jul 2017 07:27:31
Message-Id: 1501399616.3d1db239f90322c012c9199343dfdb4999fbacbf.dilfridge@gentoo
1 commit: 3d1db239f90322c012c9199343dfdb4999fbacbf
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 30 06:58:34 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 30 07:26:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d1db239
7
8 x11-themes/goddard-backgrounds: EAPI bump, bug 605728
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 .../goddard-backgrounds-13.0.0.3-r1.ebuild | 43 ++++++++++++++++++++++
13 1 file changed, 43 insertions(+)
14
15 diff --git a/x11-themes/goddard-backgrounds/goddard-backgrounds-13.0.0.3-r1.ebuild b/x11-themes/goddard-backgrounds/goddard-backgrounds-13.0.0.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..25d1096a950
18 --- /dev/null
19 +++ b/x11-themes/goddard-backgrounds/goddard-backgrounds-13.0.0.3-r1.ebuild
20 @@ -0,0 +1,43 @@
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 versionator rpm
27 +
28 +SRC_PATH=development/15/source/SRPMS
29 +FEDORA=15
30 +
31 +MY_P="${PN}-$(get_version_component_range 1-3)"
32 +
33 +DESCRIPTION="Fedora official background artwork"
34 +HOMEPAGE="https://fedoraproject.org/wiki/F13_Artwork"
35 +
36 +SRC_URI="mirror://fedora-dev/${SRC_PATH}/${PN}-$(replace_version_separator 3 -).fc${FEDORA}.src.rpm"
37 +
38 +LICENSE="CC-BY-SA-2.0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE=""
41 +
42 +RDEPEND=""
43 +DEPEND=""
44 +
45 +S="${WORKDIR}/${MY_P}"
46 +
47 +SLOT="0"
48 +
49 +src_unpack() {
50 + rpm_src_unpack
51 +
52 + # as of 2017-07-28 rpm.eclass does not unpack the further lzma
53 + # file automatically.
54 + unpack ./${MY_P}.tar.lzma
55 +}
56 +
57 +src_compile() { :; }
58 +src_test() { :; }
59 +
60 +src_install() {
61 + # The install targets are serial anyway.
62 + emake -j1 DESTDIR="${D}" install
63 +}