summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-01-12 15:12:14 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-01-12 15:12:14 +0000
commit5617065be6fde18bc1869a7ff0f7751f4e105e53 (patch)
treee2db91412b0b7e7f7f080734489ecf35204a8db6 /app-sci/lightspeed
parentInitial Version. (diff)
downloadgentoo-2-5617065be6fde18bc1869a7ff0f7751f4e105e53.tar.gz
gentoo-2-5617065be6fde18bc1869a7ff0f7751f4e105e53.tar.bz2
gentoo-2-5617065be6fde18bc1869a7ff0f7751f4e105e53.zip
Inital Version
Diffstat (limited to 'app-sci/lightspeed')
-rw-r--r--app-sci/lightspeed/ChangeLog10
-rw-r--r--app-sci/lightspeed/files/digest-lightspeed-1.2a2
-rw-r--r--app-sci/lightspeed/lightspeed-1.2a.ebuild44
3 files changed, 56 insertions, 0 deletions
diff --git a/app-sci/lightspeed/ChangeLog b/app-sci/lightspeed/ChangeLog
new file mode 100644
index 000000000000..fd8f0669a33f
--- /dev/null
+++ b/app-sci/lightspeed/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-sci/snns
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/lightspeed/ChangeLog,v 1.1 2003/01/12 15:12:14 mholzer Exp $
+
+*lightspeed-1.2a (12 Jan 2003)
+
+ 12 Jan 2003; Marin Holzer <mholzer@gentoo.org> lightspeed-1.2a.ebuild
+ files/digest-lightspeed-1.2a ChangeLog :
+ Added initial Version submitted by pez@apocalyptech.com in #13029
+
diff --git a/app-sci/lightspeed/files/digest-lightspeed-1.2a b/app-sci/lightspeed/files/digest-lightspeed-1.2a
new file mode 100644
index 000000000000..cd42132c3cfc
--- /dev/null
+++ b/app-sci/lightspeed/files/digest-lightspeed-1.2a
@@ -0,0 +1,2 @@
+MD5 d6162f8b200db8ebfade791a71a439c0 lightspeed-1.2a.tar.gz 163764
+MD5 93a5cc2601f6eead110d933f2bd452f0 objects-1.tar.gz 767805
diff --git a/app-sci/lightspeed/lightspeed-1.2a.ebuild b/app-sci/lightspeed/lightspeed-1.2a.ebuild
new file mode 100644
index 000000000000..19d479c41705
--- /dev/null
+++ b/app-sci/lightspeed/lightspeed-1.2a.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/lightspeed/lightspeed-1.2a.ebuild,v 1.1 2003/01/12 15:12:14 mholzer Exp $
+
+DESCRIPTION="Light Speed! is an OpenGL-based program developed to illustrate the effects of special relativity on the appearance of moving objects."
+HOMEPAGE="http://lightspeed.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
+ mirror://sourceforge/${PN}/objects-1.tar.gz"
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~x86"
+
+IUSE="png tiff"
+DEPEND="virtual/opengl
+ =x11-libs/gtkglarea-1.2.3-r1
+ >=x11-libs/gtk+-1.0.1
+ png? ( media-libs/libpng )
+ tiff? ( media-libs/tiff )"
+#RDEPEND=""
+S="${WORKDIR}/${P}"
+S2="${WORKDIR}/objects"
+
+src_compile() {
+ econf
+ emake || die
+}
+
+src_install() {
+ einstall
+ dodoc AUTHORS COPYING ChangeLog INSTALL MATH NEWS README TODO
+ cd ${S2}
+ mv README objects-README
+ dodoc objects-README
+ insinto /usr/share/${PN}
+ doins *.3ds *.lwo
+}
+
+pkg_postinst() {
+ einfo
+ einfo "Some 3d models have been placed in /usr/share/${PN}"
+ einfo "You can load them in Light Speed! from the File menu."
+ einfo
+}
+