From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5AD5F1382C5 for ; Tue, 3 Apr 2018 18:20:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62694E09D4; Tue, 3 Apr 2018 18:20:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BF31E09D4 for ; Tue, 3 Apr 2018 18:20:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BEE61335D67 for ; Tue, 3 Apr 2018 18:20:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 184C225A for ; Tue, 3 Apr 2018 18:20:48 +0000 (UTC) From: "Jonas Stein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Stein" Message-ID: <1522779629.85a7b04de0bb3a1f296c70aa9d71eacd1b3c1ced.jstein@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/sane-frontends/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/sane-frontends/sane-frontends-1.0.14.ebuild X-VCS-Directories: media-gfx/sane-frontends/ X-VCS-Committer: jstein X-VCS-Committer-Name: Jonas Stein X-VCS-Revision: 85a7b04de0bb3a1f296c70aa9d71eacd1b3c1ced X-VCS-Branch: master Date: Tue, 3 Apr 2018 18:20:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f4a615db-149e-4553-8691-40f0b6b98cb9 X-Archives-Hash: 03d22e623e2ed50381b3dc24a7d6645d commit: 85a7b04de0bb3a1f296c70aa9d71eacd1b3c1ced Author: Jonas Stein gentoo org> AuthorDate: Tue Apr 3 18:20:29 2018 +0000 Commit: Jonas Stein gentoo org> CommitDate: Tue Apr 3 18:20:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a7b04d media-gfx/sane-frontends: Drop old Removed obsolete EAPI=0 ebuild from the tree. After stabilization see ticket Closes: https://bugs.gentoo.org/647524 Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../sane-frontends/sane-frontends-1.0.14.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/media-gfx/sane-frontends/sane-frontends-1.0.14.ebuild b/media-gfx/sane-frontends/sane-frontends-1.0.14.ebuild deleted file mode 100644 index 536163b6112..00000000000 --- a/media-gfx/sane-frontends/sane-frontends-1.0.14.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -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" - -DEPEND="media-gfx/sane-backends - gimp? ( media-gfx/gimp )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/MissingCapsFlag.patch" -} - -src_compile() { - local myconf="" - use gimp || myconf="--disable-gimp" - use gimp && ! has_version ">=media-gfx/gimp-2" && myconf="--enable-gimp12" - econf \ - --datadir=/usr/share/misc \ - ${myconf} || die - emake || die "emake failed" -} - -src_install() { - local gimpplugindir - local gimptool - emake DESTDIR="${D}" install || die - 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 /usr/bin/xscanimage ${gimpplugindir}/xscanimage - else - ewarn "No idea where to find the gimp plugin directory" - fi - fi - dodoc AUTHORS Changelog NEWS PROBLEMS README -}