From: Pacho Ramos Date: Sun, 4 Nov 2018 12:22:08 +0000 (+0100) Subject: eclass/sgml-catalog.eclass: Stop using base.eclass X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=d6429bc3e8ca4d8ba36939713c4f9431b8ffbd13;p=gentoo.git eclass/sgml-catalog.eclass: Stop using base.eclass Thanks-to: Bernd Waibel Closes: https://bugs.gentoo.org/497052 Signed-off-by: Pacho Ramos --- diff --git a/eclass/sgml-catalog.eclass b/eclass/sgml-catalog.eclass index 7cc51fe3fdf4..5486533c2ea7 100644 --- a/eclass/sgml-catalog.eclass +++ b/eclass/sgml-catalog.eclass @@ -8,7 +8,10 @@ # Author Matthew Turk # @BLURB: Functions for installing SGML catalogs -inherit base +case ${EAPI:-0} in + 0|1|2|3|4|5) inherit base ;; + *) ;; +esac DEPEND=">=app-text/sgml-common-0.6.3-r2"