Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdots/
Date: Sun, 07 Oct 2018 12:44:07
Message-Id: 1538914470.ed30771fd656adbfc443ff7a6482391695339868.zlogene@gentoo
1 commit: ed30771fd656adbfc443ff7a6482391695339868
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 7 12:14:30 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 7 12:14:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed30771f
7
8 x11-plugins/wmdots: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 x11-plugins/wmdots/wmdots-0.2_beta.ebuild | 45 -------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/x11-plugins/wmdots/wmdots-0.2_beta.ebuild b/x11-plugins/wmdots/wmdots-0.2_beta.ebuild
17 deleted file mode 100644
18 index 4883a2add90..00000000000
19 --- a/x11-plugins/wmdots/wmdots-0.2_beta.ebuild
20 +++ /dev/null
21 @@ -1,45 +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 multilib toolchain-funcs
28 -
29 -DESCRIPTION="multishape 3d rotating dots"
30 -HOMEPAGE="https://www.dockapps.net/wmdots"
31 -SRC_URI="https://www.dockapps.net/download/${P/_}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc x86"
36 -IUSE=""
37 -
38 -RDEPEND="x11-libs/libX11
39 - x11-libs/libXext
40 - x11-libs/libXpm"
41 -DEPEND="${RDEPEND}"
42 -
43 -S=${WORKDIR}/${PN}
44 -
45 -src_unpack() {
46 - unpack ${A}
47 - cd "${S}"
48 - epatch "${FILESDIR}"/${P}-stringh.patch
49 - sed -e "s:cc:$(tc-getCC):g" \
50 - -e "s:-g -O2:${CFLAGS}:g" -i Makefile
51 -
52 - #Fix compilation target
53 - sed -e "s:wmifs:wmdots:" -i Makefile
54 -
55 - #Honour Gentoo LDFLAGS, see bug #336982
56 - sed -e "s:-o wmdots:\$(LDFLAGS) -o wmdots:" -i Makefile
57 -}
58 -
59 -src_compile() {
60 - emake clean || die "emake clean failed."
61 - emake LIBDIR="-L/usr/$(get_libdir)" || die "emake failed."
62 -}
63 -
64 -src_install() {
65 - dobin wmdots
66 -}