summaryrefslogtreecommitdiff
blob: a426c41e12a8d764d44bf5995ad32157e0412528 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.3.2.ebuild,v 1.1 2004/12/24 03:44:58 ribosome Exp $

inherit eutils flag-o-matic gnome2 kde-functions

DESCRIPTION="Celestia is a free real-time space simulation that lets you experience our universe in three dimensions"
HOMEPAGE="http://www.shatters.net/celestia/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE="gnome gtk kde arts"

DEPEND=">=media-libs/glut-3.7.1
	virtual/glu
	media-libs/jpeg
	media-libs/libpng
	dev-lang/lua
	gtk? (	>=x11-libs/gtk+-2.0
			>=x11-libs/gtkglext-1.0 )
	gnome? ( >=gnome-base/libgnomeui-2.0 )
	kde? ( >=kde-base/kdelibs-3.0.5 )"

pkg_setup() {
	# Check for one for the following use flags to be set.
	if use kde; then
		einfo "USE=\"kde\" detected. This will override any gnome/gtk USE preferences."
		export MYMAKE="kde"
	elif use gnome; then
		einfo "USE=\"gnome\" detected."
		export MYMAKE="gnome"
	elif use gtk; then
		einfo "USE=\"gtk\" detected."
		export MYMAKE="gtk"
	else
		eerror "You must set at least one of USE=\"{kde/gnome/gtk}\""
		ewarn "Please set one of the USE flags end re-emerge"
		ewarn "ie. 'env USE=\"kde\" emerge celestia"
		die "No valid USE flags set"
	fi

	# Get X11 implementation
	X11_IMPLEM_P="$(portageq best_version "${ROOT}" virtual/x11)"
	X11_IMPLEM="${X11_IMPLEM_P%-[0-9]*}"
	X11_IMPLEM="${X11_IMPLEM##*\/}"

	einfo "Please note:"
	einfo "if you experience problems building celestia with nvidia drivers,"
	einfo "you can try:"
	einfo "opengl-update ${X11_IMPLEM}"
	einfo "emerge celestia"
	einfo "opengl-update nvidia"
}

src_unpack() {
	unpack ${A}
	cd ${S}

	# adding gcc-3.4 support as posted in
	# (http://bugs.gentoo.org/show_bug.cgi?id=53479#c2)
	epatch ${FILESDIR}/resmanager.h.patch \
	|| die "patching gcc 3.4 support failed"

	if use !arts;
	then
		epatch ${FILESDIR}/celestia-1.3.2-noarts.patch
	fi

	if [ "${MYMAKE}" != "gnome" ]; then
		# alright this snapshot seems to have some trouble with installing a
		# file properly. It wants to install celestia.schemas in / which leads
		# to an ACCESS VIOLATION. Unfortunately this file even gets installed
		# when no gtk/gnome is enabled
		# The following lines prevents this but thinkabout as a dirty hack
		cd ${S}/src/celestia/gtk || die
		sed -i -e 's:@GCONF_SCHEMA_FILE_DIR@:$(pkgdatadir)/schemas:g' \
		Makefile.in || die
		sed -i -e 's:@GCONF_SCHEMA_FILE_DIR@:$(pkgdatadir)/schemas:g' \
		data/Makefile.in || die
	fi
}

src_compile() {
	filter-flags "-funroll-loops -frerun-loop-opt"
	addwrite ${QTDIR}/etc/settings

	if [ "${MYMAKE}" = "kde" ]; then
		set-kdedir 3
		set-qtdir 3
		export kde_widgetdir="$KDEDIR/lib/kde3/plugins/designer"
	fi

	./configure --prefix=/usr \
				--with-lua \
				--with-${MYMAKE} || die

	emake all || die
}

src_install() {
	if [ "${MYMAKE}" = "gnome" ]; then
		gnome2_src_install
	else
		make install prefix=${D}/usr
	fi

	dodoc AUTHORS COPYING README TODO controls.txt
	dohtml manual/*.html manual/*.css
}