Gentoo Archives: gentoo-commits

From: NP Hardass <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-gecko/
Date: Mon, 10 Apr 2017 17:23:31
Message-Id: 1491844912.0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed.np-hardass@gentoo
1 commit: 0fa7249fa80c15e0b63a08da1fdb3c8f87e08fed
2 Author: NP-Hardass <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 10 17:03:20 2017 +0000
4 Commit: NP Hardass <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 10 17:21:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa7249f
7
8 app-emulation/wine-gecko: Internet Explorer emulaton for Wine
9
10 Import from wine-a-holics overlay
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13
14 app-emulation/wine-gecko/Manifest | 2 ++
15 app-emulation/wine-gecko/metadata.xml | 14 +++++++++++
16 app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild | 28 ++++++++++++++++++++++
17 3 files changed, 44 insertions(+)
18
19 diff --git a/app-emulation/wine-gecko/Manifest b/app-emulation/wine-gecko/Manifest
20 new file mode 100644
21 index 00000000000..8ffa01f8a54
22 --- /dev/null
23 +++ b/app-emulation/wine-gecko/Manifest
24 @@ -0,0 +1,2 @@
25 +DIST wine_gecko-2.47-x86.msi 49266176 SHA256 3b8a361f5d63952d21caafd74e849a774994822fb96c5922b01d554f1677643a SHA512 e0d06102dcb8ec2d24e8c8c3f5c2ee5cb47c18e203dfb43d85de008d682ff874fb664fef1df909a5a7857de39c7e8ce5175e734a11964ec4cd35f8fbacaea3a4 WHIRLPOOL 2b4e3e88d530106d942200e5cdc67e51fc529c51864dee687ff1d6ae4cc94557481f74797a5ca7c1de8ca5ad00f7d9cb71e484ab24d73867d1032ccd88c0c376
26 +DIST wine_gecko-2.47-x86_64.msi 50806272 SHA256 c565ea25e50ea953937d4ab01299e4306da4a556946327d253ea9b28357e4a7d SHA512 7c2496b15a06bc6906bc60afb3ac082e3f9931207fa624e60297020211d66aa9b420a61e95730a0dbdcefbe4b26c811d0c896ecd9c363b5107d08c3fa22fef41 WHIRLPOOL c7619954da22a47dae86ef4c6c0cfbece41943edcceb2c21babe610e0a0b2197b244ebbddd2f3986ee4d5251b062e5f3b8e079426ec77c311b928d18c8451677
27
28 diff --git a/app-emulation/wine-gecko/metadata.xml b/app-emulation/wine-gecko/metadata.xml
29 new file mode 100644
30 index 00000000000..41e683d85cb
31 --- /dev/null
32 +++ b/app-emulation/wine-gecko/metadata.xml
33 @@ -0,0 +1,14 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="project">
38 + <email>wine@g.o</email>
39 + <name>Wine</name>
40 + </maintainer>
41 + <longdescription>
42 + A Mozilla Gecko based version of Internet Explorer for Wine
43 + </longdescription>
44 + <upstream>
45 + <remote-id type="sourceforge">wine/wine-gecko</remote-id>
46 + </upstream>
47 +</pkgmetadata>
48
49 diff --git a/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild b/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild
50 new file mode 100644
51 index 00000000000..de77b7295b0
52 --- /dev/null
53 +++ b/app-emulation/wine-gecko/wine-gecko-2.47-r1.ebuild
54 @@ -0,0 +1,28 @@
55 +# Copyright 1999-2017 Gentoo Foundation
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=6
59 +
60 +MY_PN=${PN/-/_}
61 +
62 +DESCRIPTION="A Mozilla Gecko based version of Internet Explorer for Wine"
63 +HOMEPAGE="https://winehq.org"
64 +SRC_URI="
65 + abi_x86_32? ( https://dl.winehq.org/wine/${PN}/${PV}/${MY_PN}-${PV}-x86.msi )
66 + abi_x86_64? ( https://dl.winehq.org/wine/${PN}/${PV}/${MY_PN}-${PV}-x86_64.msi )
67 +"
68 +
69 +LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
70 +SLOT="${PV}"
71 +KEYWORDS="~amd64 ~x86"
72 +IUSE="abi_x86_32 abi_x86_64"
73 +
74 +DEPEND="!!app-emulation/wine:0"
75 +
76 +S="${WORKDIR}"
77 +
78 +src_install(){
79 + insinto /usr/share/wine/gecko
80 + use abi_x86_32 && doins "${DISTDIR}/${MY_PN}-${PV}-x86.msi"
81 + use abi_x86_64 && doins "${DISTDIR}/${MY_PN}-${PV}-x86_64.msi"
82 +}