summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-06-15 20:37:43 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-06-15 20:37:43 +0000
commit53c0abad9d93797af75e464613908e261fac52ba (patch)
treeba8bf0899a44e803d7d817d40c6c3e3fee3c3caa /sci-astronomy/stellarium
parentFix 227297, give repoman a nice cup of "Shut the f*ck up" (diff)
downloadgentoo-2-53c0abad9d93797af75e464613908e261fac52ba.tar.gz
gentoo-2-53c0abad9d93797af75e464613908e261fac52ba.tar.bz2
gentoo-2-53c0abad9d93797af75e464613908e261fac52ba.zip
force stable for pointless rev bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-astronomy/stellarium')
-rw-r--r--sci-astronomy/stellarium/ChangeLog6
-rw-r--r--sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild4
-rw-r--r--sci-astronomy/stellarium/stellarium-0.9.1.ebuild60
3 files changed, 7 insertions, 63 deletions
diff --git a/sci-astronomy/stellarium/ChangeLog b/sci-astronomy/stellarium/ChangeLog
index fc722be0e843..41804bc039ae 100644
--- a/sci-astronomy/stellarium/ChangeLog
+++ b/sci-astronomy/stellarium/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-astronomy/stellarium
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.42 2008/06/14 12:15:48 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.43 2008/06/15 20:37:43 mr_bones_ Exp $
+
+ 15 Jun 2008; Michael Sterrett <mr_bones_@gentoo.org>
+ -stellarium-0.9.1.ebuild, stellarium-0.9.1-r1.ebuild:
+ force stable for pointless rev bump.
*stellarium-0.9.1-r1 (14 Jun 2008)
diff --git a/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild b/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild
index 3e04796c1247..08b7afb0f012 100644
--- a/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild
+++ b/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild,v 1.1 2008/06/14 12:15:48 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.9.1-r1.ebuild,v 1.2 2008/06/15 20:37:43 mr_bones_ Exp $
EAPI=1
inherit toolchain-funcs eutils qt4
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/stellarium/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
IUSE="nls"
RDEPEND="virtual/opengl
diff --git a/sci-astronomy/stellarium/stellarium-0.9.1.ebuild b/sci-astronomy/stellarium/stellarium-0.9.1.ebuild
deleted file mode 100644
index b9ec29f5be07..000000000000
--- a/sci-astronomy/stellarium/stellarium-0.9.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.9.1.ebuild,v 1.7 2008/06/12 06:55:18 mr_bones_ Exp $
-
-EAPI=1
-inherit toolchain-funcs eutils qt4
-
-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"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="nls"
-
-RDEPEND="virtual/opengl
- virtual/glu
- media-libs/libpng
- media-libs/freetype
- dev-libs/boost
- media-libs/jpeg
- net-misc/curl
- >=x11-libs/qt-4.2:4
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- >=dev-util/cmake-2.4.6
- nls? ( sys-devel/gettext )
- x11-libs/libXt"
-
-# bug #186194
-QT4_BUILT_WITH_USE_CHECK="opengl"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- if ! use nls ; then
- sed -i \
- -e 's/ENABLE_NLS 1/ENABLE_NLS 0/' \
- CMakeLists.txt \
- || die "sed failed"
- fi
-}
-
-src_compile() {
- CC=$(tc-getCC) \
- CXX=$(tc-getCXX) \
- cmake \
- -DCMAKE_INSTALL_PREFIX=/usr \
- || die "cmake failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- use nls || rm -rf "${D}/usr/share/locale"
- newicon data/icon.bmp ${PN}.bmp
- make_desktop_entry ${PN} Stellarium /usr/share/pixmaps/${PN}.bmp "Education;Science;Astronomy;"
- dodoc AUTHORS ChangeLog README
-}