mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
gnome-extra/gnome-shell-extension-bing-wallpaper: add 52
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST gnome-shell-extension-bing-wallpaper-51.tar.gz 1606717 BLAKE2B 03bba610bc95f51b675818ce16d52fb275e8fea5dfcceb1cffca327f6fb4be75590235defee0a5029b0b95872cc0b78a7916b094f2e8242c3b4b02bd74e7222f SHA512 d65b764d534f4f5679e489a3c4c05dd1d7ed09e142c8ea15d903cdd0ee635128292508733ac5b52b311d4ef8a5ba4c034f15e9a81ce9d6841e10c449ebd24485
|
||||
DIST gnome-shell-extension-bing-wallpaper-52.tar.gz 1606719 BLAKE2B 4343473d864ab5517d40934403f21dbb476d0d09acf008f204803f18cb0d8073bbc5e0a18c3891c1e9682ba6b1d92c554067efcbfb51849ad74d89b0da200d11 SHA512 1df2af8ce8de602323ef36abc3e0a9ebd7634545db3cc1d29d6fa9c6bbfafa4e57e03ef852d78b012ff6e7ebc0044de4f52f5991a6921b92ab9a910c8c095892
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
inherit gnome2-utils
|
||||
|
||||
DESCRIPTION="Change your wallpaper daily to the bing.com background image"
|
||||
HOMEPAGE="https://github.com/neffo/bing-wallpaper-gnome-extension"
|
||||
SRC_URI="https://github.com/neffo/bing-wallpaper-gnome-extension/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/bing-wallpaper-gnome-extension-${PV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/glib:2
|
||||
app-eselect/eselect-gnome-shell-extensions
|
||||
>=gnome-base/gnome-shell-45
|
||||
net-libs/libsoup:3.0
|
||||
"
|
||||
|
||||
extension_uuid="BingWallpaper@ineffable-gmail.com"
|
||||
|
||||
PATCHES=(
|
||||
# https://github.com/neffo/bing-wallpaper-gnome-extension/issues/113
|
||||
"${FILESDIR}/${PN}-44-unlock-screen.patch"
|
||||
)
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
rm -f README.md LICENSE || die
|
||||
insinto /usr/share/glib-2.0/schemas
|
||||
doins schemas/*.xml
|
||||
rm -rf schemas
|
||||
insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
|
||||
doins -r *
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_schemas_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_schemas_update
|
||||
ebegin "Updating list of installed extensions"
|
||||
eselect gnome-shell-extensions update
|
||||
eend $?
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_schemas_update
|
||||
}
|
||||
Reference in New Issue
Block a user