The port has a tiny bug at pkg-plist file. When deinstalling or pkg_deletting without using LDAP, two directories are missing: # pkg_add /usr/ports/packages/All/gconf2-2.12.1.tbz # pkg_delete gconf2-2.12.1 pkg_delete: file '/usr/X11R6/share/GConf/schema' doesn't exist pkg_delete: unable to completely remove directory '/usr/X11R6/share/GConf/schema' pkg_delete: file '/usr/X11R6/share/GConf' doesn't exist pkg_delete: unable to completely remove directory '/usr/X11R6/share/GConf' pkg_delete: couldn't entirely delete package (perhaps the packing list isincorrectly specified?) Fix: There are two patches: o pkg-plist files fix; o sha256 checksum is added to distinfo file. WBR -- bsam--qPtP5aYi6KPhDqiDekfXWBwXZ4Wa4TqceXZNAPHcsEVPbl2u Content-Type: text/plain; name="pkg-plist.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="pkg-plist.patch" --- pkg-plist.orig Mon Nov 14 20:22:09 2005 +++ pkg-plist Mon Nov 14 21:14:38 2005 @@ -114,8 +114,8 @@ @unexec rmdir %D/share/locale/ku/LC_MESSAGES 2> /dev/null || true @unexec rmdir %D/share/locale/ku 2> /dev/null || true @dirrm share/doc/gconf -@dirrm share/GConf/schema -@dirrm share/GConf +@unexec rmdir %D/share/share/GConf/schema 2> /dev/null || true +@unexec rmdir %D/share/share/GConf 2> /dev/null || true @dirrm lib/GConf/2 @dirrm include/gconf/2/gconf @dirrm include/gconf/2
Responsible Changed From-To: freebsd-ports-bugs->gnome Over to maintainer
State Changed From-To: open->closed Committed a different patch, but thank you for reporting this.