summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-01-15 12:36:47 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-01-15 12:36:47 +0000
commitf65de181100ef6a68242ec311a15b5c699e435e3 (patch)
tree238a54d0836ff1997eb49a0a4c9993200341262d /x11-misc/xplanet
parentRemoved old version. (diff)
downloadgentoo-2-f65de181100ef6a68242ec311a15b5c699e435e3.tar.gz
gentoo-2-f65de181100ef6a68242ec311a15b5c699e435e3.tar.bz2
gentoo-2-f65de181100ef6a68242ec311a15b5c699e435e3.zip
Removed old versions.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/ChangeLog8
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.1.11
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.1.2-r11
-rw-r--r--x11-misc/xplanet/xplanet-1.1.1.ebuild72
-rw-r--r--x11-misc/xplanet/xplanet-1.1.2-r1.ebuild71
5 files changed, 6 insertions, 147 deletions
diff --git a/x11-misc/xplanet/ChangeLog b/x11-misc/xplanet/ChangeLog
index d4b9872a8021..115fdf55f4a8 100644
--- a/x11-misc/xplanet/ChangeLog
+++ b/x11-misc/xplanet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/xplanet
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.56 2005/11/19 13:20:54 killerfox Exp $
+# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.57 2006/01/15 12:36:47 nelchael Exp $
+
+ 15 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org> -xplanet-1.1.1.ebuild,
+ -xplanet-1.1.2-r1.ebuild:
+ Removed old versions.
19 Nov 2005; Rene Nussbaumer <killerfox@gentoo.org> xplanet-1.2.0.ebuild:
Stable on hppa.
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.1.1 b/x11-misc/xplanet/files/digest-xplanet-1.1.1
deleted file mode 100644
index 8ab553b140d4..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.1.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 13d7b2b3899c3af58668058ff951d1d9 xplanet-1.1.1.tar.gz 1181880
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.1.2-r1 b/x11-misc/xplanet/files/digest-xplanet-1.1.2-r1
deleted file mode 100644
index fce04236cd62..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.1.2-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fa9af5fc23da8532172e479a975649b9 xplanet-1.1.2.tar.gz 1185949
diff --git a/x11-misc/xplanet/xplanet-1.1.1.ebuild b/x11-misc/xplanet/xplanet-1.1.1.ebuild
deleted file mode 100644
index 116500825946..000000000000
--- a/x11-misc/xplanet/xplanet-1.1.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.1.1.ebuild,v 1.16 2005/11/01 12:54:55 nelchael 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 ppc hppa ppc64"
-IUSE="gif jpeg X opengl truetype tiff png"
-
-RDEPEND="X? ( virtual/x11 )
- opengl? ( virtual/opengl
- virtual/glut )
- gif? ( media-libs/giflib )
- 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 NEWS ChangeLog TODO
-}
diff --git a/x11-misc/xplanet/xplanet-1.1.2-r1.ebuild b/x11-misc/xplanet/xplanet-1.1.2-r1.ebuild
deleted file mode 100644
index 712bc143f188..000000000000
--- a/x11-misc/xplanet/xplanet-1.1.2-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.1.2-r1.ebuild,v 1.2 2005/11/01 12:54:55 nelchael 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 ~ppc ~hppa ~ppc64"
-IUSE="gif jpeg X opengl truetype tiff png"
-
-RDEPEND="X? ( virtual/x11 )
- opengl? ( virtual/opengl
- virtual/glut )
- gif? ( media-libs/giflib )
- 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="${myconf} --with-gl --with-glut --with-animation" \
- || myconf="${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 "einstall failed"
- dodoc AUTHORS README NEWS ChangeLog TODO
-}