From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DFF87138334 for ; Sun, 12 May 2019 04:53:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F71E0824; Sun, 12 May 2019 04:53:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB5EAE07E0 for ; Sun, 12 May 2019 04:53:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5655A3440E7 for ; Sun, 12 May 2019 04:53:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C14DA566 for ; Sun, 12 May 2019 04:53:53 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1557636700.b057a831a3f5ac46fe795b48d4bc2b2805df1726.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/rar2fs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/rar2fs/rar2fs-1.27.2-r1.ebuild X-VCS-Directories: sys-fs/rar2fs/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: b057a831a3f5ac46fe795b48d4bc2b2805df1726 X-VCS-Branch: master Date: Sun, 12 May 2019 04:53:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3f253036-f4c5-43bb-80f5-2854435ba1f6 X-Archives-Hash: acb9f0448acb9fdb762c0ff2c653eca6 commit: b057a831a3f5ac46fe795b48d4bc2b2805df1726 Author: Tim Harder gentoo org> AuthorDate: Sun May 12 04:46:06 2019 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun May 12 04:51:40 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b057a831 sys-fs/rar2fs: fix build with newer unrar that drops static libs Signed-off-by: Tim Harder gentoo.org> sys-fs/rar2fs/rar2fs-1.27.2-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/sys-fs/rar2fs/rar2fs-1.27.2-r1.ebuild b/sys-fs/rar2fs/rar2fs-1.27.2-r1.ebuild new file mode 100644 index 00000000000..3860f0c11db --- /dev/null +++ b/sys-fs/rar2fs/rar2fs-1.27.2-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A FUSE based filesystem that can mount one or multiple RAR archive(s)" +HOMEPAGE="https://hasse69.github.io/rar2fs/ https://github.com/hasse69/rar2fs" +SRC_URI="https://github.com/hasse69/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +# Note that upstream unrar sometimes breaks ABI without updating the SONAME +# version so try rebuilding rar2fs if it doesn't work following an unrar +# upgrade. +RDEPEND=">=app-arch/unrar-5:= + sys-fs/fuse:0" +DEPEND="${RDEPEND}" + +src_configure() { + export USER_CFLAGS="${CFLAGS}" + + econf \ + --with-unrar=/usr/include/libunrar \ + --disable-static-unrar \ + $(use_enable debug) +}