From owner-freebsd-hackers@FreeBSD.ORG Thu Oct 22 19:08:16 2009 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89C67106568D for ; Thu, 22 Oct 2009 19:08:16 +0000 (UTC) (envelope-from anti_spamsys@yahoo.com) Received: from web113208.mail.gq1.yahoo.com (web113208.mail.gq1.yahoo.com [98.136.164.161]) by mx1.freebsd.org (Postfix) with SMTP id 49F998FC13 for ; Thu, 22 Oct 2009 19:08:16 +0000 (UTC) Received: (qmail 71421 invoked by uid 60001); 22 Oct 2009 18:41:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1256236896; bh=z1iJwC9beAZs3SMFOLdibtMyMb5FtommPDLQbpgx6bY=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=gwfgnVJi/DQd/X2WQfxVWR+M5rw/Tq8narUIRYaavhey0687z7/TEC5Gu3c5oVKZ9v33we3hML94drh51HU0zZ0dTLpDOgXeFBkZpSdbNbxCsDfyj9oy6jRrOIxt+07Xlni6DZqj9knip+no7b1b7rKrHfQQwZNzFDxdD3uCSDs= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=MEyDuVtIjfeBegu6+d65GUwxrJihMOthhi362YaTft9kimH0R5sl9CCvyQ4VZxHsds67uZaKs0/SnVLUDfG9dKflFyeDVsS6C2i3fvvJmGNaR2ZKfe27xisxDTS75/hXPamOpYcpNHCC+LBq2K1iTkf8m1HBX1iaMrMLnyik0oM=; Message-ID: <204698.71349.qm@web113208.mail.gq1.yahoo.com> X-YMail-OSG: H5L_0XEVM1m7tivk3CDteaW5ctJsbRUjACwXvTsXML9j4LYZ4ufmMASR_5LdjFZPNiiqk0g295563SIt99bsaduRbFYR0QSYwLAzL3PTkHhe0hAqNXkTKN5kqmuYx74aLsAuOy.KKFwNVB3fGW3sVJLYn9marAHpIVXiB0.FbK8I_7hnCHGZFoqbEx_Zbl4D22AMuwLlO7yWY6l0mARWg09wxQAOtQrqUD19AomsMRKSArU1PbJDpniOjNAva9NlAdjL2B0n0oCooT0001LEDRqkLc9Ds95V0sMUSA4KZxGmO7BU2Km7C2Givsysqck- Received: from [128.55.19.49] by web113208.mail.gq1.yahoo.com via HTTP; Thu, 22 Oct 2009 11:41:35 PDT X-Mailer: YahooMailClassic/8.0.7 YahooMailWebService/0.7.347.3 Date: Thu, 22 Oct 2009 11:41:35 -0700 (PDT) From: Trever To: freebsd-hackers@freebsd.org MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 22 Oct 2009 19:52:38 +0000 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: bug in pkg_add ? doesn't fetch dependencies from set path X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Oct 2009 19:08:16 -0000 Does anyone else have this problem? # env | grep PACKAGEPACKAGESITE=3Dftp://ftp.ourdomain.gov/FBSD/# pkg_add -r= subversion-1.6.5Fetching ftp://ftp.ourdomain.gov/FBSD/subversion-1.6.5.tbz= ... Done.Error: FTP Unable to get ftp://ftp.ourdomain.gov/All/pkg-config-0.= 23_1.tbz: File unavailable (e.g., file not found, no access)Error: FTP Unab= le to get ftp://ftp.ourdomain.gov/All/sqlite3-3.6.14.2.tbz: File unavailabl= e (e.g., file not found, no access)Error: FTP Unable to get ftp://ftp.ourdo= main.gov/All/gettext-0.17_1.tbz: File unavailable (e.g., file not found, no= access)Error: FTP Unable to get ftp://ftp.ourdomain.gov/All/neon28-0.28.4.= tbz: File unavailable (e.g., file not found, no access) In plain English:pkg_add -r goes to the correct domain and path (per enviro= nment variable I set) to fetch the package I want to install, but when it g= oes to get the dependencies for the package it just correctly fetched, it s= ubsequently fetches to the wrong path (goes to /All instead of /FBSD), thou= gh it does fetch to the correct domain. This is a pain because our ftp server has many uses, and having an "All" di= rectory in the root is ugliness (whether All is a link to FBSD or whatever,= I don't want "All", I just want "FBSD"). I have tried various combinations of setting both or one of PACKAGESITE and= /or PACKAGEROOT, just in case that would somehow help, but to no avail. =A0= Of course it would seem that PACKAGESITE alone is what I want (but that and= nothing else I have tried works). Thank you much. -T=0A=0A=0A