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-04-25 13:05:29 +02:00
|
|
|
COMMIT="de7dc2f4e41f433598531f08f33821ee58634684"
|
2023-03-29 14:06:08 +02:00
|
|
|
DESCRIPTION="Gnome Camera Application"
|
2023-04-25 13:05:29 +02:00
|
|
|
HOMEPAGE="https://gitlab.gnome.org/Incubator/snapshot"
|
2023-04-13 11:38:21 +02:00
|
|
|
SRC_URI="https://gitlab.gnome.org/Incubator/snapshot/-/archive/${COMMIT}/snapshot-${COMMIT}.tar.gz -> ${P}.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-04-27 11:38:31 +02:00
|
|
|
>=gui-libs/libadwaita-1.4.0
|
2023-04-13 11:38:21 +02:00
|
|
|
>=media-libs/gstreamer-1.20.0
|
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
|
|
|
}
|