summaryrefslogtreecommitdiff
path: root/gui-apps
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2021-02-09 09:54:48 -0500
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2021-02-09 09:54:48 -0500
commit5d282497a01948a38d965427c6b4b8625f760758 (patch)
tree8e0c81fe328b039f8cba011d7645d6096ceef68e /gui-apps
parentceb3cc1f81117da62eab3c242ec908a8868bf97f (diff)
downloadgentoo-overlay-5d282497a01948a38d965427c6b4b8625f760758.tar.xz
gentoo-overlay-5d282497a01948a38d965427c6b4b8625f760758.zip
gui-apps/waypipe: drop
Diffstat (limited to 'gui-apps')
-rw-r--r--gui-apps/waypipe/Manifest1
-rw-r--r--gui-apps/waypipe/metadata.xml12
-rw-r--r--gui-apps/waypipe/waypipe-0.7.0.ebuild50
3 files changed, 0 insertions, 63 deletions
diff --git a/gui-apps/waypipe/Manifest b/gui-apps/waypipe/Manifest
deleted file mode 100644
index 19cb763..0000000
--- a/gui-apps/waypipe/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST waypipe-v0.7.0.tar.bz2 116643 BLAKE2B 65f58168c448965838b22e6c3fe134ec22304b93c43912d66cd6c09ebc66af19847ca195101b2f58eaf41332142df81e523ad5707305e7c1df8865c5a0eb3775 SHA512 075769efb5e7030afcc81083fae4a20922ef47b03d3998f1cf2db0787013224bd26fadb8e5bbf24804d4ac15ba5955822f431f5ce24579fedad44ce0d4f89861
diff --git a/gui-apps/waypipe/metadata.xml b/gui-apps/waypipe/metadata.xml
deleted file mode 100644
index 7395642..0000000
--- a/gui-apps/waypipe/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>alex_y_xu@yahoo.ca</email>
- <name>Alex Xu (Hello71)</name>
- </maintainer>
- <use>
- <flag name="drm">Direct Rendering Manager support</flag>
- <flag name="man">Install man pages</flag>
- </use>
-</pkgmetadata>
diff --git a/gui-apps/waypipe/waypipe-0.7.0.ebuild b/gui-apps/waypipe/waypipe-0.7.0.ebuild
deleted file mode 100644
index 8694eca..0000000
--- a/gui-apps/waypipe/waypipe-0.7.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9} )
-
-inherit meson python-any-r1
-
-DESCRIPTION="proxy for Wayland clients"
-HOMEPAGE="https://gitlab.freedesktop.org/mstoeckl/waypipe"
-SRC_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe/-/archive/v${PV}/waypipe-v${PV}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+drm ffmpeg lz4 +man test vaapi zstd"
-
-REQUIRED_USE="vaapi? ( ffmpeg )"
-
-DEPEND="
- dev-libs/wayland
- drm? ( x11-libs/libdrm )
- ffmpeg? ( media-video/ffmpeg )
- lz4? ( app-arch/lz4:= )
- vaapi? ( x11-libs/libva )
- zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- ${PYTHON_DEPS}
- dev-libs/wayland-protocols
- man? ( app-text/scdoc )
- test? ( dev-libs/weston )
-"
-
-S="${WORKDIR}/${PN}-v${PV}"
-
-src_configure() {
- local emesonargs=(
- -Dwerror=false
- $(meson_feature man man-pages)
- $(meson_feature ffmpeg with_video)
- $(meson_feature drm with_dmabuf)
- $(meson_feature lz4 with_lz4)
- $(meson_feature zstd with_zstd)
- $(meson_feature vaapi with_vaapi)
- )
- meson_src_configure
-}