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