diff options
Diffstat (limited to 'app-misc/celestia/celestia-1.2.4.ebuild')
-rw-r--r-- | app-misc/celestia/celestia-1.2.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-misc/celestia/celestia-1.2.4.ebuild b/app-misc/celestia/celestia-1.2.4.ebuild new file mode 100644 index 000000000000..522882b788f2 --- /dev/null +++ b/app-misc/celestia/celestia-1.2.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/app-misc/celestia/celestia-1.2.4.ebuild,v 1.1 2002/05/04 12:16:44 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Celestia is a free real-time space simulation that lets you experience our universe in three dimensions" +SRC_URI="http://telia.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.shatters.net/celestia" +SLOT="0" + +DEPEND="gtk? ( =x11-libs/gtk+-1.2* =x11-libs/gtkglarea-1.2* ) + gnome? ( =gnome-base/gnome-libs-1.4* ) + virtual/glu >=media-libs/glut-3.7-r2 + media-libs/jpeg >=media-libs/libpng-1.2.1" + +src_compile() { + + local myconf + + # 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 + +} + |