Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/wmakerconf/
Date: Sat, 01 Apr 2017 10:24:35
Message-Id: 1491042185.9c280b1f35c981585c0c15b2f0d085e724ba3dbe.soap@gentoo
1 commit: 9c280b1f35c981585c0c15b2f0d085e724ba3dbe
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 28 18:26:37 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 10:23:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c280b1f
7
8 x11-misc/wmakerconf: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4319
12
13 x11-misc/wmakerconf/wmakerconf-2.12-r2.ebuild | 56 ---------------------------
14 1 file changed, 56 deletions(-)
15
16 diff --git a/x11-misc/wmakerconf/wmakerconf-2.12-r2.ebuild b/x11-misc/wmakerconf/wmakerconf-2.12-r2.ebuild
17 deleted file mode 100644
18 index 991e592960c..00000000000
19 --- a/x11-misc/wmakerconf/wmakerconf-2.12-r2.ebuild
20 +++ /dev/null
21 @@ -1,56 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils
27 -
28 -DESCRIPTION="X based config tool for the windowmaker X windowmanager"
29 -HOMEPAGE="http://wmakerconf.sourceforge.net/"
30 -SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
35 -IUSE="imlib nls perl"
36 -
37 -RDEPEND="x11-libs/gtk+:2
38 - >=x11-wm/windowmaker-0.95.2
39 - imlib? ( media-libs/imlib )
40 - perl? ( dev-lang/perl
41 - dev-perl/HTML-Parser
42 - || ( dev-perl/libwww-perl
43 - www-client/lynx
44 - net-misc/wget ) )"
45 -DEPEND="${RDEPEND}
46 - nls? ( sys-devel/gettext )
47 - virtual/pkgconfig"
48 -
49 -src_prepare() {
50 - epatch "${FILESDIR}"/${P}-wmaker-0.95_support.patch
51 - epatch "${FILESDIR}"/${P}-desktop.patch
52 -
53 - sed -e "/^LIBS =/s/$/ -lX11/" -i src/Makefile.in || die
54 -}
55 -
56 -src_configure() {
57 - local myconf
58 - use imlib || myconf="--disable-imlibtest"
59 -
60 - econf \
61 - $(use_enable perl upgrade) \
62 - $(use_enable nls) \
63 - ${myconf}
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" gnulocaledir="${ED}/usr/share/locale" install
68 - dodoc AUTHORS ChangeLog MANUAL NEWS README TODO
69 - doman man/*.1
70 -
71 - rm -f "${ED}"/usr/share/${PN}/{AUTHORS,README,COPYING,NEWS,MANUAL,ABOUT-NLS,NLS-TEAM1,ChangeLog}
72 -}
73 -
74 -pkg_postinst() {
75 - elog "New features added with WindowMaker >= 0.95 will not be available in wmakerconf"
76 - elog "WPrefs is the recommended configuration tool"
77 -}