summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Seiler <rizzo@gentoo.org>2004-08-06 20:06:12 +0000
committerDon Seiler <rizzo@gentoo.org>2004-08-06 20:06:12 +0000
commit3c3ad83fbd323839c72a96c4b038cae05fbb829b (patch)
treef13cad1beffc94081f6a8e23b0609208da6eb709 /x11-misc/xplanet
parentPut ~hppa back into the mix, so I can take out 1.0.1 (diff)
downloadhistorical-3c3ad83fbd323839c72a96c4b038cae05fbb829b.tar.gz
historical-3c3ad83fbd323839c72a96c4b038cae05fbb829b.tar.bz2
historical-3c3ad83fbd323839c72a96c4b038cae05fbb829b.zip
forgot cvs remove
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/Manifest1
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.0.11
-rw-r--r--x11-misc/xplanet/xplanet-1.0.1.ebuild73
3 files changed, 0 insertions, 75 deletions
diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
index b0e644403fa3..5e9c62d15d9b 100644
--- a/x11-misc/xplanet/Manifest
+++ b/x11-misc/xplanet/Manifest
@@ -1,7 +1,6 @@
MD5 ffcff1c6221e9bbfe642dab850ad0a43 ChangeLog 5421
MD5 dd3b8f368e1d246069cd15aa9867782b metadata.xml 241
MD5 1f4aaace3d6b893fea3ed20a14eced3d xplanet-0.94-r1.ebuild 1938
-MD5 5d911a36bedd2f6df911043c3c830538 xplanet-1.0.1.ebuild 1796
MD5 6d4554da94353c36adca6e7ba0a25b4c xplanet-1.1.1.ebuild 1792
MD5 d977ccdeaa9865add9959757f7d0acd9 files/0.94-gcc3.patch 329
MD5 8f91c563012b8a0cb7bc11bd0c469a86 files/digest-xplanet-0.94-r1 65
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.0.1 b/x11-misc/xplanet/files/digest-xplanet-1.0.1
deleted file mode 100644
index 9a27f6ed66d2..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 402fe65bece7adf2fcbf1c0df1e59602 xplanet-1.0.1.tar.gz 951540
diff --git a/x11-misc/xplanet/xplanet-1.0.1.ebuild b/x11-misc/xplanet/xplanet-1.0.1.ebuild
deleted file mode 100644
index 01f512db6659..000000000000
--- a/x11-misc/xplanet/xplanet-1.0.1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.0.1.ebuild,v 1.11 2004/06/28 20:29:40 agriffis Exp $
-
-DESCRIPTION="A program to render images of the earth into the X root window"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-DEPEND=">=sys-apps/sed-4"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~ppc ~sparc alpha ~hppa"
-IUSE="gif jpeg X opengl truetype tiff png"
-
-RDEPEND="virtual/x11
- opengl? ( virtual/opengl
- media-libs/glut )
- gif? ( media-libs/giflib
- media-libs/libungif )
- jpeg? ( media-libs/jpeg )
- tiff? ( media-libs/tiff )
- png? ( media-libs/libpng )
- truetype? ( =media-libs/freetype-2* )"
-
-src_unpack() {
- unpack ${A}
- # fix GCC3.2 include re-ordering bug.
- cd ${S}
- sed -i 's,-I$prefix/include,,' configure
-}
-
-src_compile() {
- local myconf
-
- use X \
- && myconf="$myconf --with-x" \
- || myconf="$myconf --with-x=no"
-
- use opengl \
- && myconf="--with-gl --with-glut --with-animation" \
- || myconf="--with-gl=no --with-glut=no --with-animation=no"
-
- use gif \
- && myconf="$myconf --with-gif" \
- || myconf="$myconf --with-gif=no"
-
- use jpeg \
- && myconf="${myconf} --with-jpeg" \
- || myconf="${myconf} --with-jpeg=no"
-
- use tiff \
- && myconf="${myconf} --with-tiff" \
- || myconf="${myconf} --with-tiff=no"
-
- use png \
- && myconf="${myconf} --with-png --with-pnm" \
- || myconf="${myconf} --with-png=no --with-pnm=no"
-
- use truetype \
- && myconf="${myconf} --with-freetype" \
- || myconf="${myconf} --with-freetype=no"
-
- econf ${myconf} || die
-
- # xplanet doesn't like to build parallel
- make || die
-}
-
-src_install () {
- einstall || die
-
- dodoc README COPYING CREDITS FAQ INSTALL NEWS ChangeLog README.config
-}