Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/calf/
Date: Sat, 26 Jan 2019 11:50:59
Message-Id: 1548502500.960290b4d4b2dc8c06e9cd08297b3e724c9ac67a.fordfrog@gentoo
1 commit: 960290b4d4b2dc8c06e9cd08297b3e724c9ac67a
2 Author: Niklas Haas <git <AT> haasn <DOT> xyz>
3 AuthorDate: Sun Aug 26 16:28:06 2018 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 26 11:35:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=960290b4
7
8 media-plugins/calf: work around buggy configure check
9
10 The upstream project's configure.ac hard-codes a check to see if calf is
11 already installed to /usr/lib or /usr/local/lib, and if so, refuses to
12 configure (causing econf to fail) if `calf` is already installed on the
13 system.
14
15 Simply adding --without-obsolete-check to the configure invocation
16 disables this (pointless) check.
17
18 Closes: https://bugs.gentoo.org/661036
19 Closes: https://github.com/gentoo/gentoo/pull/9701
20 Signed-off-by: Niklas Haas <git <AT> haasn.xyz>
21 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
22
23 media-plugins/calf/calf-0.90.0-r1.ebuild | 1 +
24 media-plugins/calf/calf-0.90.0.ebuild | 1 +
25 media-plugins/calf/calf-9999.ebuild | 1 +
26 3 files changed, 3 insertions(+)
27
28 diff --git a/media-plugins/calf/calf-0.90.0-r1.ebuild b/media-plugins/calf/calf-0.90.0-r1.ebuild
29 index a065b446eb2..f5485eed1bf 100644
30 --- a/media-plugins/calf/calf-0.90.0-r1.ebuild
31 +++ b/media-plugins/calf/calf-0.90.0-r1.ebuild
32 @@ -46,6 +46,7 @@ src_configure() {
33 #$(use_with jack)
34 econf \
35 --prefix="${EPREFIX}"/usr \
36 + --without-obsolete-check \
37 $(use_with lash) \
38 $(use_with lv2 lv2) \
39 $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" "") \
40
41 diff --git a/media-plugins/calf/calf-0.90.0.ebuild b/media-plugins/calf/calf-0.90.0.ebuild
42 index 4d9473406b0..820905fdc57 100644
43 --- a/media-plugins/calf/calf-0.90.0.ebuild
44 +++ b/media-plugins/calf/calf-0.90.0.ebuild
45 @@ -45,6 +45,7 @@ src_configure() {
46 #$(use_with gtk gui)
47 #$(use_with jack)
48 econf \
49 + --without-obsolete-check \
50 $(use_with lash) \
51 $(use_with lv2 lv2) \
52 $(usex lv2 "--with-lv2-dir=/usr/$(get_libdir)/lv2" "") \
53
54 diff --git a/media-plugins/calf/calf-9999.ebuild b/media-plugins/calf/calf-9999.ebuild
55 index a065b446eb2..f5485eed1bf 100644
56 --- a/media-plugins/calf/calf-9999.ebuild
57 +++ b/media-plugins/calf/calf-9999.ebuild
58 @@ -46,6 +46,7 @@ src_configure() {
59 #$(use_with jack)
60 econf \
61 --prefix="${EPREFIX}"/usr \
62 + --without-obsolete-check \
63 $(use_with lash) \
64 $(use_with lv2 lv2) \
65 $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" "") \