blob: 7fd20ea87c28279a57ef48379626e07b2589aac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic
DESCRIPTION="Render images of the earth into the X root window"
HOMEPAGE="http://xplanet.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
IUSE="gif jpeg png tiff truetype X"
RDEPEND="
gif? ( media-libs/giflib:= )
jpeg? ( virtual/jpeg:0 )
png? (
media-libs/libpng:0=
media-libs/netpbm
)
tiff? ( media-libs/tiff:0 )
truetype? (
media-libs/freetype:2
x11-libs/pango
)
X? (
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXext
x11-libs/libXt
)
"
DEPEND="
${RDEPEND}
truetype? ( virtual/pkgconfig )
X? ( x11-base/xorg-proto )
"
PATCHES=(
"${FILESDIR}"/${P}-giflib.patch
"${FILESDIR}"/${P}-remove-null-comparison.patch
)
src_configure() {
# econf says 'checking pnm.h presence... no'
use png && append-cppflags -I"${EPREFIX}"/usr/include/netpbm
local myconf=()
use X \
&& myconf+=( --with-x --with-xscreensaver ) \
|| myconf+=( --with-x=no --with-xscreensaver=no )
use gif \
&& myconf+=( --with-gif ) \
|| myconf+=( --with-gif=no )
use jpeg \
&& myconf+=( --with-jpeg ) \
|| myconf+=( --with-jpeg=no )
use tiff \
&& myconf+=( --with-tiff ) \
|| myconf+=( --with-tiff=no )
use png \
&& myconf+=( --with-png --with-pnm ) \
|| myconf+=( --with-png=no --with-pnm=no )
use truetype \
&& myconf+=( --with-freetype --with-pango ) \
|| myconf+=( --with-freetype=no --with-pango=no )
econf \
--with-cspice=no \
"${myconf[@]}"
}
|