Skip to content

Commit

Permalink
wxwidgets.eclass: Add EAPI support
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Lecher <[email protected]>
  • Loading branch information
jlec committed Feb 3, 2016
1 parent 8e42934 commit 8149283
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion eclass/wxwidgets.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,14 @@

if [[ -z ${_WXWIDGETS_ECLASS} ]]; then

inherit eutils flag-o-matic multilib
case ${EAPI} in
0|1|2|3|4|5)
inherit eutils flag-o-matic multilib
;;
*)
die "EAPI=${EAPI:-0} is not supported"
;;
esac

# We do this in global scope so ebuilds can get sane defaults just by
# inheriting.
Expand Down

0 comments on commit 8149283

Please sign in to comment.