blob: c86a8f784a88ed5db8ddaa8298c88629bdf9d8ce (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.10.2.ebuild,v 1.8 2009/11/13 18:04:08 mr_bones_ Exp $
EAPI=2
inherit cmake-utils eutils
DESCRIPTION="Stellarium renders 3D photo-realistic skies in real time."
HOMEPAGE="http://www.stellarium.org/"
SRC_URI="mirror://sourceforge/stellarium/${P}.tar.gz"
LICENSE="GPL-2 BitstreamVera"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="nls"
RESTRICT="test"
RDEPEND="virtual/opengl
virtual/glu
media-libs/libpng
media-libs/freetype:2
media-libs/jpeg
x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-script:4
x11-libs/qt-opengl:4
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
dev-libs/boost
>=dev-util/cmake-2.4.7
nls? ( sys-devel/gettext )
x11-libs/libXt"
src_configure() {
mycmakeargs=$(cmake-utils_use_enable nls NLS)
CMAKE_IN_SOURCE_BUILD=1 cmake-utils_src_configure
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon doc/images/stellarium-logo.png ${PN}.png
make_desktop_entry ${PN} Stellarium ${PN} "Education;Science;Astronomy;"
dodoc AUTHORS ChangeLog README
}
|