mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-astronomy/pal: Fix call to undeclared library function strlcpy
Closes: https://bugs.gentoo.org/898106 Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31558 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
committed by
Andrew Ammerlaan
parent
f977952654
commit
6af47f1b26
14
sci-astronomy/pal/files/pal-0.9.8-fix-strlcpy-musl.patch
Normal file
14
sci-astronomy/pal/files/pal-0.9.8-fix-strlcpy-musl.patch
Normal file
@@ -0,0 +1,14 @@
|
||||
Bug: https://bugs.gentoo.org/898106
|
||||
bsd/string.h is available on most libc's
|
||||
--- a/palDfltin.c
|
||||
+++ b/palDfltin.c
|
||||
@@ -121,6 +121,9 @@ static int ISBLANK( int c ) {
|
||||
|
||||
#ifdef HAVE_BSD_STRING_H
|
||||
#include <bsd/string.h>
|
||||
+#else
|
||||
+#define _GNU_SOURCE
|
||||
+#define __USE_MISC
|
||||
#endif
|
||||
|
||||
/* System include files */
|
||||
38
sci-astronomy/pal/pal-0.9.8-r1.ebuild
Normal file
38
sci-astronomy/pal/pal-0.9.8-r1.ebuild
Normal file
@@ -0,0 +1,38 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Positional Astronomy Library"
|
||||
HOMEPAGE="https://github.com/Starlink/pal"
|
||||
SRC_URI="https://github.com/Starlink/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="static-libs"
|
||||
RDEPEND="sci-astronomy/erfa:="
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-0.9.8-fix-strlcpy-musl.patch
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
econf --without-starlink \
|
||||
--without-stardocs \
|
||||
--with-erfa \
|
||||
$(use_enable static-libs static)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# remove cruft from non-fhs compliant
|
||||
dodoc -r "${ED}"/usr/{docs,manifests,news}
|
||||
rm -r "${ED}"/usr/{docs,manifests,news} || die
|
||||
|
||||
if ! use static-libs; then
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user