From owner-freebsd-ports@FreeBSD.ORG Fri Aug 10 01:25:44 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91DA316A420 for ; Fri, 10 Aug 2007 01:25:44 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id 502A913C468 for ; Fri, 10 Aug 2007 01:25:44 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so1165545pye for ; Thu, 09 Aug 2007 18:25:43 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=MLyB4nmr8CxZNDolwA/QMLRn5EuFN96zgfUnBJzh8buYsPLN0cTsMznBQISp7j6K9pe2pqZWLHpWiA/9fuq0vF0Voaq2a0rT0ia4eul4ERhS1/RAKTl0yOEH2GC8P+fVngGBKARyoFLkz4RQqzI+5yMDNVm3RIVniJ8tm5ArKLs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=PpNBzvLuy3WSMkkULgEejjbsgE8hLBceVr1reE6GGEFeN5JNvDm1VErF/H8tvoEFwESXXnhYg8T+VOItFIuoL70KXvT6WmwSHFVx6P9stpVmaWVyV5epqlkvd2vKC8dmaemOX/vzkQV0Xt80JpMdPpTsHXZ97Wnd20Fhr5SZu14= Received: by 10.64.153.4 with SMTP id a4mr4060553qbe.1186709143502; Thu, 09 Aug 2007 18:25:43 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Thu, 9 Aug 2007 18:25:43 -0700 (PDT) Message-ID: <70f41ba20708091825w42ce2b19hcafc8bfa47140bbc@mail.gmail.com> Date: Thu, 9 Aug 2007 18:25:43 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 731caab6f091d5c3 Subject: help re: stale dependies? some ports not finding cpan-installed perl-modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Aug 2007 01:25:44 -0000 hi, i started to use portupgrade to manage ports on a freebsd 62-RELEASE, p7 install. i've installed perl58 from ports, and manage perl module installs with an up-to-date (v1.9102) CPAN. i'm building www/mod_perl2 port on freebsd 62rp7. perl 588 is installed from ports, as well. my port upgrade process, portsnap fetch update pkgdb --autofix --fix-lost pkgdb -F portupgrade --verbose --recursive --upward-recursive --all is straightforward and mostly problem-free. but, for some (not all) ports that depend on perl-modules, during the update process i get "Stale Depndency" warnings. for example, in the case of mod_perl2, i see, ... Stale dependency: mod_perl2-2.0.3_2,3 -> p5-BSD-Resource-1.28 (devel/p5-BSD-Resource): Install stale dependency? ([y]es/[n]o/[a]ll) [yes] no New dependency? (? to help): Delete this? ([y]es/[n]o/[a]ll) [yes] Deleted. ... now, looking in the mod_perl2 port's Makefile, i find, BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/BSD/Resource.pm:${PORTSDIR}/devel/p5-BSD-Resource which looks to me like it should be checking for & finding BSD::Resource if it's installed via CPAN. checking on my system, module_info BSD::Resource Name: BSD::Resource Version: 1.28 Directory: /usr/local/lib/perl5/site_perl/5.8.8/mach File: /usr/local/lib/perl5/site_perl/5.8.8/mach/BSD/Resource.pm Core module: no and, pkg_info | grep "^p5" (empty) given the src above (similar to other modules that are having issues ...), should not -- in this case -- mod_perl2 be 'happy' with the installed BSD::Resource? thanks!