diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2006-06-27 14:52:16 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2006-06-27 14:52:16 +0000 |
commit | 6301cf047a2b788b5160bc490eea1bd04b3a194d (patch) | |
tree | 29a7388bf2d1d9cac53e5e4b6afe501506ad9674 /sci-astronomy | |
parent | Marked ppc (diff) | |
download | gentoo-2-6301cf047a2b788b5160bc490eea1bd04b3a194d.tar.gz gentoo-2-6301cf047a2b788b5160bc490eea1bd04b3a194d.tar.bz2 gentoo-2-6301cf047a2b788b5160bc490eea1bd04b3a194d.zip |
New upstream version (fixes bug #138168)
(Portage version: 2.1-r1)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/stellarium/ChangeLog | 9 | ||||
-rw-r--r-- | sci-astronomy/stellarium/files/digest-stellarium-0.8.1 | 3 | ||||
-rw-r--r-- | sci-astronomy/stellarium/stellarium-0.8.1.ebuild | 40 |
3 files changed, 51 insertions, 1 deletions
diff --git a/sci-astronomy/stellarium/ChangeLog b/sci-astronomy/stellarium/ChangeLog index 0f17c5f3b57d..5e7d5ee38449 100644 --- a/sci-astronomy/stellarium/ChangeLog +++ b/sci-astronomy/stellarium/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-astronomy/stellarium # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.20 2006/06/15 19:13:34 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.21 2006/06/27 14:52:16 ribosome Exp $ + +*stellarium-0.8.1 (27 Jun 2006) + + 27 Jun 2006; Olivier Fisette <ribosome@gentoo.org> + +stellarium-0.8.1.ebuild: + New upstream version. GCC 4.1 patch no longer required. (Fixes bug #138168; + thanks to Damien Gombault <desintegr@gmail.com> for reporting.) 15 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> stellarium-0.8.0.ebuild: diff --git a/sci-astronomy/stellarium/files/digest-stellarium-0.8.1 b/sci-astronomy/stellarium/files/digest-stellarium-0.8.1 new file mode 100644 index 000000000000..0218b4fd3dc7 --- /dev/null +++ b/sci-astronomy/stellarium/files/digest-stellarium-0.8.1 @@ -0,0 +1,3 @@ +MD5 1a17e3dca472214e0863ea8621de321d stellarium-0.8.1.tar.gz 18949733 +RMD160 8c8363c8778af7486ccfb48c07550ea7b6659c36 stellarium-0.8.1.tar.gz 18949733 +SHA256 4626a613d41f4033b2352891f5034a58ada8d1ce2feabf87b7c675013e83230a stellarium-0.8.1.tar.gz 18949733 diff --git a/sci-astronomy/stellarium/stellarium-0.8.1.ebuild b/sci-astronomy/stellarium/stellarium-0.8.1.ebuild new file mode 100644 index 000000000000..84a3b42f0cdd --- /dev/null +++ b/sci-astronomy/stellarium/stellarium-0.8.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.8.1.ebuild,v 1.1 2006/06/27 14:52:16 ribosome Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="Stellarium renders 3D photo-realistic skies in real time." +HOMEPAGE="http://stellarium.free.fr/" +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/libsdl + media-libs/libpng + media-libs/sdl-mixer + media-libs/freetype + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + || ( x11-libs/libXt virtual/x11 )" + +src_compile() { + append-flags -fno-strict-aliasing + econf \ + --disable-dependency-tracking \ + $(use_enable nls) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + make_desktop_entry stellarium Stellarium + dodoc AUTHORS ChangeLog README TODO +} |