kde5.eclass

> case ${KDE_TEST} in
> false) ;;
> *)
> IUSE+=" test"
> DEPEND+=" test? ( dev-qt/qttest:5 )"

No >=${QT_MINIMAL} in this dep?

> else
> unpack ${A}

I think you can use `default`

> if ! in_iuse examples || ! use examples ; then

if ! use_if_iuse examples ; then

> if ! in_iuse test || ! use test ; then

ditto

> if [ -n "${DBUS_SESSION_BUS_PID}" ] ; then

Use [[ ]], and you can also omit quoting.

> dohtml -r ${P}-apidocs/html/*

docinto html
dodoc -r ${P}-apidocs/html/*

Or even shorter, dodoc -r ${P}-apidocs/html (without docinto)

Thanks,
Davide

Reply via email to