diff options
author | Pacho Ramos <pacho@gentoo.org> | 2020-12-01 23:00:33 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2020-12-01 23:15:20 +0100 |
commit | 277abc59a10fa7214930d0eac40aef2a45af8ffe (patch) | |
tree | c6ff1dc26bbee1852335120881a4cae1c1324661 /gnome-extra | |
parent | gnome-extra/gnome-shell-extension-gsconnect: Bump to v44 (diff) | |
download | gentoo-277abc59a10fa7214930d0eac40aef2a45af8ffe.tar.gz gentoo-277abc59a10fa7214930d0eac40aef2a45af8ffe.tar.bz2 gentoo-277abc59a10fa7214930d0eac40aef2a45af8ffe.zip |
gnome-extra/gnome-shell-extension-appindicator: Bump to v34
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gnome-shell-extension-appindicator/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-34.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/gnome-extra/gnome-shell-extension-appindicator/Manifest b/gnome-extra/gnome-shell-extension-appindicator/Manifest index 1de11cdfc9cb..138feb789933 100644 --- a/gnome-extra/gnome-shell-extension-appindicator/Manifest +++ b/gnome-extra/gnome-shell-extension-appindicator/Manifest @@ -1 +1,2 @@ DIST gnome-shell-extension-appindicator-33.tar.gz 32600 BLAKE2B d24e18dc3697baf5f6a5466da6ba6bc4e699bb20cabde80dcfb007b339246cfb940af4407bc99d22632a1dfa1fe255a60fcf608ec50af88e3edbb2dcbceddf69 SHA512 ceb79a1fa22440210477e53e1ebca3db3ea81eb8a45613c46d37f44ebb3e063b626a073df519af978becf1c6a83d68c02a26f22bf0a9ed43e2299bbab7acb599 +DIST gnome-shell-extension-appindicator-34.tar.gz 34764 BLAKE2B 3a619f810d9ddf7984fc3b0c96735eb0f9233f36ff3cbddc5b28a8243f55d57cbc9c58b49516e99b30f35b12b6e747b7fa288fdc36f99cf7e61b7ad8cc2e84de SHA512 1f02a7cc3cfb90af8ee1a0bb39135fb3203bcc87d13cda0cf7f110db4b838a7c082eba30246a913306ef0e4b2fdb7c9f52f24f62525013ff8f1de9d054d45425 diff --git a/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-34.ebuild b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-34.ebuild new file mode 100644 index 000000000000..933325eeb279 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-34.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Support Ubuntu AppIndicators and KStatusNotifierItems in Gnome" +HOMEPAGE="https://github.com/ubuntu/gnome-shell-extension-appindicator" +SRC_URI="https://github.com/ubuntu/gnome-shell-extension-appindicator/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-eselect/eselect-gnome-shell-extensions + dev-libs/libappindicator:3 + >=gnome-base/gnome-shell-3.34 +" +DEPEND="" +BDEPEND="" + +src_compile () { :; } + +src_install() { + einstalldocs + dodoc AUTHORS.md + rm -f AUTHORS.md LICENSE Makefile README.md || die + + insinto /usr/share/gnome-shell/extensions/appindicatorsupport@rgcjonas.gmail.com + doins -r * +} + +pkg_postinst() { + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? +} |