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