mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
Revert multiple meaningless eclass documentation changes, notably adding a lot of placeholders and documenting implementation details. These changes were aimed at silencing (valid) documentation warnings without actually providing valuable documentation to the end users. While some of these changes were beneficial, it would take a lot of effort to review them all and the author is unwilling to fix his mistakes. Signed-off-by: Michał Górny <mgorny@gentoo.org>
59 lines
1.6 KiB
Bash
59 lines
1.6 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# @ECLASS: findlib.eclass
|
|
# @MAINTAINER:
|
|
# maintainer-needed@gentoo.org
|
|
# @AUTHOR:
|
|
# Original author: Matthieu Sozeau <mattam@gentoo.org> (retired)
|
|
# @BLURB: ocamlfind (a.k.a. findlib) eclass
|
|
# @DESCRIPTION:
|
|
# ocamlfind (a.k.a. findlib) eclass
|
|
|
|
|
|
|
|
# From this findlib version there is proper stublibs support.
|
|
DEPEND=">=dev-ml/findlib-1.0.4-r1"
|
|
[[ ${FINDLIB_USE} ]] && DEPEND="${FINDLIB_USE}? ( ${DEPEND} )"
|
|
|
|
check_ocamlfind() {
|
|
if [ ! -x "${EPREFIX}"/usr/bin/ocamlfind ]
|
|
then
|
|
eerror "In findlib.eclass: could not find the ocamlfind executable"
|
|
eerror "Please report this bug on gentoo's bugzilla, assigning to ml@gentoo.org"
|
|
die "ocamlfind executabled not found"
|
|
fi
|
|
}
|
|
|
|
# @FUNCTION: findlib_src_preinst
|
|
# @DESCRIPTION:
|
|
# Prepare the image for a findlib installation.
|
|
# We use the stublibs style, so no ld.conf needs to be
|
|
# updated when a package installs C shared libraries.
|
|
findlib_src_preinst() {
|
|
has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=
|
|
has "${EAPI:-0}" 0 1 2 && use !prefix && ED="${D}"
|
|
check_ocamlfind
|
|
|
|
# destdir is the ocaml sitelib
|
|
local destdir=`ocamlfind printconf destdir`
|
|
|
|
# strip off prefix
|
|
destdir=${destdir#${EPREFIX}}
|
|
|
|
dodir ${destdir} || die "dodir failed"
|
|
export OCAMLFIND_DESTDIR=${ED}${destdir}
|
|
|
|
# stublibs style
|
|
dodir ${destdir}/stublibs || die "dodir failed"
|
|
export OCAMLFIND_LDCONF=ignore
|
|
}
|
|
|
|
# @FUNCTION: findlib_src_install
|
|
# @DESCRIPTION:
|
|
# Install with a properly setup findlib
|
|
findlib_src_install() {
|
|
findlib_src_preinst
|
|
make DESTDIR="${D}" "$@" install || die "make failed"
|
|
}
|