commit: eecf0ea7348d01ed26848240c72fb918bfa02a97 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Fri May 17 14:07:38 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Fri May 24 23:35:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eecf0ea7
x11-misc/set_opacity: EAPI8 bump, fix SRC_URI, LICENSE Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> x11-misc/set_opacity/Manifest | 1 + x11-misc/set_opacity/set_opacity-1.0-r1.ebuild | 29 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/x11-misc/set_opacity/Manifest b/x11-misc/set_opacity/Manifest index 474657501cb1..63195346d2a5 100644 --- a/x11-misc/set_opacity/Manifest +++ b/x11-misc/set_opacity/Manifest @@ -1 +1,2 @@ +DIST set_opacity-1.0-gh.tar.gz 4830 BLAKE2B 717d5f01ce2895d3a3bc722d2aa326225627dc9049a3fbe875fc9037562bf2502727cb99bb5f19a0add401c1eafad04a38823121aa05939364a2fe7a5dab47e5 SHA512 e7d0af8d248194538cd34aba33734070468ac55275f9a4f936216d5c397178dc01f154f8cf07cc113a946813215a001be55d81281d2d01908b55bdefc3e87e53 DIST set_opacity-1.0.tar.gz 5115 BLAKE2B 2855de8d20a1431c6eb3d07690ec8ead5f00c80e0e25f588fe03ec0123885621053629223f82a2e689c480cd253a35abe4a3aad0629b25e69feb696eb44dcc1c SHA512 cfe702d5c48968fd283c63420d8cbbfb7a9783a339c962bd10818caaa3754bf5a044c81d4670421ceb13fe697ef461bceed0647be45a4682c8fe0a210bf98ddd diff --git a/x11-misc/set_opacity/set_opacity-1.0-r1.ebuild b/x11-misc/set_opacity/set_opacity-1.0-r1.ebuild new file mode 100644 index 000000000000..2672fb5edb2e --- /dev/null +++ b/x11-misc/set_opacity/set_opacity-1.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Tool for set real compositing for windows through window's id, process' pid etc." +HOMEPAGE="https://github.com/XVilka/set_opacity" +SRC_URI="https://github.com/XVilka/set_opacity/archive/tags/${PV}.tar.gz -> ${P}-gh.tar.gz" +S="${WORKDIR}/${PN}-tags-${PV}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="x11-libs/libXdamage + x11-libs/libXcomposite + x11-libs/libXfixes + x11-libs/libXrender" +RDEPEND=${DEPEND} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin set_opacity +}
