diff options
author | Jon Portnoy <avenj@gentoo.org> | 2003-07-13 19:30:59 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2003-07-13 19:30:59 +0000 |
commit | 199aabf5dfb7baefe3ff21263b1ae316d6212048 (patch) | |
tree | 200c83dabe98a5c0719eeaa19f6b9cc94f3d787e /app-sci | |
parent | Initial import (diff) | |
download | gentoo-2-199aabf5dfb7baefe3ff21263b1ae316d6212048.tar.gz gentoo-2-199aabf5dfb7baefe3ff21263b1ae316d6212048.tar.bz2 gentoo-2-199aabf5dfb7baefe3ff21263b1ae316d6212048.zip |
Initial import
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/stellarium/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/stellarium/Manifest | 3 | ||||
-rw-r--r-- | app-sci/stellarium/files/digest-stellarium-0.5.1 | 1 | ||||
-rw-r--r-- | app-sci/stellarium/stellarium-0.5.1.ebuild | 35 |
4 files changed, 47 insertions, 1 deletions
diff --git a/app-sci/stellarium/ChangeLog b/app-sci/stellarium/ChangeLog new file mode 100644 index 000000000000..a20aae3ca94c --- /dev/null +++ b/app-sci/stellarium/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-sci/stellarium +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/stellarium/ChangeLog,v 1.1 2003/07/13 19:30:43 avenj Exp $ + +*stellarium-0.5.1 (13 Jul 2003) + + 13 Jul 2003; Jon Portnoy <avenj@gentoo.org> stellarium-0.5.1.ebuild : + Initial import. Submitted in bug 19169 by CJ Kucera + <gentoo@apcalyptech.com>, reviewed by Don Seiler <don@seiler.us>. diff --git a/app-sci/stellarium/Manifest b/app-sci/stellarium/Manifest index 5be3734751cd..32165361755f 100644 --- a/app-sci/stellarium/Manifest +++ b/app-sci/stellarium/Manifest @@ -1,2 +1,3 @@ -MD5 bceb21489d2e007e767a8b54dd6b4cf2 stellarium-0.5.1.ebuild 684 +MD5 5f9ff7dbebe5c39b07ccc72133e790b8 stellarium-0.5.1.ebuild 788 +MD5 0090262dc85462069530c14ca3a146f4 ChangeLog 444 MD5 bcab0b5f5478a8d852f8819a1e1249a8 files/digest-stellarium-0.5.1 69 diff --git a/app-sci/stellarium/files/digest-stellarium-0.5.1 b/app-sci/stellarium/files/digest-stellarium-0.5.1 new file mode 100644 index 000000000000..1f7b3ab21e37 --- /dev/null +++ b/app-sci/stellarium/files/digest-stellarium-0.5.1 @@ -0,0 +1 @@ +MD5 ff9fb7856fec2369fe0de572a05019af stellarium-0.5.1.tar.gz 3089708 diff --git a/app-sci/stellarium/stellarium-0.5.1.ebuild b/app-sci/stellarium/stellarium-0.5.1.ebuild new file mode 100644 index 000000000000..ab57f1eaa26e --- /dev/null +++ b/app-sci/stellarium/stellarium-0.5.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/stellarium/stellarium-0.5.1.ebuild,v 1.1 2003/07/13 19:30:43 avenj Exp $ + +DESCRIPTION="Stellarium renders 3D photo-realistic skies in real time." +HOMEPAGE="http://stellarium.free.fr/" +SRC_URI="http://stellarium.free.fr/download/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="virtual/opengl + app-text/dos2unix" + +S=${WORKDIR}/${P} + +src_unpack() { + # Configure script is in DOS format for some reason + unpack ${A} + cd ${S} + dos2unix configure + chmod 755 configure +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO +} |