Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xar/
Date: Sat, 02 Nov 2019 17:26:23
Message-Id: 1572715571.c41e4e8d39a9d4399ffcabf91c1bcb9a9cc4607d.grobian@gentoo
1 commit: c41e4e8d39a9d4399ffcabf91c1bcb9a9cc4607d
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 2 17:25:37 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 17:26:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41e4e8d
7
8 app-arch/xar: version bump -r3 (417.1), bug #694606
9
10 Closes: https://bugs.gentoo.org/694606
11 Package-Manager: Portage-2.3.76, Repoman-2.3.16
12 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
13
14 app-arch/xar/Manifest | 1 +
15 app-arch/xar/xar-1.8-r3.ebuild | 64 ++++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 65 insertions(+)
17
18 diff --git a/app-arch/xar/Manifest b/app-arch/xar/Manifest
19 index 4205e8ead62..ca6f1ec9cfa 100644
20 --- a/app-arch/xar/Manifest
21 +++ b/app-arch/xar/Manifest
22 @@ -1 +1,2 @@
23 DIST xar-400.tar.gz 213319 BLAKE2B 55b8695313a1a5ae778b62791f716af00edba7e7b01500eac4b951e04cf7b18e84e0d508ac5471996796e5ab59e4628a4f85a63a5929b372555e28b222c77ab1 SHA512 c54850d5443c776f18d788bf7d026b3b08274ee71321d1615238c9fa2d20cc0b21f3f298364b0d0eecd98ce2a6efc8d5039cabd5a21c2419c430d90db004d159
24 +DIST xar-417.1.tar.gz 219350 BLAKE2B 2ca073e52b8d7a12c3d33fb65ccaf0984b912f42e4e9dc52bcaec7af41bafcc530cd055da16646113fb24ee046122425a66351f88279ef79a0f0b2b04ae51f9a SHA512 4c3c61f5289d0b2e380cbde772b383da369ca8ad046f5d779e02f59300288c90c5e31d105a2c01ac17dc719b8b46b55d8d36a8b3b20360f315766fce92dec762
25
26 diff --git a/app-arch/xar/xar-1.8-r3.ebuild b/app-arch/xar/xar-1.8-r3.ebuild
27 new file mode 100644
28 index 00000000000..18ab6a29a1f
29 --- /dev/null
30 +++ b/app-arch/xar/xar-1.8-r3.ebuild
31 @@ -0,0 +1,64 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +inherit flag-o-matic multilib-minimal multilib ltprune
37 +
38 +APPLE_PV=417.1
39 +DESCRIPTION="An easily extensible archive format"
40 +HOMEPAGE="https://opensource.apple.com/source/xar/"
41 +SRC_URI="https://opensource.apple.com/tarballs/xar/xar-${APPLE_PV}.tar.gz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +IUSE="libressl kernel_Darwin"
47 +
48 +DEPEND="
49 + !kernel_Darwin? (
50 + !kernel_SunOS? ( virtual/acl )
51 + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
52 + libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
53 + )
54 + app-arch/bzip2[${MULTILIB_USEDEP}]
55 + sys-libs/zlib[${MULTILIB_USEDEP}]
56 + dev-libs/libxml2[${MULTILIB_USEDEP}]
57 +"
58 +RDEPEND="${DEPEND}"
59 +
60 +PATCHES=(
61 + "${FILESDIR}"/${PN}-1.6.1-ext2.patch
62 + "${FILESDIR}"/${PN}-1.8-safe_dirname.patch
63 + "${FILESDIR}"/${PN}-1.8-arm-ppc.patch
64 + "${FILESDIR}"/${PN}-1.8-openssl-1.1.patch
65 +)
66 +
67 +S=${WORKDIR}/${PN}-${APPLE_PV}/${PN}
68 +
69 +src_prepare() {
70 + default
71 +
72 + # make lib headers available (without installing first?)
73 + cd "${S}"/include || die
74 + mv ../lib/*.h . || die
75 +
76 + # strip RPATH pointing to ED
77 + cd "${S}"/src || die
78 + sed -i -e 's/@RPATH@//' Makefile.inc.in || die
79 +}
80 +
81 +multilib_src_configure() {
82 + use kernel_Darwin || append-libs $(pkg-config --libs openssl)
83 + ECONF_SOURCE=${S} \
84 + econf \
85 + --disable-static
86 + # botched check, fix it up
87 + if use kernel_SunOS ; then
88 + sed -i -e '/HAVE_SYS_ACL_H/s:^\(.*\)$:/* \1 */:' include/config.h || die
89 + fi
90 +}
91 +
92 +multilib_src_install() {
93 + default
94 + prune_libtool_files
95 +}