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-wm/evilwm/
Date: Thu, 04 Jan 2018 11:47:30
Message-Id: 1515066439.7e6a892d00b791044dee52d4c377c33681c40813.zlogene@gentoo
1 commit: 7e6a892d00b791044dee52d4c377c33681c40813
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 11:46:54 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 11:47:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e6a892d
7
8 x11-wm/evilwm: Drop old
9
10 Closes: https://bugs.gentoo.org/615312
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 x11-wm/evilwm/evilwm-1.0.1.ebuild | 45 ---------------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/x11-wm/evilwm/evilwm-1.0.1.ebuild b/x11-wm/evilwm/evilwm-1.0.1.ebuild
17 deleted file mode 100644
18 index cfe723a8ea2..00000000000
19 --- a/x11-wm/evilwm/evilwm-1.0.1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=3
26 -inherit toolchain-funcs multilib
27 -
28 -DESCRIPTION="A minimalist, no frills window manager for X"
29 -HOMEPAGE="http://www.6809.org.uk/evilwm/"
30 -SRC_URI="http://www.6809.org.uk/evilwm/${P}.tar.gz"
31 -
32 -LICENSE="MIT 9wm"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc64-solaris"
35 -IUSE=""
36 -
37 -RDEPEND="x11-libs/libXext
38 - x11-libs/libXrandr"
39 -
40 -DEPEND="${RDEPEND}
41 - x11-proto/xextproto
42 - x11-proto/xproto"
43 -
44 -src_prepare() {
45 - sed -i 's/^#define DEF_FONT.*/#define DEF_FONT "fixed"/' evilwm.h \
46 - || die "sed font failed"
47 - sed -i -e '/^CFLAGS/s/ -Os/ /' \
48 - -e 's/install -s /install /' Makefile || die "sed opt failed"
49 -}
50 -
51 -src_compile() {
52 - emake CC="$(tc-getCC)" prefix="\$(DESTDIR)/${EPREFIX}/usr" XROOT="${EPREFIX}/usr" LDPATH="-L${EPREFIX}/usr/$(get_libdir)" || die
53 -}
54 -
55 -src_install () {
56 - make DESTDIR="${D}" prefix="\$(DESTDIR)/${EPREFIX}/usr" install || die "make install failed"
57 -
58 - dodoc ChangeLog README TODO || die "dodoc failed"
59 -
60 - echo -e "#!${EPREFIX}/bin/sh\nexec \"${EPREFIX}/usr/bin/${PN}\"" > "${T}/${PN}"
61 - exeinto /etc/X11/Sessions
62 - doexe "${T}/${PN}" || die "/etc/X11/Sessions failed"
63 -
64 - insinto /usr/share/xsessions
65 - doins "${FILESDIR}/${PN}.desktop" || die "${PN}.desktop failed."
66 -}