diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-10-27 21:17:17 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-10-27 21:33:20 -0400 |
commit | d217be39551506b11ca9f076a433029285ae2e97 (patch) | |
tree | f81c497df2ce2109e6552ebc3a580a5fa30995db /x11-misc | |
parent | net-analyzer/pypacker: remove old (diff) | |
download | gentoo-d217be39551506b11ca9f076a433029285ae2e97.tar.gz gentoo-d217be39551506b11ca9f076a433029285ae2e97.tar.bz2 gentoo-d217be39551506b11ca9f076a433029285ae2e97.zip |
x11-misc/compton: remove old
Package-Manager: portage-2.3.2
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/compton/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/compton/compton-0.1_beta1.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/x11-misc/compton/Manifest b/x11-misc/compton/Manifest index d7a0fbc900f1..691cb27c88c4 100644 --- a/x11-misc/compton/Manifest +++ b/x11-misc/compton/Manifest @@ -1,2 +1 @@ -DIST compton-0.1_beta1.tar.gz 140466 SHA256 28a770e81ae9e33d759044a75cd2b57329b17bf211cf0e795bc73e56933df8d6 SHA512 fa3e9eb8d85071ac38aa2834f7a14679fce95e1367f6c58987e2d56c5d90e7dd6e3945557e91512199a78bc38eba7f22bdd6efa872d8b108cb33c4579501ae95 WHIRLPOOL faa3a2c23ab1af3f340615bb7593cbd0e81edd36398fb58293ddc543df80ecc13a7e2f2ff8f281cb478f94713896b081b39607c0918d524dfa931a4a1b1c412f DIST compton-0.1_beta2.tar.gz 144239 SHA256 7b9cd52a57326116fb5db3f5f89b7d50e17715252d9fd79b70b45ace30a6b009 SHA512 c3a019d90e32559d44e3a4969bcc15a15837db9c9519ce8cc70b1bd3d0cb16d29449f68cc2f6a8d834569c9620ec6533ab85c1586da957c69b1ae341d9584535 WHIRLPOOL 39ca9718bc79d4542d73cce39bb51fc9b9c0497a30914ab044b920f72a3c2f8cbd315c5dc97c999c1f0ca798ae692ada4626f069914b6835f0c225638b486422 diff --git a/x11-misc/compton/compton-0.1_beta1.ebuild b/x11-misc/compton/compton-0.1_beta1.ebuild deleted file mode 100644 index 9eb10e70c1eb..000000000000 --- a/x11-misc/compton/compton-0.1_beta1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python3_3 ) -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" -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 )" -RDEPEND="${COMMON_DEPEND} - x11-apps/xprop - x11-apps/xwininfo" -DEPEND="${COMMON_DEPEND} - app-text/asciidoc - virtual/pkgconfig - x11-proto/xproto - drm? ( x11-libs/libdrm )" - -nobuildit() { use $1 || echo yes ; } - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]]; then - tc-export CC - fi -} - -src_compile() { - emake docs - NO_DBUS=$(nobuildit dbus) \ - 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 -} |