pdns supports sqlite with an additional modul, which is build by adding to --with-modules=gsqlite. The ebuild has no support for that module. Reproducible: Always Steps to Reproduce: USE="sqlite" emerge -av pdns Actual Results: net-dns/pdns-2.9.17 -ldap -mysql -postgres -static Expected Results: net-dns/pdns-2.9.17 -ldap -mysql -postgres +sqlite -static The support can be added with two changes in the ebuild: ------------- schlepptop pdns # diff -Naur pdns-2.9.17.ebuild pdns-2.9.17-r1.ebuild --- pdns-2.9.17.ebuild 2005-02-12 12:35:41.000000000 +0100 +++ pdns-2.9.17-r1.ebuild 2005-05-03 18:29:36.000000000 +0200 @@ -15,6 +15,7 @@ DEPEND="virtual/libc mysql? ( >=dev-db/mysql-3.23.54a ) postgres? ( >=dev-cpp/libpqpp-4.0-r1 ) + sqlite? ( =dev-db/sqlite-2.8* ) ldap? ( >=net-nds/openldap-2.0.27-r4 )" RDEPEND="${DEPEND}" @@ -33,6 +34,7 @@ use mysql && modules="gmysql $modules" use postgres && modules="gpgsql $modules" + use sqlite && modules="gsqlite $modules" use ldap && modules="ldap $modules" econf --with-modules="$modules" \ ------------- pdns is actually not working with sqlite-3.*, therefore the restriction in depend..
Jared, please list yourself as the maintainer in the metadata.xml file
Thanks, available in the 2.9.18 ebuild.