--- portage/eclass/kde.eclass 2004-07-27 18:12:06.000000000 +0200 +++ portage-overlay/eclass/kde.eclass 2004-08-01 23:38:35.660653544 +0200 @@ -80,6 +80,15 @@ case $1 in myconf) debug-print-section myconf + einfo "You can skip applications by specifing DO_NOT_COMPILE=app1 app2" + einfo "in /etc/make.conf, this ebuild contains the following applications:" + for prgm in $(find ${S} -type d -maxdepth 1 -mindepth 1|sed 's%.*/%%'|grep -v CVS) ; do + if echo "${DO_NOT_COMPILE}"|grep -q "$prgm" ; then + eerror "${prgm} - DO NOT COMPILE" + else + einfo "${prgm}" + fi + done myconf="$myconf --host=${CHOST} --prefix=${PREFIX} --with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR} --enable-mt" # calculate dependencies separately from compiling, enables ccache to work on kde compiles [ -z "$UNSERMAKE" ] && myconf="$myconf --disable-dependency-tracking"