Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmgrabimage/
Date: Tue, 11 Dec 2018 14:29:40
Message-Id: 1544538476.28217fc46124be64206b3b4b3c68466fe22249c8.voyageur@gentoo
1 commit: 28217fc46124be64206b3b4b3c68466fe22249c8
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Dec 7 14:09:05 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 14:27:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28217fc4
7
8 x11-plugins/wmgrabimage: drop old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild | 51 ----------------------
14 1 file changed, 51 deletions(-)
15
16 diff --git a/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild b/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild
17 deleted file mode 100644
18 index 4ad78dfcd83..00000000000
19 --- a/x11-plugins/wmgrabimage/wmgrabimage-0.72-r1.ebuild
20 +++ /dev/null
21 @@ -1,51 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -inherit eutils
28 -
29 -MY_PN=${PN/grabi/GrabI}
30 -
31 -DESCRIPTION="wmGrabImage grabs an image from the WWW and displays it"
32 -HOMEPAGE="https://www.dockapps.net/wmgrabimage"
33 -SRC_URI="https://www.dockapps.net/download/${MY_PN}-${PV}.tgz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ppc x86"
38 -IUSE=""
39 -
40 -RDEPEND=">=net-misc/wget-1.9-r2
41 - >=media-gfx/imagemagick-5.5.7.15
42 - x11-libs/libX11
43 - x11-libs/libXext
44 - x11-libs/libXpm"
45 -DEPEND="${RDEPEND}
46 - x11-base/xorg-proto"
47 -
48 -S=${WORKDIR}/${MY_PN}-${PV}/${MY_PN}
49 -
50 -src_unpack() {
51 - unpack ${A}
52 - cd "${S}"
53 - epatch "${FILESDIR}"/${PN}-noman.patch
54 - sed -i -e 's/-geom /-geometry /' GrabImage || die "sed failed."
55 - sed -i -e 's/install -s -m /install -m /' Makefile || die "sed failed."
56 -}
57 -
58 -src_compile() {
59 - emake clean || die "emake clean failed."
60 - emake CFLAGS="${CFLAGS} -Wall" SYSTEM="${LDFLAGS}" || die "emake failed."
61 -}
62 -
63 -src_install() {
64 - dodir /usr/bin
65 - emake DESTDIR="${D}/usr" install || die "einstall failed."
66 -
67 - doman wmGrabImage.1
68 -
69 - dodoc ../{BUGS,CHANGES,HINTS,TODO}
70 -
71 - domenu "${FILESDIR}"/${PN}.desktop
72 -}