If you have installed portupgrade, then you have portcvsweb
. What is portcvsweb
? Here’s a bit from the man page:
portcvsweb -- a tool to instantly browse a history via CVSweb
That’s nice!
Then, this morning, I thought about integrating this with FreshPorts. So I can up with this little patch:
[dan@bast:~/bin] $ diff -ru /usr/local/sbin/portcvsweb ~/bin/portcvsweb --- /usr/local/sbin/portcvsweb Thu Jun 23 11:55:34 2005 +++ /home/dan/bin/portcvsweb Wed Dec 14 09:27:55 2005 @@ -37,7 +37,7 @@ BROWSER = ENV['BROWSER'] || 'w3m:lynx:links:mozilla:netscape' CVSWEB_URI = { - 'FreeBSD' => 'http://www.FreeBSD.org/cgi/cvsweb.cgi/', + 'FreeBSD' => 'http://www.freshports.org/', 'NetBSD' => 'http://cvsweb.netbsd.org/bsdweb.cgi/', 'OpenBSD' => 'http://www.openbsd.org/cgi-bin/cvsweb/', } [dan@bast:~/bin] $