diff options
Diffstat (limited to 'app-misc/celestia/celestia-1.2.4.ebuild')
-rw-r--r-- | app-misc/celestia/celestia-1.2.4.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/app-misc/celestia/celestia-1.2.4.ebuild b/app-misc/celestia/celestia-1.2.4.ebuild deleted file mode 100644 index 985a52dc6105..000000000000 --- a/app-misc/celestia/celestia-1.2.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/celestia/celestia-1.2.4.ebuild,v 1.13 2003/09/05 12:10:36 msterret Exp $ - -inherit flag-o-matic - -IUSE="gtk gnome" - -S=${WORKDIR}/${P} -DESCRIPTION="Celestia is a free real-time space simulation that lets you experience our universe in three dimensions" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.shatters.net/celestia" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86" - -DEPEND="gtk? ( =x11-libs/gtk+-1.2* - <x11-libs/gtkglarea-1.99.0 ) - gnome? ( =gnome-base/gnome-libs-1.4* ) - >=media-libs/glut-3.7-r2 - virtual/glu - media-libs/jpeg - media-libs/libpng" - -src_unpack() { - unpack ${A} - cd ${S} - - patch -p1 < ${FILESDIR}/celestia-gcc3.patch -} - -src_compile() { - local myconf - - filter-flags "-funroll-loops -frerun-loop-opt" - - # currently celestia's "gtk support" requires gnome - use gtk || myconf="--without-gtk" - use gnome || myconf="--without-gtk" - - ./configure --prefix=/usr ${myconf} || die - - emake all || die -} - -src_install() { - make install prefix=${D}/usr - - dodoc AUTHORS COPYING NEWS README TODO controls.txt - dohtml manual/*.html manual/*.css -} |