Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/imwheel/
Date: Sat, 12 Oct 2019 07:01:52
Message-Id: 1570863683.441dac92c1061f7674fd2588e95cd890a2c854f7.mgorny@gentoo
1 commit: 441dac92c1061f7674fd2588e95cd890a2c854f7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:01:23 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:01:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=441dac92
7
8 x11-misc/imwheel: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-misc/imwheel/Manifest | 1 -
13 x11-misc/imwheel/imwheel-1.0.0_pre12.ebuild | 48 -----------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/x11-misc/imwheel/Manifest b/x11-misc/imwheel/Manifest
17 index 6637642e3cd..092a7ed6e76 100644
18 --- a/x11-misc/imwheel/Manifest
19 +++ b/x11-misc/imwheel/Manifest
20 @@ -1,2 +1 @@
21 DIST imwheel-1.0.0_pre13_p20100827.tar.bz2 125776 BLAKE2B eda41d2d3ce7f057dd71fbbfb4304064134fe37068788182880fcfc6727c12f5748bac40f3115e8be0093c027373689b7375c58487fe8c5a97d0b1e9c297431e SHA512 3b5ae23a1762122f6fe86610da6ad65118e8e743a88f370d6f6cdd084b4aa5f08d3089fccf3fca3a69b06560d7c2d7cfecfde1375154af9f519c0d4fe996080c
22 -DIST imwheel-1.0.0pre12.tar.gz 186424 BLAKE2B a13dc0df0d9c580eeb08e0c51deb9127ff29ad86826e941e15fadc60c41a00ac2e82cfcf11b020ce5a37b431a90c8c081b7fda30f8c7f161ab1f8623a2739bbe SHA512 4781f8c05e81f931452fb74745a93c907c695ed8b8b25442411db3a91ce4d3834e9f2a0789c950d7e515ad89aca28017844250affa5033988e79e5f7ff33f112
23
24 diff --git a/x11-misc/imwheel/imwheel-1.0.0_pre12.ebuild b/x11-misc/imwheel/imwheel-1.0.0_pre12.ebuild
25 deleted file mode 100644
26 index d48dd40a3a0..00000000000
27 --- a/x11-misc/imwheel/imwheel-1.0.0_pre12.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=0
34 -
35 -inherit eutils
36 -
37 -DESCRIPTION="mouse tool for advanced features such as wheels and 3+ buttons"
38 -HOMEPAGE="http://imwheel.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/imwheel/${P/_/}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 ppc x86"
44 -IUSE=""
45 -
46 -RDEPEND="x11-libs/libXtst
47 - x11-libs/libX11
48 - x11-libs/libXmu
49 - x11-libs/libXt
50 - x11-libs/libXext"
51 -
52 -DEPEND="${RDEPEND}
53 - x11-base/xorg-proto
54 - >=sys-apps/sed-4"
55 -
56 -S=${WORKDIR}/${P/_/}
57 -
58 -src_unpack() {
59 - unpack ${A}
60 - cd "${S}"
61 - #epatch "${FILESDIR}"/${P}-gentoo.diff
62 - sed -i -e "s:/etc:${D}/etc:g" Makefile.am || die
63 - sed -i -e "s:/etc:${D}/etc:g" Makefile.in || die
64 -}
65 -
66 -src_compile() {
67 - local myconf
68 - # don't build gpm stuff
69 - myconf="--disable-gpm --disable-gpm-doc"
70 - econf ${myconf} || die "configure failed"
71 - emake || die "parallel make failed"
72 -}
73 -
74 -src_install() {
75 - einstall || die "make install failed"
76 - dodoc AUTHORS BUGS ChangeLog EMACS M-BA47 NEWS README TODO
77 -}