dev-ml/camldbm: do not call ranlib directly

Closes: https://bugs.gentoo.org/723142
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2022-01-22 14:43:12 +01:00
parent 6aa37e6f0d
commit 2b4dbdea0d
2 changed files with 22 additions and 2 deletions

View File

@@ -1,8 +1,10 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="OCaml binding to the NDBM/GDBM Unix databases"
HOMEPAGE="http://forge.ocamlcore.org/projects/camldbm/"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/728/${P}.tgz"
@@ -20,6 +22,14 @@ PATCHES=(
"${FILESDIR}/include_fix.patch"
)
src_prepare() {
sed -i \
-e "s|ranlib|$(tc-getRANLIB)|g" \
Makefile \
|| die
default
}
src_install() {
dodir "$(ocamlc -where)/stublibs" # required and makefile does not create it
emake LIBDIR="${D}/$(ocamlc -where)" install

View File

@@ -1,8 +1,10 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="OCaml binding to the NDBM/GDBM Unix databases"
HOMEPAGE="https://github.com/ocaml/dbm"
SRC_URI="https://github.com/ocaml/dbm/archive/${P}.tar.gz"
@@ -21,6 +23,14 @@ QA_FLAGS_IGNORED=(
/usr/'lib.*'/ocaml/stublibs/dllcamldbm.so
)
src_prepare() {
sed -i \
-e "s|ranlib|$(tc-getRANLIB)|g" \
Makefile \
|| die
default
}
src_install() {
dodir "$(ocamlc -where)/stublibs" # required and makefile does not create it
emake LIBDIR="${D}/$(ocamlc -where)" install