From d3e7561c32de28fbee1a3cdf2f31953a3280485a Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 26 Apr 2020 11:40:25 +0100 Subject: x11-misc/compton : add python3.7 COMPAT --- x11-misc/compton/compton-0.1_beta2-r10.ebuild | 74 +++++++++++++++++++++++++++ x11-misc/compton/compton-0.1_beta2-r2.ebuild | 74 --------------------------- 2 files changed, 74 insertions(+), 74 deletions(-) create mode 100644 x11-misc/compton/compton-0.1_beta2-r10.ebuild delete mode 100644 x11-misc/compton/compton-0.1_beta2-r2.ebuild diff --git a/x11-misc/compton/compton-0.1_beta2-r10.ebuild b/x11-misc/compton/compton-0.1_beta2-r10.ebuild new file mode 100644 index 00000000..3d14a03d --- /dev/null +++ b/x11-misc/compton/compton-0.1_beta2-r10.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) +inherit toolchain-funcs python-r1 + +DESCRIPTION="A compositor for X, and a fork of xcompmgr-dana" +HOMEPAGE="https://github.com/chjj/compton" +SRC_URI="https://github.com/chjj/compton/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="dbus +drm opengl +pcre xinerama" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +COMMON_DEPEND="${PYTHON_DEPS} + dev-libs/libconfig:= + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrandr + x11-libs/libXrender + dbus? ( sys-apps/dbus ) + opengl? ( virtual/opengl ) + pcre? ( dev-libs/libpcre:3 ) + xinerama? ( x11-libs/libXinerama )" +RDEPEND="${COMMON_DEPEND} + x11-apps/xprop + x11-apps/xwininfo" +DEPEND="${COMMON_DEPEND} + app-text/asciidoc + virtual/pkgconfig + x11-base/xorg-proto + drm? ( x11-libs/libdrm )" + +nobuildit() { use $1 || echo yes ; } + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + tc-export CC + fi +} + +src_prepare() { + default + eapply ${FILESDIR}/makefile.patch +} + +src_compile() { + emake docs + + NO_DBUS=$(nobuildit dbus) \ + NO_XINERAMA=$(nobuildit xinerama) \ + NO_VSYNC_DRM=$(nobuildit drm) \ + NO_VSYNC_OPENGL=$(nobuildit opengl) \ + NO_REGEX_PCRE=$(nobuildit pcre) \ + emake compton +} + +src_install() { + NO_DBUS=$(nobuildit dbus) \ + NO_VSYNC_DRM=$(nobuildit drm) \ + NO_VSYNC_OPENGL=$(nobuildit opengl) \ + NO_REGEX_PCRE=$(nobuildit pcre) \ + default + docinto examples + dodoc compton.sample.conf dbus-examples/* + python_foreach_impl python_newscript bin/compton-convgen.py compton-convgen +} diff --git a/x11-misc/compton/compton-0.1_beta2-r2.ebuild b/x11-misc/compton/compton-0.1_beta2-r2.ebuild deleted file mode 100644 index e0a9d4f9..00000000 --- a/x11-misc/compton/compton-0.1_beta2-r2.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) -inherit toolchain-funcs python-r1 - -DESCRIPTION="A compositor for X, and a fork of xcompmgr-dana" -HOMEPAGE="https://github.com/chjj/compton" -SRC_URI="https://github.com/chjj/compton/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="dbus +drm opengl +pcre xinerama" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -COMMON_DEPEND="${PYTHON_DEPS} - dev-libs/libconfig:= - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libXrender - dbus? ( sys-apps/dbus ) - opengl? ( virtual/opengl ) - pcre? ( dev-libs/libpcre:3 ) - xinerama? ( x11-libs/libXinerama )" -RDEPEND="${COMMON_DEPEND} - x11-apps/xprop - x11-apps/xwininfo" -DEPEND="${COMMON_DEPEND} - app-text/asciidoc - virtual/pkgconfig - x11-base/xorg-proto - drm? ( x11-libs/libdrm )" - -nobuildit() { use $1 || echo yes ; } - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]]; then - tc-export CC - fi -} - -src_prepare() { - default - eapply ${FILESDIR}/makefile.patch -} - -src_compile() { - emake docs - - NO_DBUS=$(nobuildit dbus) \ - NO_XINERAMA=$(nobuildit xinerama) \ - NO_VSYNC_DRM=$(nobuildit drm) \ - NO_VSYNC_OPENGL=$(nobuildit opengl) \ - NO_REGEX_PCRE=$(nobuildit pcre) \ - emake compton -} - -src_install() { - NO_DBUS=$(nobuildit dbus) \ - NO_VSYNC_DRM=$(nobuildit drm) \ - NO_VSYNC_OPENGL=$(nobuildit opengl) \ - NO_REGEX_PCRE=$(nobuildit pcre) \ - default - docinto examples - dodoc compton.sample.conf dbus-examples/* - python_foreach_impl python_newscript bin/compton-convgen.py compton-convgen -} -- cgit v1.2.3