packages with wrong origin

Rene Ladan r.c.ladan at gmail.com
Tue Nov 7 10:50:05 UTC 2006


Hi,

I've run the attached script to find packages with a wrong
(non-existing) origin, and found that fontsproto still has origin
x11/fontsproto while it now lives in x11-fonts/fontsproto.

This is caused by
> CATEGRORIES=	x11
which should be
> CATEGORIES=	x11-fonts

Regards,
Rene
-- 
GPG fingerprint = E738 5471 D185 7013 0EE0  4FC8 3C1D 6F83 12E1 84F6
(subkeys.pgp.net)

"It won't fit on the line."
		-- me, 2001

-------------- next part --------------
#!/bin/sh
for i in /var/db/pkg/* ; do
	org=`pkg_info -qo $i`
	if [ ! -d /usr/ports/$org ] ; then
		echo $i mismatches $org
	fi
done


More information about the freebsd-x11 mailing list