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 3302F1382C5 for ; Wed, 21 Feb 2018 23:56:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61758E091F; Wed, 21 Feb 2018 23:56:00 +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 4264AE091F for ; Wed, 21 Feb 2018 23:56:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E113F335C4C for ; Wed, 21 Feb 2018 23:55:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2B92215 for ; Wed, 21 Feb 2018 23:55:51 +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: <1519257323.777cef961f7d4d82a3e384938551e9a89db7d1db.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-r1.ebuild X-VCS-Directories: media-gfx/sane-frontends/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 777cef961f7d4d82a3e384938551e9a89db7d1db X-VCS-Branch: master Date: Wed, 21 Feb 2018 23:55:51 +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: c201be8e-8182-4044-b287-9f208be6a095 X-Archives-Hash: 84f15baa425dde9a8dffb6f02afa379e commit: 777cef961f7d4d82a3e384938551e9a89db7d1db Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Feb 21 21:59:21 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 21 23:55:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=777cef96 media-gfx/sane-frontends: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../sane-frontends/sane-frontends-1.0.14-r1.ebuild | 52 ---------------------- 1 file changed, 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 53d1bee2cb0..00000000000 --- 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 -}