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-wm/vtwm/
Date: Sat, 12 Oct 2019 07:01:51
Message-Id: 1570863684.a0a9c16e328a97125676ef05ffa2a52f4cd9e7e4.mgorny@gentoo
1 commit: a0a9c16e328a97125676ef05ffa2a52f4cd9e7e4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:01:24 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:01:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a9c16e
7
8 x11-wm/vtwm: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-wm/vtwm/Manifest | 1 -
13 x11-wm/vtwm/vtwm-5.4.6a.ebuild | 42 ------------------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/x11-wm/vtwm/Manifest b/x11-wm/vtwm/Manifest
17 index 05340f23564..50231ab3294 100644
18 --- a/x11-wm/vtwm/Manifest
19 +++ b/x11-wm/vtwm/Manifest
20 @@ -1,2 +1 @@
21 -DIST vtwm-5.4.6a.tar.gz 992488 BLAKE2B 15a28556c78a9fc81f656eb6d50a2bf9f2d86ef6938cb8926cbb909c2c0edce6cbbe09270e72dfc29f9c665aecc36dcd57bcbf26af96b1f3b24518427b652395 SHA512 2500dfe50fae90cbceeee2b3dcf1dd05c330abd978a51abdf2768b3231fabdd71975f3bbdc341ebe25101773009cbf7cb12f263a013165bbda5c048e8b602686
22 DIST vtwm-5.4.7.tar.gz 1021160 BLAKE2B a669e21d2fad5a93036c866053fb73db25f3ab1e877256650d4cc295db3861bd6ff90517e00d7042b00621c05d1947b9747380eac72fec85cfc1d68c8a6b59bb SHA512 abd9a1b1d077232eef7f39521823446f2674d69a071333209a808ff651dfa83a7f6fa00dab06356897d9e7a88fd6616e5920af030e24541bd4703b3351628728
23
24 diff --git a/x11-wm/vtwm/vtwm-5.4.6a.ebuild b/x11-wm/vtwm/vtwm-5.4.6a.ebuild
25 deleted file mode 100644
26 index b97b7621cc6..00000000000
27 --- a/x11-wm/vtwm/vtwm-5.4.6a.ebuild
28 +++ /dev/null
29 @@ -1,42 +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 -DESCRIPTION="one of many TWM descendants and implements a Virtual Desktop"
36 -HOMEPAGE="http://www.vtwm.org/"
37 -SRC_URI="ftp://ftp.visi.com/users/hawkeyd/X/${P}.tar.gz"
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -KEYWORDS="~alpha ppc sparc x86"
42 -IUSE=""
43 -
44 -RDEPEND="x11-libs/libX11
45 - x11-libs/libXmu
46 - x11-libs/libXt
47 - x11-libs/libXext
48 - x11-libs/libXpm"
49 -DEPEND="${RDEPEND}
50 - app-text/rman
51 - x11-base/xorg-proto
52 - x11-misc/imake"
53 -
54 -src_compile() {
55 - xmkmf || die "xmkmf failed"
56 - emake -j1 || die "emake failed"
57 -}
58 -
59 -src_install() {
60 - make BINDIR=/usr/bin \
61 - LIBDIR=/etc/X11 \
62 - MANPATH=/usr/share/man \
63 - DESTDIR="${D}" install || die "make install failed"
64 -
65 - echo "#!/bin/sh" > vtwm
66 - echo "xsetroot -cursor_name left_ptr &" >> vtwm
67 - echo "/usr/bin/vtwm" >> vtwm
68 - exeinto /etc/X11/Sessions
69 - doexe vtwm || die
70 - dodoc doc/{4.6.*,CHANGELOG,BUGS,DEVELOPERS,HISTORY,SOUND,WISHLIST} || die
71 -}