summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Seiler <rizzo@gentoo.org>2004-07-30 17:46:24 +0000
committerDon Seiler <rizzo@gentoo.org>2004-07-30 17:46:24 +0000
commit1ecda63cb62f70ebef7e538b64fd7698cad83ac3 (patch)
tree80ffe3a4bb0ca9a5a8527c722159bdb22abff15b /x11-misc/xplanet
parentStable on x86 (diff)
downloadhistorical-1ecda63cb62f70ebef7e538b64fd7698cad83ac3.tar.gz
historical-1ecda63cb62f70ebef7e538b64fd7698cad83ac3.tar.bz2
historical-1ecda63cb62f70ebef7e538b64fd7698cad83ac3.zip
Removing obsolete versions
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/Manifest4
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.0.81
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.1.01
-rw-r--r--x11-misc/xplanet/xplanet-1.0.8.ebuild73
-rw-r--r--x11-misc/xplanet/xplanet-1.1.0.ebuild73
5 files changed, 0 insertions, 152 deletions
diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
index 08b1d7b537db..4176aec3e6d9 100644
--- a/x11-misc/xplanet/Manifest
+++ b/x11-misc/xplanet/Manifest
@@ -3,13 +3,9 @@ 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 be7a1e60ebcb9496f538317fda999289 xplanet-1.0.8.ebuild 1764
-MD5 a0374098512a046ebc9445593b6a2e14 xplanet-1.1.0.ebuild 1777
MD5 b1c98f82fd925439281458b923acafb2 xplanet-1.1.1.ebuild 1783
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 1187571ef0c05b6c37346ba713775f50 files/digest-xplanet-1.0.8 66
-MD5 0ebf8c0c4656320be5d67ef89d98927f files/digest-xplanet-1.1.0 66
MD5 807da98c0435e234011c386780907a04 files/digest-xplanet-1.1.1 66
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.0.8 b/x11-misc/xplanet/files/digest-xplanet-1.0.8
deleted file mode 100644
index e534e0096119..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.0.8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 243988afd8c76d9d4c0ab5201981ab6e xplanet-1.0.8.tar.gz 1175294
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.1.0 b/x11-misc/xplanet/files/digest-xplanet-1.1.0
deleted file mode 100644
index 19e488f34049..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.1.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7fdf32f759ae401471e7d820ed3d7051 xplanet-1.1.0.tar.gz 1176025
diff --git a/x11-misc/xplanet/xplanet-1.0.8.ebuild b/x11-misc/xplanet/xplanet-1.0.8.ebuild
deleted file mode 100644
index f13ab3814f68..000000000000
--- a/x11-misc/xplanet/xplanet-1.0.8.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.8.ebuild,v 1.7 2004/07/18 23:32:32 kloeri 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 ~amd64 ~sparc ~alpha"
-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 INSTALL NEWS ChangeLog
-}
diff --git a/x11-misc/xplanet/xplanet-1.1.0.ebuild b/x11-misc/xplanet/xplanet-1.1.0.ebuild
deleted file mode 100644
index f0bb116ed2e6..000000000000
--- a/x11-misc/xplanet/xplanet-1.1.0.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.1.0.ebuild,v 1.1 2004/07/22 17:22:08 rizzo 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 ~amd64 ~sparc ~alpha"
-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 AUTHORS README COPYING INSTALL NEWS ChangeLog TODO
-}