Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xplanet/
Date: Sat, 01 Apr 2017 10:25:02
Message-Id: 1491042215.84071cdc3666039fa5287004709f9bb814a69f7a.soap@gentoo
1 commit: 84071cdc3666039fa5287004709f9bb814a69f7a
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 28 18:33:12 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 10:23:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84071cdc
7
8 x11-misc/xplanet: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4319
12
13 x11-misc/xplanet/Manifest | 1 -
14 x11-misc/xplanet/xplanet-1.3.0.ebuild | 75 -----------------------------------
15 2 files changed, 76 deletions(-)
16
17 diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
18 index 0382efbfec5..5c8163e01da 100644
19 --- a/x11-misc/xplanet/Manifest
20 +++ b/x11-misc/xplanet/Manifest
21 @@ -1,2 +1 @@
22 -DIST xplanet-1.3.0.tar.gz 1227385 SHA256 44fb742bb93e5661ea8b11ccabcc12896693e051f3dd5083c9227224c416b442 SHA512 c9f0db21c457d0702f8b1fb6d632838f45e80ea45b9cade80d6ab0ae956fdca03cfeed9582548c69b349a354afc27308309656d7e06ac46bc416c3e1038f8efd WHIRLPOOL e4fe013eeef4868d28f8a53c194f54865dd4cf29137936eb609352fba4a3481e0a6db9664944cb67d9e7896b150b5e640c95136e6b9f33dc4810591316d0371a
23 DIST xplanet-1.3.1.tar.gz 1236035 SHA256 4380d570a8bf27b81fb629c97a636c1673407f4ac4989ce931720078a90aece7 SHA512 06ce3187fbd364f4ccee768fceca559690c905c870e2fb25ca32453ce09c564ba3455ec539f1e3da177de23a0611f767b375efe2e10b601d09313c0d068e35e0 WHIRLPOOL 4c40fac4056654aa195f9955053d2dfba6791e8e2021673f05c334163ee5b1d842e6101447228844573ed41a88f37c0fd96df633716bddeb55c8940941621ad9
24
25 diff --git a/x11-misc/xplanet/xplanet-1.3.0.ebuild b/x11-misc/xplanet/xplanet-1.3.0.ebuild
26 deleted file mode 100644
27 index 9d1eed6bb69..00000000000
28 --- a/x11-misc/xplanet/xplanet-1.3.0.ebuild
29 +++ /dev/null
30 @@ -1,75 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=4
35 -inherit base flag-o-matic
36 -
37 -DESCRIPTION="Render images of the earth into the X root window"
38 -HOMEPAGE="http://xplanet.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
44 -IUSE="gif jpeg png tiff truetype X"
45 -
46 -RDEPEND="gif? ( <media-libs/giflib-4.2 )
47 - jpeg? ( virtual/jpeg )
48 - png? (
49 - media-libs/libpng:0
50 - media-libs/netpbm
51 - )
52 - tiff? ( media-libs/tiff:0 )
53 - truetype? (
54 - media-libs/freetype:2
55 - x11-libs/pango
56 - )
57 - X? (
58 - x11-libs/libX11
59 - x11-libs/libXext
60 - x11-libs/libXScrnSaver
61 - x11-libs/libXt
62 - )"
63 -DEPEND="${RDEPEND}
64 - truetype? ( virtual/pkgconfig )
65 - X? (
66 - x11-proto/scrnsaverproto
67 - x11-proto/xproto
68 - )"
69 -
70 -DOCS="AUTHORS ChangeLog NEWS README TODO"
71 -
72 -src_configure() {
73 - # econf says 'checking pnm.h presence... no'
74 - use png && append-cppflags -I/usr/include/netpbm
75 -
76 - local myconf
77 -
78 - use X \
79 - && myconf+=" --with-x --with-xscreensaver" \
80 - || myconf+=" --with-x=no --with-xscreensaver=no"
81 -
82 - use gif \
83 - && myconf+=" --with-gif" \
84 - || myconf+=" --with-gif=no"
85 -
86 - use jpeg \
87 - && myconf+=" --with-jpeg" \
88 - || myconf+=" --with-jpeg=no"
89 -
90 - use tiff \
91 - && myconf+=" --with-tiff" \
92 - || myconf+=" --with-tiff=no"
93 -
94 - use png \
95 - && myconf+=" --with-png --with-pnm" \
96 - || myconf+=" --with-png=no --with-pnm=no"
97 -
98 - use truetype \
99 - && myconf+=" --with-freetype --with-pango" \
100 - || myconf+=" --with-freetype=no --with-pango=no"
101 -
102 - econf \
103 - --with-cspice=no \
104 - ${myconf}
105 -}