mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 08:11:01 +02:00
adblock_plus: v2.9.1 bump
This commit is contained in:
parent
7fef027022
commit
c4f6122ee2
2 changed files with 45 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST adblock_plus-2.8.2.xpi 1055311 SHA256 2de5616ae0ad17fd6345c6f8f8ec5bd8a8db1bdf8d8dad9995857ad2d6454306 SHA512 870f22e7b902a4c6569445892db7569f6698110b67dd578babe33bcc9ef70a787dc875d9f800ea12b49f2bee661493473b4ca5adb271d6607e7276c3e0705574 WHIRLPOOL 1c06fad545f037db37227d785f80621ca5b6817d6159dc557cf10d18a5e0277d18dcde1bd3b10a64019ea34bbf8ebee34f4b43cbe20e1634e72b2242061ea1c6
|
||||
DIST adblock_plus-2.9.1.xpi 1059016 SHA256 199b9e3a8531bd10451c3e8e8adc4c529b29a55979e742cbe52d9f308c3d606d SHA512 23bd76960bbeda7159b055972924f23756c1afc22bee481ca139c66b9e6321b2fc3bb53572fb7e9e0edbe3ae2b21dbd3fa451db3403dae90f931fd4691fc0c02 WHIRLPOOL abeddf73c14a38d1fdbe63aaba7b40559ce5d4eaa91f6cb1e72c3831556a863e3c0e060e346c03ca62125b80449aaa27dbf9f9091551c8ca0248d12a30b59f97
|
||||
DIST adblock_plus-9999.xpi 1055311 SHA256 2de5616ae0ad17fd6345c6f8f8ec5bd8a8db1bdf8d8dad9995857ad2d6454306 SHA512 870f22e7b902a4c6569445892db7569f6698110b67dd578babe33bcc9ef70a787dc875d9f800ea12b49f2bee661493473b4ca5adb271d6607e7276c3e0705574 WHIRLPOOL 1c06fad545f037db37227d785f80621ca5b6817d6159dc557cf10d18a5e0277d18dcde1bd3b10a64019ea34bbf8ebee34f4b43cbe20e1634e72b2242061ea1c6
|
||||
|
|
|
|||
44
www-plugins/adblock_plus/adblock_plus-2.9.1.ebuild
Normal file
44
www-plugins/adblock_plus/adblock_plus-2.9.1.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit mozilla-addon
|
||||
|
||||
MOZ_FILEID="660890"
|
||||
#https://services.addons.mozilla.org/en-US/firefox/api/1.5/addon/adblock-plus
|
||||
|
||||
DESCRIPTION="Firefox extension to block annoying ads automatically, no distractions."
|
||||
HOMEPAGE="http://adblockplus.org/en/firefox"
|
||||
SRC_URI="http://addons.mozilla.org/downloads/file/${MOZ_FILEID} -> ${P}.xpi"
|
||||
#https://addons.mozilla.org/firefox/downloads/file/541651/adblock_plus-2.8.2-an+fx+sm+tb.xpi?src=version-history
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="+symlink_all_targets target_firefox target_thunderbird target_seamonkey target_firefox-bin target_thunderbird-bin target_seamonkey-bin"
|
||||
|
||||
RDEPEND="
|
||||
!symlink_all_targets? (
|
||||
target_firefox? ( www-client/firefox )
|
||||
target_firefox-bin? ( www-client/firefox-bin )
|
||||
target_seamonkey? ( www-client/seamonkey )
|
||||
target_seamonkey-bin? ( www-client/seamonkey-bin )
|
||||
target_thunderbird? ( mail-client/thunderbird )
|
||||
target_thunderbird-bin? ( mail-client/thunderbird-bin )
|
||||
)"
|
||||
|
||||
src_install() {
|
||||
# symlink all possible target paths if this is set
|
||||
if use symlink_all_targets; then
|
||||
MZA_TARGETS="firefox thunderbird seamonkey firefox-bin thunderbird-bin seamonkey-bin"
|
||||
else
|
||||
use target_firefox && MZA_TARGETS+=" firefox"
|
||||
use target_firefox-bin && MZA_TARGETS+=" firefox-bin"
|
||||
use target_thunderbird && MZA_TARGETS+=" thunderbird"
|
||||
use target_thunderbird-bin && MZA_TARGETS+=" thunderbird-bin"
|
||||
use target_seamonkey && MZA_TARGETS+=" seamonkey"
|
||||
use target_seamonkey-bin && MZA_TARGETS+=" seamonkey-bin"
|
||||
fi
|
||||
mozilla-addon_src_install
|
||||
}
|
||||
Loading…
Reference in a new issue