diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2020-10-03 17:18:24 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2020-10-03 17:18:40 +0200 |
commit | f3331c4337bf8dfc480f1bff322d2a723b6a312a (patch) | |
tree | 7ab9f0fbd8f78e8daa1105139a2c39713d86e548 /media-sound/bristol | |
parent | media-libs/libraw: Stabilize 0.20.0 x86, #744190 (diff) | |
download | gentoo-f3331c4337bf8dfc480f1bff322d2a723b6a312a.tar.gz gentoo-f3331c4337bf8dfc480f1bff322d2a723b6a312a.tar.bz2 gentoo-f3331c4337bf8dfc480f1bff322d2a723b6a312a.zip |
media-sound/bristol: respect LDFLAGS
Closes: https://bugs.gentoo.org/727780
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/bristol')
-rw-r--r-- | media-sound/bristol/bristol-0.60.11-r1.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/media-sound/bristol/bristol-0.60.11-r1.ebuild b/media-sound/bristol/bristol-0.60.11-r1.ebuild index 01ee6cb806e3..14c3db1d7102 100644 --- a/media-sound/bristol/bristol-0.60.11-r1.ebuild +++ b/media-sound/bristol/bristol-0.60.11-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -23,7 +23,7 @@ BDEPEND=" RDEPEND=" virtual/jack x11-libs/libX11 - alsa? ( >=media-libs/alsa-lib-1.0.0 ) + alsa? ( media-libs/alsa-lib ) " # osc? ( >=media-libs/liblo-0.22 ) DEPEND="${RDEPEND} @@ -52,6 +52,10 @@ src_configure() { $(use_enable static-libs static) } +src_compile() { + emake LDFLAGS="${LDFLAGS}" +} + src_install() { default find "${D}" -name '*.la' -delete || die |