diff options
author | NP-Hardass <NP-Hardass@gentoo.org> | 2017-04-10 13:03:20 -0400 |
---|---|---|
committer | NP-Hardass <NP-Hardass@gentoo.org> | 2017-04-10 13:21:52 -0400 |
commit | 0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed (patch) | |
tree | 30346e3324dc969b9b9f47a0d851d6f99ac56d26 /app-emulation/wine-gecko | |
parent | app-emulation/wine-desktop-common: Shared files between variants/slots (diff) | |
download | gentoo-0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed.tar.gz gentoo-0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed.tar.bz2 gentoo-0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed.zip |
app-emulation/wine-gecko: Internet Explorer emulaton for Wine
Import from wine-a-holics overlay
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-emulation/wine-gecko')
-rw-r--r-- | app-emulation/wine-gecko/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/wine-gecko/metadata.xml | 14 | ||||
-rw-r--r-- | app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild | 28 |
3 files changed, 44 insertions, 0 deletions
diff --git a/app-emulation/wine-gecko/Manifest b/app-emulation/wine-gecko/Manifest new file mode 100644 index 000000000000..8ffa01f8a54e --- /dev/null +++ b/app-emulation/wine-gecko/Manifest @@ -0,0 +1,2 @@ +DIST wine_gecko-2.47-x86.msi 49266176 SHA256 3b8a361f5d63952d21caafd74e849a774994822fb96c5922b01d554f1677643a SHA512 e0d06102dcb8ec2d24e8c8c3f5c2ee5cb47c18e203dfb43d85de008d682ff874fb664fef1df909a5a7857de39c7e8ce5175e734a11964ec4cd35f8fbacaea3a4 WHIRLPOOL 2b4e3e88d530106d942200e5cdc67e51fc529c51864dee687ff1d6ae4cc94557481f74797a5ca7c1de8ca5ad00f7d9cb71e484ab24d73867d1032ccd88c0c376 +DIST wine_gecko-2.47-x86_64.msi 50806272 SHA256 c565ea25e50ea953937d4ab01299e4306da4a556946327d253ea9b28357e4a7d SHA512 7c2496b15a06bc6906bc60afb3ac082e3f9931207fa624e60297020211d66aa9b420a61e95730a0dbdcefbe4b26c811d0c896ecd9c363b5107d08c3fa22fef41 WHIRLPOOL c7619954da22a47dae86ef4c6c0cfbece41943edcceb2c21babe610e0a0b2197b244ebbddd2f3986ee4d5251b062e5f3b8e079426ec77c311b928d18c8451677 diff --git a/app-emulation/wine-gecko/metadata.xml b/app-emulation/wine-gecko/metadata.xml new file mode 100644 index 000000000000..41e683d85cb6 --- /dev/null +++ b/app-emulation/wine-gecko/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>wine@gentoo.org</email> + <name>Wine</name> + </maintainer> + <longdescription> + A Mozilla Gecko based version of Internet Explorer for Wine + </longdescription> + <upstream> + <remote-id type="sourceforge">wine/wine-gecko</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild b/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild new file mode 100644 index 000000000000..de77b7295b06 --- /dev/null +++ b/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN=${PN/-/_} + +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}/${MY_PN}-${PV}-x86.msi ) + abi_x86_64? ( https://dl.winehq.org/wine/${PN}/${PV}/${MY_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}/${MY_PN}-${PV}-x86.msi" + use abi_x86_64 && doins "${DISTDIR}/${MY_PN}-${PV}-x86_64.msi" +} |