diff options
author | Nick Sarnie <sarnex@gentoo.org> | 2020-01-23 19:15:07 -0500 |
---|---|---|
committer | Nick Sarnie <sarnex@gentoo.org> | 2020-01-23 19:15:07 -0500 |
commit | 732ae2d3b8608b9123f6289073fe8f299b41a12d (patch) | |
tree | 4eacf1b31cc5c7dbd52717de11b05fdeab0a0645 /app-emulation/wine-gecko | |
parent | dev-lang/lua: fix pkgconfig for lua 5.3 (diff) | |
download | gentoo-732ae2d3b8608b9123f6289073fe8f299b41a12d.tar.gz gentoo-732ae2d3b8608b9123f6289073fe8f299b41a12d.tar.bz2 gentoo-732ae2d3b8608b9123f6289073fe8f299b41a12d.zip |
app-emulation/wine-gecko: Sync with ::wine
Bump to 2.47.1
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Nick Sarnie <sarnex@gentoo.org>
Diffstat (limited to 'app-emulation/wine-gecko')
-rw-r--r-- | app-emulation/wine-gecko/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/wine-gecko/wine-gecko-2.47.1.ebuild | 26 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app-emulation/wine-gecko/Manifest b/app-emulation/wine-gecko/Manifest index 05966e9787c0..7daaaf510bfd 100644 --- a/app-emulation/wine-gecko/Manifest +++ b/app-emulation/wine-gecko/Manifest @@ -1,2 +1,4 @@ +DIST wine-gecko-2.47.1-x86.msi 50735104 BLAKE2B c082e22fdbf1681e0c38e8822bc1a8f99b47d91f7d32f22bfad716685553d3d10fd4004f90135d90f39f4ff05cba37665455679e08ce3a140ca8ded76cb7a9ea SHA512 ef13838bf7d5bdd74d06bbbdccc6b18cc75b4d0c2b3db8c978b9500cdfeb058bf5532d89b77c164eab52c1f93ae2e2540b37f6694a3e560aace3ebc7da2c7596 +DIST wine-gecko-2.47.1-x86_64.msi 52311040 BLAKE2B 2a9aa68461d2b9f69ada1e50925de7ba9804a4992c9d0a717c9c5d1340179e7f10e550c8db170bb33c79e24dcd068e00648c572c6b4e4d836a507ada6e7bbccd SHA512 f875d9a7c68a33abf6dd25d61ff6dd3e5ff246768880e3ee4984ab63b065a7b0ef55411b710e4cb9db48bd2114cbd3fbd97f24e819d7d71c2212dd612abaaf43 DIST wine_gecko-2.47-x86.msi 49266176 BLAKE2B 6b1d4ebf53fac422c2da9ae7f5b6ab9064d2b6cc20d57fe13707395e71305ac1607a440624d3a545fe1e0391bc92bf5b594173549e519eda967bb833b69b2f52 SHA512 e0d06102dcb8ec2d24e8c8c3f5c2ee5cb47c18e203dfb43d85de008d682ff874fb664fef1df909a5a7857de39c7e8ce5175e734a11964ec4cd35f8fbacaea3a4 DIST wine_gecko-2.47-x86_64.msi 50806272 BLAKE2B 6f91d4661a322eca41042cb7a246d5bff76ab72b4bda67183fc36735c923bd6d76624f21fd3e59f63fd872704edcf0116a6e7ab4fa6f074f5098c8fb5307534c SHA512 7c2496b15a06bc6906bc60afb3ac082e3f9931207fa624e60297020211d66aa9b420a61e95730a0dbdcefbe4b26c811d0c896ecd9c363b5107d08c3fa22fef41 diff --git a/app-emulation/wine-gecko/wine-gecko-2.47.1.ebuild b/app-emulation/wine-gecko/wine-gecko-2.47.1.ebuild new file mode 100644 index 000000000000..6f99f662aee1 --- /dev/null +++ b/app-emulation/wine-gecko/wine-gecko-2.47.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A Mozilla Gecko based version of Internet Explorer for Wine" +HOMEPAGE="https://winehq.org" +SRC_URI=" + abi_x86_32? ( https://dl.winehq.org/wine/${PN}/${PV}/${PN}-${PV}-x86.msi ) + abi_x86_64? ( https://dl.winehq.org/wine/${PN}/${PV}/${PN}-${PV}-x86_64.msi ) +" + +LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0" +SLOT="${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="abi_x86_32 abi_x86_64" + +DEPEND="!!app-emulation/wine:0" + +S="${WORKDIR}" + +src_install(){ + insinto /usr/share/wine/gecko + use abi_x86_32 && doins "${DISTDIR}/${PN}-${PV}-x86.msi" + use abi_x86_64 && doins "${DISTDIR}/${PN}-${PV}-x86_64.msi" +} |