Found these lines in configure: # The default is not prefix-sensitive, since systemd's prefix is not # necessarily the same as man-db's. with_systemdtmpfilesdir=/usr/lib/tmpfiles.d So we better specify this explicitly: --- man-db-2.7.1.ebuild 13 Jan 2015 14:31:25 -0000 1.2 +++ man-db-2.7.1.ebuild 3 Feb 2015 09:59:55 -0000 @@ -47,6 +47,7 @@ export ac_cv_lib_z_gzopen=$(usex zlib) econf \ --docdir='$(datarootdir)'/doc/${PF} \ + --with-systemdtmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d \ --enable-setuid \ --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o 1x 2x 3x 4x 5x 6x 7x 8x" \ $(use_enable nls) \ Eventually this should use $(get_libdir) as well? Thanks!
man that's terrible. feel free to commit your change. this path isn't ABI sensitive, so we don't want to use get_libdir.
Thanks!