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 704A31382C5 for ; Sun, 4 Mar 2018 20:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA22E087D; Sun, 4 Mar 2018 20:05:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3B64CE087D for ; Sun, 4 Mar 2018 20:05:10 +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 8A345335CF7 for ; Sun, 4 Mar 2018 20:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB3EB23D for ; Sun, 4 Mar 2018 20:05:06 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1520193879.272237f11af8a213eb79833552d82e010d4f5744.asturm@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-r2.ebuild X-VCS-Directories: media-gfx/sane-frontends/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 272237f11af8a213eb79833552d82e010d4f5744 X-VCS-Branch: master Date: Sun, 4 Mar 2018 20:05:06 +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: 7a66dafa-a640-4e74-89fc-744c80fc888a X-Archives-Hash: 8d8ecb8fca7095340aa4644270c0698b commit: 272237f11af8a213eb79833552d82e010d4f5744 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 4 19:04:54 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 4 20:04:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272237f1 media-gfx/sane-frontends: Drop 1.0.14-r2 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../sane-frontends/sane-frontends-1.0.14-r2.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild b/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild deleted file mode 100644 index 30d53deebbe..00000000000 --- a/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild +++ /dev/null @@ -1,55 +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=" - dev-libs/glib:2 - x11-libs/gtk+:2 -" -DEPEND="${RDEPEND} - media-gfx/sane-backends - gimp? ( media-gfx/gimp:2 ) -" - -DOCS=( AUTHORS Changelog NEWS PROBLEMS README ) - -PATCHES=( "${FILESDIR}/MissingCapsFlag.patch" ) - -src_configure() { - econf \ - --datadir=/usr/share/misc \ - $(use_enable gimp) -} - -src_install() { - local gimpplugindir - local gimptool - emake DESTDIR="${D}" install - if use gimp; then - for gimptool in gimptool gimptool-2.0; 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 - einstalldocs -}