Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/sane-frontends/
Date: Wed, 21 Feb 2018 23:56:01
Message-Id: 1519257323.777cef961f7d4d82a3e384938551e9a89db7d1db.asturm@gentoo
1 commit: 777cef961f7d4d82a3e384938551e9a89db7d1db
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 21 21:59:21 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 21 23:55:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=777cef96
7
8 media-gfx/sane-frontends: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 .../sane-frontends/sane-frontends-1.0.14-r1.ebuild | 52 ----------------------
13 1 file changed, 52 deletions(-)
14
15 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
16 deleted file mode 100644
17 index 53d1bee2cb0..00000000000
18 --- a/media-gfx/sane-frontends/sane-frontends-1.0.14-r1.ebuild
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -DESCRIPTION="Scanner Access Now Easy"
27 -HOMEPAGE="http://www.sane-project.org"
28 -SRC_URI="ftp://ftp.sane-project.org/pub/sane/${P}/${P}.tar.gz
29 - ftp://ftp.sane-project.org/pub/sane/old-versions/${P}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
34 -IUSE="gimp"
35 -
36 -RDEPEND=""
37 -DEPEND="media-gfx/sane-backends
38 - gimp? ( media-gfx/gimp )"
39 -
40 -PATCHES=( "${FILESDIR}/MissingCapsFlag.patch" )
41 -
42 -src_configure () {
43 - local myconf=""
44 - use gimp || myconf="--disable-gimp"
45 - use gimp && ! has_version ">=media-gfx/gimp-2" && myconf="--enable-gimp12"
46 - econf \
47 - --datadir=/usr/share/misc \
48 - ${myconf}
49 - emake
50 -}
51 -
52 -src_install () {
53 - local gimpplugindir
54 - local gimptool
55 - emake DESTDIR="${D}" install
56 - if use gimp; then
57 - for gimptool in gimptool gimptool-2.0 gimptool-1.2; do
58 - if [ -x /usr/bin/${gimptool} ]; then
59 - einfo "Setting plugin link for GIMP version $(/usr/bin/${gimptool} --version)"
60 - gimpplugindir=$(/usr/bin/${gimptool} --gimpplugindir)/plug-ins
61 - break
62 - fi
63 - done
64 - if [ "/plug-ins" != "${gimpplugindir}" ]; then
65 - dodir ${gimpplugindir}
66 - dosym xscanimage ${gimpplugindir}/xscanimage
67 - else
68 - ewarn "No idea where to find the gimp plugin directory"
69 - fi
70 - fi
71 - dodoc AUTHORS Changelog NEWS PROBLEMS README
72 -}