2023-03-29 14:06:08 +02:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2023-03-29 14:52:16 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License-2
|
2023-03-29 14:06:08 +02:00
|
|
|
|
2023-03-29 14:18:23 +02:00
|
|
|
EAPI=8
|
|
|
|
|
2023-03-30 12:38:41 +02:00
|
|
|
inherit gnome2-utils meson toolchain-funcs xdg
|
2023-03-29 14:06:08 +02:00
|
|
|
|
2023-06-18 13:43:48 +02:00
|
|
|
COMMIT="847a303b1017479b4d412a7786a618fd2fe4f323"
|
2023-03-29 14:06:08 +02:00
|
|
|
DESCRIPTION="Gnome Camera Application"
|
2023-06-18 13:43:48 +02:00
|
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/Incubator/snapshot"
|
2023-06-18 13:53:21 +02:00
|
|
|
SRC_URI="https://gitlab.gnome.org/GNOME/Incubator/snapshot/-/archive/${PV}/snapshot-${PV}.tar.gz"
|
2023-03-30 12:38:41 +02:00
|
|
|
|
|
|
|
RESTRICT="network-sandbox"
|
2023-03-29 14:06:08 +02:00
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
|
|
|
|
DEPEND="
|
|
|
|
>=x11-libs/gtk+-3.0
|
2023-06-18 13:48:01 +02:00
|
|
|
>=gui-libs/libadwaita-1.4.0_alpha
|
2023-04-13 11:38:21 +02:00
|
|
|
>=media-libs/gstreamer-1.20.0
|
2023-06-18 13:43:48 +02:00
|
|
|
media-video/wireplumber
|
|
|
|
media-video/pipewire[gstreamer]
|
2023-03-29 14:06:08 +02:00
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
|
|
|
|
S="${WORKDIR}/snapshot-${COMMIT}"
|
|
|
|
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
xdg_pkg_postinst
|
|
|
|
gnome2_schemas_update
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
|
|
|
xdg_pkg_postrm
|
2023-03-30 12:33:06 +02:00
|
|
|
gnome2_schemas_update
|
2023-03-29 14:06:08 +02:00
|
|
|
}
|