Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/unshield/
Date: Thu, 25 Aug 2016 15:06:36
Message-Id: 1472137399.f785bc8dda9a69b2e312fa88a6fc28ec2c2c44a8.mjo@gentoo
1 commit: f785bc8dda9a69b2e312fa88a6fc28ec2c2c44a8
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 25 15:02:56 2016 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 25 15:03:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f785bc8d
7
8 app-arch/unshield: new version 1.3.
9
10 Gentoo-Bug: 530664
11
12 Package-Manager: portage-2.2.28
13
14 app-arch/unshield/Manifest | 1 +
15 app-arch/unshield/unshield-1.3.ebuild | 31 +++++++++++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/app-arch/unshield/Manifest b/app-arch/unshield/Manifest
19 index cb5bc6c..83ad095 100644
20 --- a/app-arch/unshield/Manifest
21 +++ b/app-arch/unshield/Manifest
22 @@ -1 +1,2 @@
23 DIST unshield-0.6_p20120308.tar.xz 31924 SHA256 5f857a496ff54b9e1121b8ce2ceaba78133e91e254203e81340010ee05224da6 SHA512 7eec3c401af4c43f599e1b1abae3efdc6b91bd132a86b6658656bec4f00040eed2b0addede7b555953ecc7b1c976fa03013820a25a68a226cf1b973caffb25c4 WHIRLPOOL 12d307b8345b604d10c42b52c28e1eb4eb9745a7b542da188b2a24c4a993b45cfd98a01740f3f30362c9b2714ba61d5e4c6f66a26e599356b5cef5b76130fc34
24 +DIST unshield-1.3.tar.gz 31787 SHA256 31a49c43b60e86b3ed731e0a1b988b88d35b755c85d103e93e1507278328bf73 SHA512 bff21eb5200857f5016d5ff55dd3afb67f35180896ffe6ee84fda04ea7b5e6041f43762676465400d6d720a6ae3496c4dd93f8e37aba99818515c6169ac27db1 WHIRLPOOL 5520a1c921ac17530bc5eddd38e4700403ee17aa93b4f9ffbdf3f2c3b26bc862a0fc5db58cac0ed37f539837bcfd98d03bd5de8f4abc7d76b2498205e7d071cd
25
26 diff --git a/app-arch/unshield/unshield-1.3.ebuild b/app-arch/unshield/unshield-1.3.ebuild
27 new file mode 100644
28 index 00000000..04c2fbe
29 --- /dev/null
30 +++ b/app-arch/unshield/unshield-1.3.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit cmake-utils
39 +
40 +DESCRIPTION="InstallShield CAB file extractor"
41 +HOMEPAGE="https://github.com/twogood/unshield"
42 +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~hppa ~ppc ~x86"
46 +
47 +# OpenSSL (or LibreSSL) is detected at build time, and used to determine
48 +# whether or not a hand-rolled md5 implementation is used. The build
49 +# system prefers OpenSSL's implementation if it's available, and OpenSSL
50 +# is common enough, so we prefer it too. Since the dependency is
51 +# automagic (there's no way to hide it), we require Open/LibreSSL
52 +# unconditionally.
53 +IUSE="libressl"
54 +
55 +DEPEND="
56 + !libressl? ( dev-libs/openssl:0= )
57 + libressl? ( dev-libs/libressl:0= )
58 + sys-libs/zlib"
59 +RDEPEND="${DEPEND}"
60 +
61 +# Without this, the build fails looking for unshield_config.h.
62 +CMAKE_IN_SOURCE_BUILD=y