commit:     229ca41113d1ebcc566d1a4e575579321666bafc
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 26 12:26:31 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 12:26:53 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=229ca411

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

 eclass/oasis.eclass | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/eclass/oasis.eclass b/eclass/oasis.eclass
index 7dc86f3..7a341ce 100644
--- a/eclass/oasis.eclass
+++ b/eclass/oasis.eclass
@@ -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} \

Reply via email to