diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-15 00:37:40 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-15 00:37:40 +0000 |
commit | 3bb1eb207637a752ec2928f8abbe25f39b55c657 (patch) | |
tree | 083b8189951065f255fad576bb909675f859e64f /sci-astronomy/stellarium | |
parent | Fixed broken download url provided by upstream. (diff) | |
download | gentoo-2-3bb1eb207637a752ec2928f8abbe25f39b55c657.tar.gz gentoo-2-3bb1eb207637a752ec2928f8abbe25f39b55c657.tar.bz2 gentoo-2-3bb1eb207637a752ec2928f8abbe25f39b55c657.zip |
version bump (bug #105522)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-astronomy/stellarium')
-rw-r--r-- | sci-astronomy/stellarium/ChangeLog | 8 | ||||
-rw-r--r-- | sci-astronomy/stellarium/Manifest | 14 | ||||
-rw-r--r-- | sci-astronomy/stellarium/files/digest-stellarium-0.7.0 | 1 | ||||
-rw-r--r-- | sci-astronomy/stellarium/stellarium-0.7.0.ebuild | 32 |
4 files changed, 43 insertions, 12 deletions
diff --git a/sci-astronomy/stellarium/ChangeLog b/sci-astronomy/stellarium/ChangeLog index d6312bc6206b..723c87a16767 100644 --- a/sci-astronomy/stellarium/ChangeLog +++ b/sci-astronomy/stellarium/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-astronomy/stellarium # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.5 2005/04/22 13:41:36 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.6 2005/09/15 00:37:40 mr_bones_ Exp $ + +*stellarium-0.7.0 (15 Sep 2005) + + 15 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> + +stellarium-0.7.0.ebuild: + version bump (bug #105522) 22 Apr 2005; Danny van Dyk <kugelfang@gentoo.org> stellarium-0.6.2.ebuild: Marked stable on amd64. diff --git a/sci-astronomy/stellarium/Manifest b/sci-astronomy/stellarium/Manifest index 32855190f4d2..3b878303163d 100644 --- a/sci-astronomy/stellarium/Manifest +++ b/sci-astronomy/stellarium/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 14a1e2de9a11b1735815df7ffc0ecc62 ChangeLog 2619 MD5 e4bdac528fd001633aa222d2b42fe048 metadata.xml 219 MD5 27f3b61e92aa8b1a450e3822c1697d57 stellarium-0.6.2.ebuild 637 +MD5 14a1e2de9a11b1735815df7ffc0ecc62 ChangeLog 2619 +MD5 27f3b61e92aa8b1a450e3822c1697d57 stellarium-0.7.0.ebuild 637 +MD5 1dfffb4865faf5906556452f220e5707 files/digest-stellarium-0.7.0 70 MD5 f5da1da443e2c3a6bc8bce43e07e5742 files/digest-stellarium-0.6.2 69 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCaP/k5mJXAu5GbtIRAlP9AJ9bhCioI9DR22MrM3qt+dzcPGMw8wCeIFsN -wWQ6lfiDyoYHeKgtitwx/hA= -=SWGm ------END PGP SIGNATURE----- diff --git a/sci-astronomy/stellarium/files/digest-stellarium-0.7.0 b/sci-astronomy/stellarium/files/digest-stellarium-0.7.0 new file mode 100644 index 000000000000..f8611a9e4aa9 --- /dev/null +++ b/sci-astronomy/stellarium/files/digest-stellarium-0.7.0 @@ -0,0 +1 @@ +MD5 6cee877a8b3be333eecc6de79a12c78d stellarium-0.7.0.tar.gz 16559084 diff --git a/sci-astronomy/stellarium/stellarium-0.7.0.ebuild b/sci-astronomy/stellarium/stellarium-0.7.0.ebuild new file mode 100644 index 000000000000..09854caead68 --- /dev/null +++ b/sci-astronomy/stellarium/stellarium-0.7.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/stellarium-0.7.0.ebuild,v 1.1 2005/09/15 00:37:40 mr_bones_ Exp $ + +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 ~x86" +IUSE="" + +DEPEND="virtual/x11 + virtual/opengl + media-libs/libsdl + sys-devel/gettext" + +src_compile() { + # fails with --disable-nls. Uptream notified at: + # http://sourceforge.net/tracker/index.php?func=detail&aid=1286227&group_id=48857&atid=454373 + econf \ + --disable-dependency-tracking \ + --enable-nls \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL README TODO +} |