eclass: Allow ebuilds to override docdir in oasis.eclass.

This commit is contained in:
Alexis Ballier
2015-10-26 13:26:31 +01:00
parent d940c49d0a
commit 229ca41113

View File

@@ -42,6 +42,13 @@
# The eclass takes care of setting debug in IUSE.
# Set before inheriting the eclass.
# @ECLASS-VARIABLE: OASIS_DOC_DIR
# @DESCRIPTION:
# Specify where to install documentation. Default is for ocamldoc HTML.
# Change it before inherit if this is not what you want.
# EPREFIX is automatically prepended.
: ${OASIS_DOC_DIR:="/usr/share/doc/${PF}/html"}
inherit multilib findlib eutils base
case ${EAPI:-0} in
@@ -80,7 +87,7 @@ oasis_src_configure() {
${OASIS_SETUP_COMMAND:-ocaml setup.ml} -configure \
--prefix "${EPREFIX}/usr" \
--libdir "${EPREFIX}/usr/$(get_libdir)" \
--docdir "${EPREFIX}/usr/share/doc/${PF}/html" \
--docdir "${EPREFIX}${OASIS_DOC_DIR}" \
--destdir "${D}" \
$(oasis_use_enable ocamlopt is_native) \
${confargs} \