diff options
Diffstat (limited to 'x11-misc/xplanet/xplanet-1.0.1.ebuild')
-rw-r--r-- | x11-misc/xplanet/xplanet-1.0.1.ebuild | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/x11-misc/xplanet/xplanet-1.0.1.ebuild b/x11-misc/xplanet/xplanet-1.0.1.ebuild deleted file mode 100644 index 01f512db6659..000000000000 --- a/x11-misc/xplanet/xplanet-1.0.1.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.1.ebuild,v 1.11 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 ~ppc ~sparc alpha ~hppa" -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 -} |