diff options
author | Sam James <sam@gentoo.org> | 2021-03-15 23:13:42 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-15 23:13:42 +0000 |
commit | df3ee2d1af56c777af81cd637e56e0edbdc7bac0 (patch) | |
tree | e9a9f389b2ec2334b768d63151532088fde40996 /x11-misc/lineak-xosdplugin | |
parent | x11-misc/lineak-defaultplugin: fix MisplacedVariable (EROOT) (diff) | |
download | gentoo-df3ee2d1af56c777af81cd637e56e0edbdc7bac0.tar.gz gentoo-df3ee2d1af56c777af81cd637e56e0edbdc7bac0.tar.bz2 gentoo-df3ee2d1af56c777af81cd637e56e0edbdc7bac0.zip |
x11-misc/lineak-xosdplugin: modernise ebuild, fix MisplacedVariable (EROOT)
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc/lineak-xosdplugin')
-rw-r--r-- | x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r2.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r2.ebuild b/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r2.ebuild index 5499b6eedf13..5ad5aca6757c 100644 --- a/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r2.ebuild +++ b/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r2.ebuild @@ -1,14 +1,13 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit multilib MY_P=${P/.0/} - DESCRIPTION="Xosd plugin for LINEAK" HOMEPAGE="http://lineak.sourceforge.net/" SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" @@ -19,11 +18,8 @@ DEPEND=" =x11-misc/lineakd-${PV}* x11-libs/xosd " -RDEPEND=" - ${DEPEND} -" +RDEPEND="${DEPEND}" -S=${WORKDIR}/${MY_P} PATCHES=( "${FILESDIR}"/${P}-gcc43.patch ) @@ -31,7 +27,7 @@ PATCHES=( src_configure() { econf \ $(use_enable debug) \ - --with-lineak-plugindir="${EROOT}/usr/$(get_libdir)/lineakd" \ + --with-lineak-plugindir="${EPREFIX}/usr/$(get_libdir)/lineakd" \ --with-x } |