Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/archivemount/
Date: Tue, 04 May 2021 22:18:04
Message-Id: 1620166634.d65a3ae8fbb248d8c8d13732e9d6406aa6710a44.sam@gentoo
1 commit: d65a3ae8fbb248d8c8d13732e9d6406aa6710a44
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Thu Apr 29 22:27:31 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 22:17:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65a3ae8
7
8 sys-fs/archivemount: Respect CFLAGS
9
10 Closes: https://bugs.gentoo.org/725998
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sys-fs/archivemount/archivemount-0.8.12.ebuild | 19 +++++++++++++++----
15 1 file changed, 15 insertions(+), 4 deletions(-)
16
17 diff --git a/sys-fs/archivemount/archivemount-0.8.12.ebuild b/sys-fs/archivemount/archivemount-0.8.12.ebuild
18 index d987a19f01e..793dfba16b5 100644
19 --- a/sys-fs/archivemount/archivemount-0.8.12.ebuild
20 +++ b/sys-fs/archivemount/archivemount-0.8.12.ebuild
21 @@ -1,8 +1,10 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27
28 +inherit autotools
29 +
30 DESCRIPTION="Mount archives using libarchive and FUSE"
31 HOMEPAGE="https://www.cybernoia.de/software/archivemount.html https://github.com/cybernoid/archivemount"
32 SRC_URI="https://www.cybernoia.de/software/archivemount/${P}.tar.gz"
33 @@ -11,7 +13,16 @@ LICENSE="GPL-2"
34 SLOT="0"
35 KEYWORDS="~amd64 ~x86"
36
37 -RDEPEND="app-arch/libarchive:=
38 +RDEPEND="
39 + app-arch/libarchive:=
40 sys-fs/fuse:0"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig"
43 +DEPEND="${RDEPEND}"
44 +BDEPEND="virtual/pkgconfig"
45 +
46 +src_prepare() {
47 + default
48 +
49 + # https://bugs.gentoo.org/725998
50 + sed -i -e 's/CFLAGS=//g' configure.ac || die
51 + eautoreconf
52 +}