diff --git a/x11-apps/spotlighter/Manifest b/x11-apps/spotlighter/Manifest deleted file mode 100644 index 6ba20f7..0000000 --- a/x11-apps/spotlighter/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST spotlighter-0.3.tar.gz 432482 SHA256 a40062230ec66b5312d59c84a26a1a183f7bd5b02dfd9ddbc98189466dcfa92b SHA512 9773747981ff02a39999410883c94cd794b64b48f348fdac1bcae33ab4816328e411a528b0aa2c27e94cee72347657d8e19185d65d238d29d5127fa372243cfc WHIRLPOOL f6de353d99713fa40ac67487591237095ec043fbc25d1295e16f2db4bd101a7e46b2dfed1b202984adc91b4a2bb057343a26d70b49138f6b0365e3fee180d894 diff --git a/x11-apps/spotlighter/spotlighter-0.3.ebuild b/x11-apps/spotlighter/spotlighter-0.3.ebuild deleted file mode 100644 index 531ce72..0000000 --- a/x11-apps/spotlighter/spotlighter-0.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -# TODO: Check for work with new cairo -# with current stable - it segfaults -# Also this deps possibly not needed: -# sci-libs/gsl - -EAPI=5 - -inherit eutils - -DESCRIPTION="Shows a movable and resizable spotlight on the screen" -HOMEPAGE="http://code.google.com/p/ardesia/" -SRC_URI="http://ardesia.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -COMMON_DEPEND="sys-devel/gettext - x11-libs/gtk+:3" -DEPEND="${COMMON_DEPEND} - dev-util/intltool" -RDEPEND="${COMMON_DEPEND} - dev-libs/atk - media-libs/fontconfig" - -src_prepare() { - # Upstream test is broken in case when - # both GTK+-2 and GTK+-3 installed - sed -i -e '/pkg_config_args=/s/gthread-2.0//' configure || die 'sed on configure failed' - - # Fix desktop file - sed -i \ - -e '/Version/d' \ - -e '/Icon/s/.svg//' \ - -e '/Categories/s/$/;/' \ - desktop/spotlighter.desktop.in || die 'sed on desktop/spotlighter.desktop.in failed' - - sed -i -e '/#ifdef ENABLE_NLS/a#include /' src/spotlighter.h || die 'sed on spotlighter.h failed' - - epatch_user -} - -src_configure() { - # Disable compiling GTK+ test program - econf --disable-gtktest -} - -src_install() { - # --docdir in configure does not work, so - use it here - emake DESTDIR="${D}" spotlighterdocdir="${EPREFIX}/usr/share/doc/${PF}" install - dodoc TODO -}