summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-09-12 01:52:34 +0000
committerMike Frysinger <vapier@gentoo.org>2003-09-12 01:52:34 +0000
commit85c05fc4461269d53711669d000c14591a71508d (patch)
tree45392b89f74dab136a7d468202c0862168d801d4 /x11-misc/xplanet
parentmore kdes to mask (diff)
downloadhistorical-85c05fc4461269d53711669d000c14591a71508d.tar.gz
historical-85c05fc4461269d53711669d000c14591a71508d.tar.bz2
historical-85c05fc4461269d53711669d000c14591a71508d.zip
old
Diffstat (limited to 'x11-misc/xplanet')
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-0.93-r11
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-0.941
-rw-r--r--x11-misc/xplanet/files/digest-xplanet-1.0.01
-rw-r--r--x11-misc/xplanet/xplanet-0.93-r1.ebuild41
-rw-r--r--x11-misc/xplanet/xplanet-0.94.ebuild69
-rw-r--r--x11-misc/xplanet/xplanet-1.0.0.ebuild76
6 files changed, 0 insertions, 189 deletions
diff --git a/x11-misc/xplanet/files/digest-xplanet-0.93-r1 b/x11-misc/xplanet/files/digest-xplanet-0.93-r1
deleted file mode 100644
index 98ae5af16ac5..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-0.93-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e3f8cbcc5dae1c53119b0947f7ff20ae xplanet-0.93.tar.gz 1164083
diff --git a/x11-misc/xplanet/files/digest-xplanet-0.94 b/x11-misc/xplanet/files/digest-xplanet-0.94
deleted file mode 100644
index ea3842cde3a5..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-0.94
+++ /dev/null
@@ -1 +0,0 @@
-MD5 10faa5934cc24f3d913ea100b1df915d xplanet-0.94.tar.gz 1192336
diff --git a/x11-misc/xplanet/files/digest-xplanet-1.0.0 b/x11-misc/xplanet/files/digest-xplanet-1.0.0
deleted file mode 100644
index a49f121af236..000000000000
--- a/x11-misc/xplanet/files/digest-xplanet-1.0.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 6bbbee73ebf0a996933e9d1551132cd5 xplanet-1.0.0.tar.gz 950383
diff --git a/x11-misc/xplanet/xplanet-0.93-r1.ebuild b/x11-misc/xplanet/xplanet-0.93-r1.ebuild
deleted file mode 100644
index a60c90bd4c58..000000000000
--- a/x11-misc/xplanet/xplanet-0.93-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-0.93-r1.ebuild,v 1.10 2003/09/05 23:18:18 msterret Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A program to render images of the earth into the X root window"
-SRC_URI="mirror://sourceforge/xplanet/${P}.tar.gz"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc"
-
-DEPEND="virtual/x11"
-
-src_compile() {
- local myconf
- 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 X \
- && myconf="${myconf} --with-x" \
- || myconf="${myconf} --with-x=no"
-
- ./configure \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --with-freetype=no \
- ${myconf} || die
- # xplanet doesn't like to build parallel
- # This fix taken from the gimp ebuild
- make || die
-}
-
-src_install () {
- make prefix=${D}/usr mandir=${D}/usr/share/man install || die
-}
diff --git a/x11-misc/xplanet/xplanet-0.94.ebuild b/x11-misc/xplanet/xplanet-0.94.ebuild
deleted file mode 100644
index 20bae49fa5e4..000000000000
--- a/x11-misc/xplanet/xplanet-0.94.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-0.94.ebuild,v 1.8 2003/09/05 23:18:18 msterret Exp $
-
-IUSE="gif jpeg X opengl truetype tiff png"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A program to render images of the earth into the X root window"
-SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-
-DEPEND="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* )"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc"
-
-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"
-
-# Compilation fails with freetype enabled, checking upstream
-# use truetype \
-# && myconf="${myconf} --with-freetype" \
-# || myconf="${myconf} --with-freetype=no"
- 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
-}
diff --git a/x11-misc/xplanet/xplanet-1.0.0.ebuild b/x11-misc/xplanet/xplanet-1.0.0.ebuild
deleted file mode 100644
index 74ab2a4f88d4..000000000000
--- a/x11-misc/xplanet/xplanet-1.0.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.0.0.ebuild,v 1.2 2003/09/05 23:18:18 msterret Exp $
-
-IUSE="gif jpeg X opengl truetype tiff png"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A program to render images of the earth into the X root window"
-SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-
-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* )"
-DEPEND="${RDEPEND}"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa"
-
-src_unpack() {
- unpack ${A}
- # fix GCC3.2 include re-ordering bug.
- D=${S}/ dosed '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"
-
-# Compilation fails with freetype enabled, checking upstream
-# use truetype \
-# && myconf="${myconf} --with-freetype" \
-# || myconf="${myconf} --with-freetype=no"
- 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
-}