summaryrefslogtreecommitdiff
path: root/x11-misc/gpaste/gpaste-3.36.3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
committerV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
commit752d6256e5204b958b0ef7905675a940b5e9172f (patch)
tree330d16e6362a49cbed8875a777fe641a43376cd3 /x11-misc/gpaste/gpaste-3.36.3.ebuild
parent0c100b7dd2b30e75b799d806df4ef899fd98e1ea (diff)
gentoo resync : 12.05.2022
Diffstat (limited to 'x11-misc/gpaste/gpaste-3.36.3.ebuild')
-rw-r--r--x11-misc/gpaste/gpaste-3.36.3.ebuild90
1 files changed, 0 insertions, 90 deletions
diff --git a/x11-misc/gpaste/gpaste-3.36.3.ebuild b/x11-misc/gpaste/gpaste-3.36.3.ebuild
deleted file mode 100644
index c80647c39d7f..000000000000
--- a/x11-misc/gpaste/gpaste-3.36.3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VALA_MIN_API_VERSION="0.30"
-VALA_USE_DEPEND="vapigen"
-
-inherit meson vala gnome2-utils
-
-DESCRIPTION="Clipboard management system"
-HOMEPAGE="https://github.com/Keruspe/GPaste"
-SRC_URI="https://github.com/Keruspe/GPaste/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+gnome +introspection systemd vala"
-REQUIRED_USE="
- gnome? ( introspection )
- vala? ( introspection )
-"
-
-DEPEND="
- dev-libs/appstream-glib
- >=dev-libs/glib-2.48:2
- sys-apps/dbus
- >=x11-libs/gdk-pixbuf-2.34:2
- >=x11-libs/gtk+-3.20:3
- x11-libs/libX11
- x11-libs/libXi
- x11-libs/pango
- gnome? (
- >=x11-wm/mutter-3.36
- )
- introspection? (
- dev-libs/gjs
- >=dev-libs/gobject-introspection-1.48.0
- >=x11-wm/mutter-3.36[introspection]
- )
-"
-BDEPEND="
- virtual/pkgconfig
- gnome? (
- gnome-base/gnome-control-center:2
- )
- systemd? (
- sys-apps/systemd
- )
- vala? ( $(vala_depend) )
-"
-RDEPEND="${DEPEND}
- gnome? (
- gnome-base/gnome-control-center:2
- gnome-base/gnome-shell
- )
- systemd? (
- sys-apps/systemd
- )
-"
-
-S="${WORKDIR}/GPaste-${PV}"
-
-src_prepare() {
- use vala && vala_src_prepare
- default
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_use systemd systemd)
- -Dbash-completion=true
- -Dzsh-completion=true
- -Dx-keybinder=true
- -Dcontrol-center-keybindings-dir=$(usex gnome '' \
- '/usr/share/gnome-control-center/keybindings')
- $(meson_use introspection introspection)
- $(meson_use vala vapi)
- $(meson_use gnome gnome-shell)
- )
- meson_src_configure
-}
-
-pkg_postinst() {
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- gnome2_schemas_update
-}