summaryrefslogtreecommitdiff
path: root/eclass/texlive-module.eclass
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-21 19:01:17 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-21 19:01:17 +0100
commit6b9ad6410884e4046c7c584bbaea45b5848d07b5 (patch)
tree41650f63ecf56774e90aee8621d751c23ab02543 /eclass/texlive-module.eclass
parent491c3b190bc8dfebeb156c06938f76034140b65f (diff)
gentoo resync : 21.07.2018
Diffstat (limited to 'eclass/texlive-module.eclass')
-rw-r--r--eclass/texlive-module.eclass51
1 files changed, 39 insertions, 12 deletions
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass
index 9dd2303635d4..882811774779 100644
--- a/eclass/texlive-module.eclass
+++ b/eclass/texlive-module.eclass
@@ -64,13 +64,15 @@
# @DESCRIPTION:
# Array variable specifying any patches to be applied.
-inherit texlive-common eutils
-
case "${EAPI:-0}" in
0|1|2)
die "EAPI='${EAPI}' is not supported anymore"
;;
+ 3|4|5)
+ inherit texlive-common eutils
+ ;;
*)
+ inherit texlive-common
;;
esac
@@ -82,19 +84,30 @@ IUSE="source"
# Starting from TeX Live 2009, upstream provides .tar.xz modules.
PKGEXT=tar.xz
-DEPEND="${COMMON_DEPEND}
- app-arch/xz-utils"
+case "${EAPI:-0}" in
+ 0|1|2|3|4|5|6)
+ DEPEND="${COMMON_DEPEND}
+ app-arch/xz-utils"
+ ;;
+ *)
+ # We do not need anything from SYSROOT:
+ # Everything is built from the texlive install in /
+ # Generated files are noarch
+ BDEPEND="${COMMON_DEPEND}
+ app-arch/xz-utils"
+ ;;
+esac
for i in ${TEXLIVE_MODULE_CONTENTS}; do
SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}"
done
# Forge doc SRC_URI
-[ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? ("
+[ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} doc? ("
for i in ${TEXLIVE_MODULE_DOC_CONTENTS}; do
SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${PV}.${PKGEXT}"
done
-[ -n "${PN##*documentation*}" ] && [ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )"
+[ -n "${TEXLIVE_MODULE_DOC_CONTENTS}" ] && SRC_URI="${SRC_URI} )"
# Forge source SRC_URI
if [ -n "${TEXLIVE_MODULE_SRC_CONTENTS}" ] ; then
@@ -107,7 +120,7 @@ fi
RDEPEND="${COMMON_DEPEND}"
-[ -z "${PN##*documentation*}" ] || IUSE="${IUSE} doc"
+IUSE="${IUSE} doc"
# @ECLASS-VARIABLE: TEXLIVE_MODULE_OPTIONAL_ENGINE
# @DESCRIPTION:
@@ -147,8 +160,15 @@ texlive-module_src_unpack() {
# Apply patches from the PATCHES array and user patches, if any.
texlive-module_src_prepare() {
- [[ ${#PATCHES[@]} -gt 0 ]] && epatch "${PATCHES[@]}"
- epatch_user
+ case "${EAPI:-0}" in
+ 0|1|2|3|4|5)
+ [[ ${#PATCHES[@]} -gt 0 ]] && epatch "${PATCHES[@]}"
+ epatch_user
+ ;;
+ *)
+ die "texlive-module_src_prepare is not to be used in EAPI ${EAPI}"
+ ;;
+ esac
}
# @FUNCTION: texlive-module_add_format
@@ -327,7 +347,7 @@ texlive-module_src_install() {
done
dodir /usr/share
- if [ -z "${PN##*documentation*}" ] || use doc; then
+ if use doc; then
[ -d texmf-doc ] && cp -pR texmf-doc "${ED}/usr/share/"
else
[ -d texmf/doc ] && rm -rf texmf/doc
@@ -396,5 +416,12 @@ texlive-module_pkg_postrm() {
etexmf-update
}
-EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install \
- pkg_postinst pkg_postrm
+case "${EAPI:-0}" in
+ 0|1|2|3|4|5)
+ EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install \
+ pkg_postinst pkg_postrm
+ ;;
+ *)
+ EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm
+ ;;
+esac