Using fun scripts like this, I’m checking and adding packages:
for i in *; do if [[ "$i" != "xcursorgen" ]] && [[ "$i" != "xkbcomp" ]] && [[ "$i" != "CVS" ]]; then cvs add $i ${i}/files; find $i -type f | grep -v CVS | xargs cvs add; pushd ${i}; echangelog "Initial commit for modular X."; cvs add ChangeLog; repoman scan; popd; fi; done