summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Seiler <rizzo@gentoo.org>2004-07-30 21:06:07 +0000
committerDon Seiler <rizzo@gentoo.org>2004-07-30 21:06:07 +0000
commit7495f32cea9b9b4353b682c8ddd037ce32ee1988 (patch)
treea50c8750e84d8266cffe8ee0262f707422f0ab71 /x11-misc/xplanet
parentremove jython (diff)
downloadhistorical-7495f32cea9b9b4353b682c8ddd037ce32ee1988.tar.gz
historical-7495f32cea9b9b4353b682c8ddd037ce32ee1988.tar.bz2
historical-7495f32cea9b9b4353b682c8ddd037ce32ee1988.zip
Removing another obsolete one now
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/Manifest2
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.0.31
-rw-r--r--x11-misc/xplanet/xplanet-1.0.3.ebuild73
3 files changed, 0 insertions, 76 deletions
diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
index 0c7f5a24d54d..1b0e0151e99f 100644
--- a/x11-misc/xplanet/Manifest
+++ b/x11-misc/xplanet/Manifest
@@ -2,10 +2,8 @@ MD5 71da43df1662cb4d534f0d87bb9fdfa1 ChangeLog 4998
MD5 dd3b8f368e1d246069cd15aa9867782b metadata.xml 241
MD5 1f4aaace3d6b893fea3ed20a14eced3d xplanet-0.94-r1.ebuild 1938
MD5 5d911a36bedd2f6df911043c3c830538 xplanet-1.0.1.ebuild 1796
-MD5 0b68e326646b21becda8c2d3b9efc90e xplanet-1.0.3.ebuild 1784
MD5 39d9984f0402af2c7e0124329baf539a xplanet-1.1.1.ebuild 1785
MD5 d977ccdeaa9865add9959757f7d0acd9 files/0.94-gcc3.patch 329
MD5 8f91c563012b8a0cb7bc11bd0c469a86 files/digest-xplanet-0.94-r1 65
MD5 ad06a8c07b9a4ae7dd405ac2a2632415 files/digest-xplanet-1.0.1 65
-MD5 644dc5f6094b07739558df5295c25d20 files/digest-xplanet-1.0.3 66
MD5 807da98c0435e234011c386780907a04 files/digest-xplanet-1.1.1 66
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.0.3 b/x11-misc/xplanet/files/digest-xplanet-1.0.3
deleted file mode 100644
index 25df3df786c3..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.0.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 85256215063485b956f3eec6090b6be3 xplanet-1.0.3.tar.gz 1128319
diff --git a/x11-misc/xplanet/xplanet-1.0.3.ebuild b/x11-misc/xplanet/xplanet-1.0.3.ebuild
deleted file mode 100644
index 5782f43bb6d4..000000000000
--- a/x11-misc/xplanet/xplanet-1.0.3.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.3.ebuild,v 1.9 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 sparc ~amd64"
-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
-}