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/windowlab/
Date: Sun, 03 Jun 2018 06:57:24
Message-Id: 1528009019.73d3e385d787666ff7204d86726ed3b3e639a770.zlogene@gentoo
1 commit: 73d3e385d787666ff7204d86726ed3b3e639a770
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 06:56:59 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 06:56:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d3e385
7
8 x11-wm/windowlab: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.7
11
12 x11-wm/windowlab/Manifest | 1 -
13 x11-wm/windowlab/windowlab-1.34.ebuild | 56 ----------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/x11-wm/windowlab/Manifest b/x11-wm/windowlab/Manifest
17 index cde6438620d..368bab2bb4b 100644
18 --- a/x11-wm/windowlab/Manifest
19 +++ b/x11-wm/windowlab/Manifest
20 @@ -1,2 +1 @@
21 -DIST windowlab-1.34.tar 163840 BLAKE2B 5a4a310f3a9ef4047d6374119c3b9d6239ab450bb11139dc1686e57848d9f5125bab603f7b28a0b33e21403049176e14473d783e503604b7b83a229fd1e410eb SHA512 1d24065fdc2e66d9906d7a1c383d547f677db3c1343176501251637588c7683c08c2803473a505097cafda38486efbdc055bf9597c9ce00456c5ae0d1781e930
22 DIST windowlab-1.40.tar 174080 BLAKE2B 9091565b40e886f921f33251c293b39ad4ec544a98d91046e52fa4e1aae66141934645e724ee224750dd7c50fba5a45fe2b4482c46e860c752a10c2b00dd05a5 SHA512 abea16f4f85f846d426fecce548cef2bf867fc6545a720ec2d3a8d93eb5a4abd6942e44534bb7faef6cffe0551181764effa99d835b8f067a1510f7d50af6d3d
23
24 diff --git a/x11-wm/windowlab/windowlab-1.34.ebuild b/x11-wm/windowlab/windowlab-1.34.ebuild
25 deleted file mode 100644
26 index 56ce2b4b3c0..00000000000
27 --- a/x11-wm/windowlab/windowlab-1.34.ebuild
28 +++ /dev/null
29 @@ -1,56 +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="small and simple window manager of novel design"
38 -HOMEPAGE="http://www.nickgravgaard.com/windowlab/"
39 -SRC_URI="http://www.nickgravgaard.com/${PN}/${P}.tar"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~mips ppc x86"
44 -IUSE="truetype"
45 -
46 -RDEPEND="truetype? ( x11-libs/libXft )
47 - x11-libs/libXext"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig
50 - x11-base/xorg-proto"
51 -
52 -src_unpack() {
53 - unpack ${A}
54 - cd "${S}"
55 - epatch "${FILESDIR}/${PN}-1.34-fixed-font.patch"
56 -}
57 -
58 -src_compile() {
59 - if use truetype ; then
60 - export DEFINES=-DXFT
61 - export EXTRA_INC=$(pkg-config --cflags xft)
62 - export EXTRA_LIBS=$(pkg-config --libs xft)
63 - fi
64 - emake CFLAGS="${CFLAGS}" || die "emake failed"
65 -}
66 -
67 -src_install() {
68 - dobin ${PN} || die
69 -
70 - newman ${PN}.1x ${PN}.1 || die
71 - dodoc CHANGELOG README TODO || die
72 -
73 - dodir /etc/X11/${PN} || die
74 - insinto /etc/X11/${PN}
75 - doins ${PN}.menurc || die
76 -
77 - dodir /etc/X11/Sessions || die
78 - echo "/usr/bin/${PN}" > ${D}/etc/X11/Sessions/${PN}
79 - fperms a+x /etc/X11/Sessions/${PN}
80 -}
81 -
82 -pkg_postinst() {
83 - elog "${PN}'s menu config file has been changed from"
84 - elog "/etc/X11/${PN}/menurc to /etc/X11/${PN}/${PN}.menurc"
85 -}