From owner-freebsd-ports@FreeBSD.ORG Mon Jul 14 16:05:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EE8537B401 for ; Mon, 14 Jul 2003 16:05:42 -0700 (PDT) Received: from mailhost1.bishopston.net (mailhost1.bishopston.net [68.147.148.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06D0743FAF for ; Mon, 14 Jul 2003 16:05:41 -0700 (PDT) (envelope-from jamie@bishopston.net) X-Catflap-Envelope-From: X-Catflap-Envelope-To: freebsd-ports@freebsd.org Received: from catflap.bishopston.net (jamie@localhost [IPv6:::1]) h6EN5dIZ028891; Tue, 15 Jul 2003 00:05:39 +0100 (BST) (envelope-from jamie@catflap.bishopston.net) Received: (from jamie@localhost) by catflap.bishopston.net (8.12.9/8.12.7/Submit) id h6EN5dRh028888; Tue, 15 Jul 2003 00:05:39 +0100 (BST) From: Jamie Jones Message-Id: <200307142305.h6EN5dRh028888@catflap.bishopston.net> To: Daryl Chance In-Reply-To: <01058189910$083318$0001$h6EDcPIZ083305@mail2news.bishopston.net> References: <01058189910$083318$0001$h6EDcPIZ083305@mail2news.bishopston.net> X-newsgroup: bish.lists.freebsd.ports X-In-Response-To: Daryl Chance Date: Tue, 15 Jul 2003 00:05:38 +0100 X-Spam-Status: No, hits=-3.3 required=6.0 tests=AWL,BAYES_01,IN_REP_TO,REFERENCES version=2.55-catflap_1 X-Spam-Checker-Version: SpamAssassin 2.55-catflap_1 (1.174.2.19-2003-05-19-exp) cc: freebsd-ports@freebsd.org Subject: Re: portupgrade/make install problem. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2003 23:05:42 -0000 >===> Generating temporary packing list >===> Checking if sysutils/portupgrade already > installed > *** Error code 1 > > Stop in /usr/ports/sysutils/portupgrade. > *** Error code 1 > > Stop in /usr/ports/sysutils/portupgrade. Yes, I'd noticed this too - only today. It appears the Mk file has been changed to use the -O option of pkg_info That is a new option, that wasn't added to pkg_info on a release version until FreeBSD 4.7-RELEASE So someone will either have to regress it, or you'll need to upgrade to freebsd 4.8, or patch pkg_info (/usr/src/usr.sbin/pkg_install/info) Work Around ~~~~~~~~~~~ Define the environment variable FORCE_PKG_REGISTER to anything from the command line before running the install, it will work (as it will skip the part that checks if the port is already installed.) Fix ~~~ For my machine on 4.4 I needed to download and replace /usr/share/Mk/* and then /usr/src/usr.sbin/pkg_install/* from the freebsd 4.8 sources. Your /usr/share/Mk may be recent enough.. I don't know. from there, cd to /usr/src/usr.sbin/pkg_install and make make install make clean Alternatively, download my binaries, made from 4.8-release sources. De-tar the bzipped archive, and move the files from usr.sbin into /usr/sbin and the files from usr.share.man.man1 into /usr/share/man/man1 - being careful to preserve file permissions. http://www.bishopston.com/jamie/pkg_install/pkg_install_binaries_4.8.tar.bz2 (approx 90K) Cheers, Jamie