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/xcave/
Date: Tue, 24 Dec 2019 17:40:38
Message-Id: 1577209207.20630a4c26abdaa6919f2dd44adbc47377fd328d.soap@gentoo
1 commit: 20630a4c26abdaa6919f2dd44adbc47377fd328d
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 24 17:40:07 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 24 17:40:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20630a4c
7
8 x11-misc/xcave: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 x11-misc/xcave/xcave-2.4.0.ebuild | 21 +++++++++++----------
14 1 file changed, 11 insertions(+), 10 deletions(-)
15
16 diff --git a/x11-misc/xcave/xcave-2.4.0.ebuild b/x11-misc/xcave/xcave-2.4.0.ebuild
17 index 656794b7c4d..3e6245d4498 100644
18 --- a/x11-misc/xcave/xcave-2.4.0.ebuild
19 +++ b/x11-misc/xcave/xcave-2.4.0.ebuild
20 @@ -1,7 +1,7 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 +EAPI=7
27
28 DESCRIPTION="View and manage contents of your wine cellar"
29 HOMEPAGE="http://xcave.free.fr/index-en.php"
30 @@ -10,18 +10,19 @@ SRC_URI="http://${PN}.free.fr/backbone.php?what=download/${P}.tar.gz"
31 LICENSE="GPL-2"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 -IUSE=""
35 RESTRICT="test"
36
37 -RDEPEND=">=x11-libs/gtk+-2.8:2
38 - dev-libs/libxml2"
39 -DEPEND="${RDEPEND}
40 - virtual/pkgconfig
41 +RDEPEND="
42 + x11-libs/gtk+:2
43 + dev-libs/libxml2:2"
44 +DEPEND="${RDEPEND}"
45 +BDEPEND="
46 + dev-util/intltool
47 sys-devel/gettext
48 - dev-util/intltool"
49 + virtual/pkgconfig"
50
51 src_install() {
52 default
53 - dodoc ChangeLog TODO
54 - rm -rfv "${D}"/usr/doc
55 +
56 + rm -rv "${ED}"/usr/doc || die
57 }