summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-03-17 17:28:01 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2023-03-17 17:28:01 +0200
commit943ca626fcea180ed77c2cf5746288a77276fea0 (patch)
tree41b723038d476cff6206dd9fe5799a0390841b95 /gui-apps
parentgui-apps/grim: Stabilize 1.4.0-r3 arm64, #901811 (diff)
downloadgentoo-943ca626fcea180ed77c2cf5746288a77276fea0.tar.gz
gentoo-943ca626fcea180ed77c2cf5746288a77276fea0.tar.bz2
gentoo-943ca626fcea180ed77c2cf5746288a77276fea0.zip
gui-apps/grim: drop 1.4.0-r1
Closes: https://bugs.gentoo.org/901807 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'gui-apps')
-rw-r--r--gui-apps/grim/grim-1.4.0-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/gui-apps/grim/grim-1.4.0-r1.ebuild b/gui-apps/grim/grim-1.4.0-r1.ebuild
deleted file mode 100644
index fd3752c9452e..000000000000
--- a/gui-apps/grim/grim-1.4.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 meson
-
-DESCRIPTION="Grab images from a Wayland compositor"
-HOMEPAGE="https://sr.ht/~emersion/grim"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://git.sr.ht/~emersion/${PN}"
-else
- SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man jpeg"
-
-RDEPEND="
- dev-libs/wayland
- media-libs/libpng
- x11-libs/pixman
- jpeg? ( media-libs/libjpeg-turbo )
-"
-DEPEND="${RDEPEND}
- >=dev-libs/wayland-protocols-1.14
-"
-BDEPEND="man? ( app-text/scdoc )"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature jpeg)
- $(meson_feature man man-pages)
- "-Dbash-completions=false"
- "-Dfish-completions=false"
- )
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
- newbashcomp contrib/completions/bash/grim.bash grim
- insinto /usr/share/fish/vendor_completions.d/
- doins contrib/completions/grim.fish
-}