blob: a8dbba429a1e8455d50692753f67a95a31a282e3 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gaia/gaia-0.1.2.ebuild,v 1.10 2008/06/11 06:55:50 opfer Exp $
inherit eutils
DESCRIPTION="Opensource 3D interface to the planet, based on NASA World Wind data"
HOMEPAGE="http://sourceforge.net/projects/gaia-clean"
SRC_URI="mirror://sourceforge/gaia-clean/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
IUSE="gps doc"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="media-libs/jpeg
media-libs/libpng
>=media-libs/libsdl-1.2
net-misc/curl
virtual/opengl
gps? ( sci-geosciences/gpsd )"
DEPEND="${RDEPEND}
dev-util/scons
doc? ( app-doc/doxygen )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-scons-0.98.patch"
epatch "${FILESDIR}/${P}-gcc43.patch"
epatch "${FILESDIR}/${P}-curl-7.18.patch"
# the binary would fail with a wrong hard coded path for font.png
cd "${S}/programs/gaia/"
epatch "${FILESDIR}/${P}-font_inclusion.patch"
# when linked with --as-needed it will fail checking the deps, so we just
# remove them, as we have our own dependency checks
cd "${S}/programs/gaia/"
epatch "${FILESDIR}/${P}-remove_dep_checks_gaia.patch"
cd "${S}/lib/wwfetch/"
epatch "${FILESDIR}/${P}-remove_dep_checks_wwfetch.patch"
}
src_compile() {
# Due to an error in the build script, the variable CCFLAGS is expected,
# setting it here is simpler than patching
export CCFLAGS=${CFLAGS}
# respect variables from the environment
local myconf="use_env=yes"
if use gps; then
myconf="${myconf} gpsd=yes"
fi
scons ${MAKEOPTS} ${myconf} || die
use doc && doxygen
}
src_install() {
dodir /usr/bin/
dodir /usr/share/gaia/
dodoc TODO README ChangeLog
if use doc; then
insinto /usr/share/doc/${P}/html/
doins "${S}"/doc/html/*
fi
# prefix determines the target directory
export CCFLAGS=${CFLAGS}
scons prefix="${D}/usr" install
}
|