diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-10-06 21:47:36 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-10-06 21:47:36 +0000 |
commit | 74b9cb0902e2bdd6c157a9064ee36560c8669664 (patch) | |
tree | 1cd819e7e0e10be6fb56582b9116f291140b2764 /sci-astronomy/stellarium | |
parent | Upstream asked me to remove sessionsaver (diff) | |
download | gentoo-2-74b9cb0902e2bdd6c157a9064ee36560c8669664.tar.gz gentoo-2-74b9cb0902e2bdd6c157a9064ee36560c8669664.tar.bz2 gentoo-2-74b9cb0902e2bdd6c157a9064ee36560c8669664.zip |
version bump
(Portage version: 2.1.2_pre2-r3)
Diffstat (limited to 'sci-astronomy/stellarium')
-rw-r--r-- | sci-astronomy/stellarium/ChangeLog | 8 | ||||
-rw-r--r-- | sci-astronomy/stellarium/files/digest-stellarium-0.8.2 | 3 | ||||
-rw-r--r-- | sci-astronomy/stellarium/stellarium-0.8.2.ebuild | 40 |
3 files changed, 50 insertions, 1 deletions
diff --git a/sci-astronomy/stellarium/ChangeLog b/sci-astronomy/stellarium/ChangeLog index b33fe949e27a..749bfaba210d 100644 --- a/sci-astronomy/stellarium/ChangeLog +++ b/sci-astronomy/stellarium/ChangeLog @@ -1,6 +1,12 @@ # 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.23 2006/07/02 16:16:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stellarium/ChangeLog,v 1.24 2006/10/06 21:47:36 mr_bones_ Exp $ + +*stellarium-0.8.2 (06 Oct 2006) + + 06 Oct 2006; Michael Sterrett <mr_bones_@gentoo.org> + +stellarium-0.8.2.ebuild: + version bump 02 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org> stellarium-0.7.1.ebuild, stellarium-0.8.0.ebuild, stellarium-0.8.1.ebuild: diff --git a/sci-astronomy/stellarium/files/digest-stellarium-0.8.2 b/sci-astronomy/stellarium/files/digest-stellarium-0.8.2 new file mode 100644 index 000000000000..cea090cbe637 --- /dev/null +++ b/sci-astronomy/stellarium/files/digest-stellarium-0.8.2 @@ -0,0 +1,3 @@ +MD5 8f4bcfcf6ad74ab57f1a9fc4f3927527 stellarium-0.8.2.tar.gz 16575379 +RMD160 cd6c8fe909bc247a46d02f0184929aba781ff1b6 stellarium-0.8.2.tar.gz 16575379 +SHA256 0231e6c9ab4bcbe2547e19f7166987f5a916a86a3d690a4c7f1dbec3d1f3825c stellarium-0.8.2.tar.gz 16575379 diff --git a/sci-astronomy/stellarium/stellarium-0.8.2.ebuild b/sci-astronomy/stellarium/stellarium-0.8.2.ebuild new file mode 100644 index 000000000000..cf051169f42c --- /dev/null +++ b/sci-astronomy/stellarium/stellarium-0.8.2.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.2.ebuild,v 1.1 2006/10/06 21:47:36 mr_bones_ Exp $ + +inherit eutils flag-o-matic + +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/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() { + emake DESTDIR="${D}" install || die "emake install failed" + make_desktop_entry stellarium Stellarium + dodoc AUTHORS ChangeLog README TODO +} |