vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| While still not completely sold on the idea of split ebuilds, I wrote a one line bash command for getting a complete roster of kde ebuild files that are needed in order to compile the split ebuilds (as long as it remains unstable). It uses `find' instead of the for loop. Works for me, but I'm no find or sed expert. Comments appreciated. find /usr/portage/kde-base -name '*3.4.1.ebuild' -printf "=kde-base/%f\n" | sed s/.ebuild/'* \t~x86'/ Of course ~x86 should use whatever arch you need, and the tab is optional. The results should be redirected to a file and then appended to package.keywords. HTH |