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
commit61df0dfc4751f94d4c53a362e4d70b94da6752fb (patch)
treeef05cdd516ebedb8f61a7eb1a589d342cec02584 /x11-misc/xplanet
parentremove jython (diff)
downloadgentoo-2-61df0dfc4751f94d4c53a362e4d70b94da6752fb.tar.gz
gentoo-2-61df0dfc4751f94d4c53a362e4d70b94da6752fb.tar.bz2
gentoo-2-61df0dfc4751f94d4c53a362e4d70b94da6752fb.zip
Removing another obsolete one now
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.0.31
-rw-r--r--x11-misc/xplanet/xplanet-1.0.3.ebuild73
2 files changed, 0 insertions, 74 deletions
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
-}