diff options
author | Sam James <sam@gentoo.org> | 2021-04-20 02:48:35 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-20 02:49:51 +0100 |
commit | a4a98bcc6e95624c7cc952a002fbd51c6b74d902 (patch) | |
tree | f2ca70c6a3a333c1d7dfe900ccebc07f52c8f9ac /x11-misc/grun | |
parent | x11-misc/xssstate: port to EAPI 7 (diff) | |
download | gentoo-a4a98bcc6e95624c7cc952a002fbd51c6b74d902.tar.gz gentoo-a4a98bcc6e95624c7cc952a002fbd51c6b74d902.tar.bz2 gentoo-a4a98bcc6e95624c7cc952a002fbd51c6b74d902.zip |
x11-misc/grun: port to EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc/grun')
-rw-r--r-- | x11-misc/grun/grun-0.9.3-r1.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/x11-misc/grun/grun-0.9.3-r1.ebuild b/x11-misc/grun/grun-0.9.3-r1.ebuild index 285e3e6bfdb4..e354f70eaec1 100644 --- a/x11-misc/grun/grun-0.9.3-r1.ebuild +++ b/x11-misc/grun/grun-0.9.3-r1.ebuild @@ -1,8 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit epatch +EAPI=7 DESCRIPTION="A GTK based Run dialog resembling the Windows Run dialog, just like xexec" HOMEPAGE="https://github.com/lrgc/grun" @@ -18,15 +17,15 @@ RDEPEND=" x11-libs/gdk-pixbuf x11-libs/gtk+:2 " -DEPEND=" - ${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext ) " -src_prepare() { - epatch "${FILESDIR}"/${P}-no_nls.patch -} +PATCHES=( + "${FILESDIR}"/${P}-no_nls.patch +) src_configure() { [[ -z ${TERM} ]] && TERM=xterm |