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/xplanetFX/
Date: Fri, 19 May 2017 17:08:29
Message-Id: 1495213555.f86b46285509415d6798564f472b3c0ceb826868.voyageur@gentoo
1 commit: f86b46285509415d6798564f472b3c0ceb826868
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 19 17:05:55 2017 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri May 19 17:05:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86b4628
7
8 x11-misc/xplanetFX: 2.6.13 bump
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 x11-misc/xplanetFX/Manifest | 1 +
13 x11-misc/xplanetFX/xplanetFX-2.6.13.ebuild | 62 ++++++++++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/x11-misc/xplanetFX/Manifest b/x11-misc/xplanetFX/Manifest
17 index 4f9ff1c7bd4..f347c3bbed2 100644
18 --- a/x11-misc/xplanetFX/Manifest
19 +++ b/x11-misc/xplanetFX/Manifest
20 @@ -1 +1,2 @@
21 DIST xplanetfx-2.6.12_all.tar.gz 36874773 SHA256 bae39af674fc89b3fbe07ba6271bbf0a1c2ff64bbf63f4b04ff3d6f0bcc4380c SHA512 b2d76f9a8341ab5098a3b09f27f7844673850275f4c577cef344199cdc72f93060eb05786a9111a1fb9f120d747f12cc5793dba6a249141e284a3bff59d4e0fe WHIRLPOOL 7b55425eb7d1f592defd9d47144b7cce6fec682583229e5a4e5e2f407699f17dfc6114763c8df0d5a4bff7e4da034517f02f4e0bfd92201fd4c84597e87f7908
22 +DIST xplanetfx-2.6.13_all.tar.gz 36874849 SHA256 ab5557555af6b5134b53174023709fff2cd64895f930b474eb695222a23c9feb SHA512 dddc3666dd0f802cafd7b917eb513dd662b94617701622eabaaff18cf9277e3faf206eb602eb2af7c117a212b14e1cdbc4a8c11bded8243571ae4afa86f3fe72 WHIRLPOOL 6e734bdcaa6be65d29e31f5659950bde310e564e19ab34a06140f002e09cf8ac75594017f3e844a7edd881a05d25cd34883f53ac8515ae5853361938b580a1b5
23
24 diff --git a/x11-misc/xplanetFX/xplanetFX-2.6.13.ebuild b/x11-misc/xplanetFX/xplanetFX-2.6.13.ebuild
25 new file mode 100644
26 index 00000000000..ef8d834ced6
27 --- /dev/null
28 +++ b/x11-misc/xplanetFX/xplanetFX-2.6.13.ebuild
29 @@ -0,0 +1,62 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 )
36 +
37 +inherit eutils python-r1
38 +
39 +DESCRIPTION="GUI to configure, run or daemonize xplanet with HQ capabilities"
40 +HOMEPAGE="http://mein-neues-blog.de/xplanetFX/"
41 +SRC_URI="http://repository.mein-neues-blog.de:9000/archive/${P/FX/fx}_all.tar.gz"
42 +
43 +LICENSE="WTFPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="libnotify"
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +
49 +DEPEND="${PYTHON_DEPS}"
50 +RDEPEND="${DEPEND}
51 + dev-python/pygtk[${PYTHON_USEDEP}]
52 + media-gfx/imagemagick
53 + sys-devel/bc
54 + x11-misc/xplanet
55 + libnotify? ( x11-libs/libnotify )"
56 +#python
57 +
58 +S="${WORKDIR}/usr"
59 +
60 +src_prepare() {
61 + default
62 +
63 + eapply "${FILESDIR}"/${PN}-2.6.4-gentoo-path.patch
64 + sed -e "s/Application;//" -i share/applications/*desktop || die
65 +
66 + # These will be installed separately
67 + mkdir gentoo || die
68 + mv share/${PN}/{autostart,flipview.py,stars/catalog.py,xplanetFX_gtk,xplanetFX_tray} \
69 + gentoo || die
70 +}
71 +
72 +src_install() {
73 + dobin bin/${PN}
74 + insinto /usr/share/applications
75 + doins share/applications/${PN}.desktop
76 + insinto /usr/share/pixmaps
77 + doins share/pixmaps/*
78 + insinto /usr/share/${PN}
79 + doins -r share/${PN}/*
80 +
81 + exeinto /usr/share/${PN}
82 + doexe gentoo/autostart
83 +
84 + dodoc share/doc/${PN}/{changelog,README}
85 +
86 + python_scriptinto /usr/share/${PN}/stars
87 + python_foreach_impl python_doscript gentoo/catalog.py
88 + python_scriptinto /usr/share/${PN}
89 + python_foreach_impl python_doscript gentoo/{xplanetFX_gtk,xplanetFX_tray}
90 + python_foreach_impl python_domodule gentoo/flipview.py
91 +}