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 64408138335 for ; Tue, 11 Dec 2018 14:29:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41E06E0B15; Tue, 11 Dec 2018 14:29:39 +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 1A7DFE0B15 for ; Tue, 11 Dec 2018 14:29:38 +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 C5147335CD2 for ; Tue, 11 Dec 2018 14:29:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1AA7B4E3 for ; Tue, 11 Dec 2018 14:29:36 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1544538476.28217fc46124be64206b3b4b3c68466fe22249c8.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmgrabimage/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild X-VCS-Directories: x11-plugins/wmgrabimage/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 28217fc46124be64206b3b4b3c68466fe22249c8 X-VCS-Branch: master Date: Tue, 11 Dec 2018 14:29:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ff5ee2b6-1a7d-49d0-b2fe-835d0cd31a75 X-Archives-Hash: 9a7e41e4807b5b9ed689ee7f60ad8079 commit: 28217fc46124be64206b3b4b3c68466fe22249c8 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Dec 7 14:09:05 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Dec 11 14:27:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28217fc4 x11-plugins/wmgrabimage: drop old Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild | 51 ---------------------- 1 file changed, 51 deletions(-) diff --git a/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild b/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild deleted file mode 100644 index 4ad78dfcd83..00000000000 --- a/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -MY_PN=${PN/grabi/GrabI} - -DESCRIPTION="wmGrabImage grabs an image from the WWW and displays it" -HOMEPAGE="https://www.dockapps.net/wmgrabimage" -SRC_URI="https://www.dockapps.net/download/${MY_PN}-${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="" - -RDEPEND=">=net-misc/wget-1.9-r2 - >=media-gfx/imagemagick-5.5.7.15 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -S=${WORKDIR}/${MY_PN}-${PV}/${MY_PN} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-noman.patch - sed -i -e 's/-geom /-geometry /' GrabImage || die "sed failed." - sed -i -e 's/install -s -m /install -m /' Makefile || die "sed failed." -} - -src_compile() { - emake clean || die "emake clean failed." - emake CFLAGS="${CFLAGS} -Wall" SYSTEM="${LDFLAGS}" || die "emake failed." -} - -src_install() { - dodir /usr/bin - emake DESTDIR="${D}/usr" install || die "einstall failed." - - doman wmGrabImage.1 - - dodoc ../{BUGS,CHANGES,HINTS,TODO} - - domenu "${FILESDIR}"/${PN}.desktop -}