diff options
author | David Seifert <soap@gentoo.org> | 2019-12-24 18:40:07 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-24 18:40:07 +0100 |
commit | 20630a4c26abdaa6919f2dd44adbc47377fd328d (patch) | |
tree | 864a6e38d773f42a27e0c80516a5f5cfb6e2cf51 /x11-misc/xcave | |
parent | dev-libs/fribidi: stable 1.0.7 for hppa, bug #702260 (diff) | |
download | gentoo-20630a4c26abdaa6919f2dd44adbc47377fd328d.tar.gz gentoo-20630a4c26abdaa6919f2dd44adbc47377fd328d.tar.bz2 gentoo-20630a4c26abdaa6919f2dd44adbc47377fd328d.zip |
x11-misc/xcave: Port to EAPI 7
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-misc/xcave')
-rw-r--r-- | x11-misc/xcave/xcave-2.4.0.ebuild | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/x11-misc/xcave/xcave-2.4.0.ebuild b/x11-misc/xcave/xcave-2.4.0.ebuild index 656794b7c4d5..3e6245d4498d 100644 --- a/x11-misc/xcave/xcave-2.4.0.ebuild +++ b/x11-misc/xcave/xcave-2.4.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 DESCRIPTION="View and manage contents of your wine cellar" HOMEPAGE="http://xcave.free.fr/index-en.php" @@ -10,18 +10,19 @@ SRC_URI="http://${PN}.free.fr/backbone.php?what=download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="test" -RDEPEND=">=x11-libs/gtk+-2.8:2 - dev-libs/libxml2" -DEPEND="${RDEPEND} - virtual/pkgconfig +RDEPEND=" + x11-libs/gtk+:2 + dev-libs/libxml2:2" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool sys-devel/gettext - dev-util/intltool" + virtual/pkgconfig" src_install() { default - dodoc ChangeLog TODO - rm -rfv "${D}"/usr/doc + + rm -rv "${ED}"/usr/doc || die } |