commit: db88575e4c9d910338b2089827a478e57b97df04 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com> AuthorDate: Thu Feb 25 09:15:01 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Thu Feb 25 09:15:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db88575e
x11-misc/unclutter-xfixes: fix CC usage + cleanups `make install` caused both bugs and installed in /usr/share/licenses. Given only an executable + man page simpler to do it manually than fix. Also updated DESCRIPTION based on original unclutter, previous was taken from upstream but doesn't explain what this does. Closes: https://bugs.gentoo.org/726234 Closes: https://bugs.gentoo.org/742749 Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com> Signed-off-by: David Seifert <soap <AT> gentoo.org> .../unclutter-xfixes-1.5-r1.ebuild | 31 ------------------ .../unclutter-xfixes-1.5-r2.ebuild | 37 ++++++++++++++++++++++ 2 files changed, 37 insertions(+), 31 deletions(-) diff --git a/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r1.ebuild b/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r1.ebuild deleted file mode 100644 index 3e79355700b..00000000000 --- a/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A rewrite of unclutter using the x11-xfixes extension" -HOMEPAGE="https://github.com/Airblader/unclutter-xfixes" -SRC_URI="https://github.com/Airblader/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-libs/libev - x11-libs/libX11 - x11-libs/libXfixes - x11-libs/libXi - !x11-misc/unclutter -" -DEPEND="${RDEPEND}" -BDEPEND=" - app-text/asciidoc - virtual/pkgconfig -" - -src_compile() { - emake CC="$(tc-getCC)" -} diff --git a/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r2.ebuild b/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r2.ebuild new file mode 100644 index 00000000000..7a792328069 --- /dev/null +++ b/x11-misc/unclutter-xfixes/unclutter-xfixes-1.5-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Hides mouse pointer while not in use (rewrite of unclutter)" +HOMEPAGE="https://github.com/Airblader/unclutter-xfixes" +SRC_URI="https://github.com/Airblader/unclutter-xfixes/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/libev + x11-libs/libX11 + x11-libs/libXfixes + x11-libs/libXi + !x11-misc/unclutter" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto" +BDEPEND=" + app-text/asciidoc + virtual/pkgconfig" + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin unclutter + newman man/${PN}.1 unclutter.1 + einstalldocs +}
