summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-02-21 22:59:21 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-02-22 00:55:23 +0100
commit777cef961f7d4d82a3e384938551e9a89db7d1db (patch)
treeb0ad7e055a7b00ba001ca8d5a91966d056ced99e
parentdev-libs/mm: stable 1.4.2-r2 for ppc/ppc64, bug #648230 (diff)
downloadgentoo-777cef96.tar.gz
gentoo-777cef96.tar.bz2
gentoo-777cef96.zip
media-gfx/sane-frontends: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
-rw-r--r--media-gfx/sane-frontends/sane-frontends-1.0.14-r1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/media-gfx/sane-frontends/sane-frontends-1.0.14-r1.ebuild b/media-gfx/sane-frontends/sane-frontends-1.0.14-r1.ebuild
deleted file mode 100644
index 53d1bee2cb08..000000000000
--- a/media-gfx/sane-frontends/sane-frontends-1.0.14-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Scanner Access Now Easy"
-HOMEPAGE="http://www.sane-project.org"
-SRC_URI="ftp://ftp.sane-project.org/pub/sane/${P}/${P}.tar.gz
- ftp://ftp.sane-project.org/pub/sane/old-versions/${P}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="gimp"
-
-RDEPEND=""
-DEPEND="media-gfx/sane-backends
- gimp? ( media-gfx/gimp )"
-
-PATCHES=( "${FILESDIR}/MissingCapsFlag.patch" )
-
-src_configure () {
- local myconf=""
- use gimp || myconf="--disable-gimp"
- use gimp && ! has_version ">=media-gfx/gimp-2" && myconf="--enable-gimp12"
- econf \
- --datadir=/usr/share/misc \
- ${myconf}
- emake
-}
-
-src_install () {
- local gimpplugindir
- local gimptool
- emake DESTDIR="${D}" install
- if use gimp; then
- for gimptool in gimptool gimptool-2.0 gimptool-1.2; do
- if [ -x /usr/bin/${gimptool} ]; then
- einfo "Setting plugin link for GIMP version $(/usr/bin/${gimptool} --version)"
- gimpplugindir=$(/usr/bin/${gimptool} --gimpplugindir)/plug-ins
- break
- fi
- done
- if [ "/plug-ins" != "${gimpplugindir}" ]; then
- dodir ${gimpplugindir}
- dosym xscanimage ${gimpplugindir}/xscanimage
- else
- ewarn "No idea where to find the gimp plugin directory"
- fi
- fi
- dodoc AUTHORS Changelog NEWS PROBLEMS README
-}