mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-perl/Alien-HDF4: New package, needed by dev-perl/PDL
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
27
dev-perl/Alien-HDF4/Alien-HDF4-0.50.0.ebuild
Normal file
27
dev-perl/Alien-HDF4/Alien-HDF4-0.50.0.ebuild
Normal file
@@ -0,0 +1,27 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DIST_VERSION=0.05
|
||||
DIST_AUTHOR=ETJ
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Encapsulate install info for HDF4"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
sci-libs/hdf
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
"
|
||||
|
||||
BDEPEND="${RDEPEND}
|
||||
>=dev-perl/ExtUtils-Depends-0.402.0
|
||||
dev-perl/IO-All
|
||||
"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${P}-shared.patch" )
|
||||
1
dev-perl/Alien-HDF4/Manifest
Normal file
1
dev-perl/Alien-HDF4/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST Alien-HDF4-0.05.tar.gz 3408 BLAKE2B af2d7d924712c2f520b391c897172a5116f4bded164a9249270aa5eb130a0d0a95939591a0002115c9f07c4da89f6c1ab31411a6daf666f2d7f7f6b4b214665a SHA512 1c9a81a7cdb74ef86c9d0a295b9f7143d207f0b9afd19047592990c173889d1ee7cd5a33c5a6e0970cbec65af7dfd40a66fe122a32ce5864b3a461577e1754bb
|
||||
32
dev-perl/Alien-HDF4/files/Alien-HDF4-0.50.0-shared.patch
Normal file
32
dev-perl/Alien-HDF4/files/Alien-HDF4-0.50.0-shared.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
diff -ruN Alien-HDF4-0.05.orig/common.pl Alien-HDF4-0.05/common.pl
|
||||
--- Alien-HDF4-0.05.orig/common.pl 2019-04-27 03:01:25.000000000 +0200
|
||||
+++ Alien-HDF4-0.05/common.pl 2021-07-29 00:47:09.923447920 +0200
|
||||
@@ -36,13 +36,13 @@
|
||||
foreach my $libdir ( @HDF_lib_locations ) {
|
||||
return (
|
||||
$libdir, '-lmfhdfalt -ldfalt',
|
||||
- ) if -e "$libdir/libdfalt.a";
|
||||
+ ) if -e "$libdir/libdfalt.$Config{so}";
|
||||
return (
|
||||
$libdir, '-lmfhdf -ldf',
|
||||
- ) if -e "$libdir/libdf.a";
|
||||
+ ) if -e "$libdir/libdf.$Config{so}";
|
||||
return (
|
||||
$libdir, '-lmfhdf -lhdf -lxdr',
|
||||
- ) if -e "$libdir/libhdf.a";
|
||||
+ ) if -e "$libdir/libhdf.$Config{so}";
|
||||
}
|
||||
return;
|
||||
}
|
||||
diff -ruN Alien-HDF4-0.05.orig/Makefile.PL Alien-HDF4-0.05/Makefile.PL
|
||||
--- Alien-HDF4-0.05.orig/Makefile.PL 2019-04-27 02:53:52.000000000 +0200
|
||||
+++ Alien-HDF4-0.05/Makefile.PL 2021-07-29 00:46:34.395073467 +0200
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
my ($libpath, $libs) = findlibs();
|
||||
die <<EOF unless defined $libpath;
|
||||
-Cannot find hdf library, libdf.a.
|
||||
+Cannot find hdf library, libdf.$Config{so}.
|
||||
Please add the correct library path to Makefile.PL or install HDF
|
||||
EOF
|
||||
|
||||
8
dev-perl/Alien-HDF4/metadata.xml
Normal file
8
dev-perl/Alien-HDF4/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>perl@gentoo.org</email>
|
||||
<name>Gentoo Perl Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user