dev-perl/Bio-DB-HTS: respect LDFLAGS

Closes: https://bugs.gentoo.org/713816
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Marek Szuba <marecki@gentoo.org>
This commit is contained in:
Marek Szuba
2020-03-24 23:06:38 +01:00
parent 7150af5e6c
commit 9e4c8752a1
3 changed files with 25 additions and 1 deletions

View File

@@ -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=6
@@ -24,6 +24,7 @@ DEPEND="${RDEPEND}
test? ( dev-perl/Test-LeakTrace )"
PATCHES=(
"${FILESDIR}/2.11-build_env_ldflags.patch"
"${FILESDIR}/2.11-build_split_htslib_opts.patch"
)

View File

@@ -24,6 +24,7 @@ DEPEND="${RDEPEND}
test? ( dev-perl/Test-LeakTrace )"
PATCHES=(
"${FILESDIR}/2.11-build_env_ldflags.patch"
"${FILESDIR}/2.11-build_split_htslib_opts.patch"
)

View File

@@ -0,0 +1,22 @@
--- a/Build.PL
+++ b/Build.PL
@@ -107,11 +107,17 @@
my $hts_include = $self->config_data('hts_include');
my $hts_lib = $self->config_data('hts_lib');
my $static = $self->args('static');
+
+ my @env_linker_flags;
+ if ( defined $ENV{LDFLAGS} ) {
+ @env_linker_flags = split qr{\s+}, $ENV{LDFLAGS};
+ }
+
$self->include_dirs([$hts_include]);
if($static){
- $self->extra_linker_flags("-L$hts_lib", '-lhts', '-lpthread', '-lz');
+ $self->extra_linker_flags(@env_linker_flags, "-L$hts_lib", '-lhts', '-lpthread', '-lz');
}else{
- $self->extra_linker_flags("-L$hts_lib", "-Wl,-rpath,$hts_lib", '-lhts', '-lpthread', '-lz');
+ $self->extra_linker_flags(@env_linker_flags, "-L$hts_lib", "-Wl,-rpath,$hts_lib", '-lhts', '-lpthread', '-lz');
}
}