forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST Alien-HDF4-0.05.tar.gz 3408 BLAKE2B af2d7d924712c2f520b391c897172a5116f4bded164a9249270aa5eb130a0d0a95939591a0002115c9f07c4da89f6c1ab31411a6daf666f2d7f7f6b4b214665a SHA512 1c9a81a7cdb74ef86c9d0a295b9f7143d207f0b9afd19047592990c173889d1ee7cd5a33c5a6e0970cbec65af7dfd40a66fe122a32ce5864b3a461577e1754bb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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>[email protected]</email> | ||
<name>Gentoo Perl Project</name> | ||
</maintainer> | ||
</pkgmetadata> |