This set of bash functions might be useful:
# This will list the options for the package matching the first parameter in the repo given by the second parameter options () { sqlite3 /var/db/pkg/repo-$2.sqlite "SELECT p.name,o.option,po.value FROM option o, packages p, pkg_option po WHERE po.package_id = p.id and po.option_id = o.option_id and p.name like '$1' ORDER BY name,option" } # This will show the difference between the myrepo repo and the FreeBSD repo for the package fiven as a parameter. This can be changed for any repos or repos from parameters options_diff () { diff -u <(options "$1" myrepo) <(options "$1" FreeBSD) | grep '^[+-]' }