summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarri Nieminen <moikkis@gmail.com>2017-03-06 17:24:23 +0200
committerDavid Seifert <soap@gentoo.org>2017-03-07 10:12:39 +0100
commit54c623a505f0513a84311efb557a622505bded5a (patch)
tree4ea693c146fc324177763ff8af1626522b6d25fb /x11-misc
parentx11-misc/xosview: Remove old (diff)
downloadgentoo-54c623a505f0513a84311efb557a622505bded5a.tar.gz
gentoo-54c623a505f0513a84311efb557a622505bded5a.tar.bz2
gentoo-54c623a505f0513a84311efb557a622505bded5a.zip
x11-misc/xplanet: Remove old
Package-Manager: Portage-2.3.4, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4142
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xplanet/xplanet-1.3.1.ebuild83
1 files changed, 0 insertions, 83 deletions
diff --git a/x11-misc/xplanet/xplanet-1.3.1.ebuild b/x11-misc/xplanet/xplanet-1.3.1.ebuild
deleted file mode 100644
index e858bbc0a61f..000000000000
--- a/x11-misc/xplanet/xplanet-1.3.1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic
-
-DESCRIPTION="Render images of the earth into the X root window"
-HOMEPAGE="http://xplanet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="gif jpeg png tiff truetype X"
-
-RDEPEND="
- gif? ( media-libs/giflib:= )
- jpeg? ( virtual/jpeg:* )
- png? (
- media-libs/libpng:0
- media-libs/netpbm
- )
- tiff? ( media-libs/tiff:0 )
- truetype? (
- media-libs/freetype:2
- x11-libs/pango
- )
- X? (
- x11-libs/libX11
- x11-libs/libXScrnSaver
- x11-libs/libXext
- x11-libs/libXt
- )
-"
-DEPEND="
- ${RDEPEND}
- truetype? ( virtual/pkgconfig )
- X? (
- x11-proto/scrnsaverproto
- x11-proto/xproto
- )
-"
-
-DOCS="AUTHORS ChangeLog NEWS README TODO"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-giflib.patch
-}
-
-src_configure() {
- # econf says 'checking pnm.h presence... no'
- use png && append-cppflags -I/usr/include/netpbm
-
- local myconf
-
- use X \
- && myconf+=" --with-x --with-xscreensaver" \
- || myconf+=" --with-x=no --with-xscreensaver=no"
-
- use gif \
- && myconf+=" --with-gif" \
- || myconf+=" --with-gif=no"
-
- use jpeg \
- && myconf+=" --with-jpeg" \
- || myconf+=" --with-jpeg=no"
-
- use tiff \
- && myconf+=" --with-tiff" \
- || myconf+=" --with-tiff=no"
-
- use png \
- && myconf+=" --with-png --with-pnm" \
- || myconf+=" --with-png=no --with-pnm=no"
-
- use truetype \
- && myconf+=" --with-freetype --with-pango" \
- || myconf+=" --with-freetype=no --with-pango=no"
-
- econf \
- --with-cspice=no \
- ${myconf}
-}