Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 07 Nov 2006 11:50:01 +0100
From:      Rene Ladan <r.c.ladan@gmail.com>
To:        freebsd-x11@freebsd.org
Subject:   packages with wrong origin
Message-ID:  <455064D9.2070702@gmail.com>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------020704050107060907090902
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

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


--------------020704050107060907090902
Content-Type: text/plain;
 name="chk-origin.sh"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="chk-origin.sh"

#!/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

--------------020704050107060907090902--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?455064D9.2070702>