From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 21 01:25:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53F1F946 for ; Fri, 21 Dec 2012 01:25:12 +0000 (UTC) (envelope-from zarvonsteve@gmail.com) Received: from mail-ob0-f174.google.com (mail-ob0-f174.google.com [209.85.214.174]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC288FC0A for ; Fri, 21 Dec 2012 01:25:11 +0000 (UTC) Received: by mail-ob0-f174.google.com with SMTP id ta14so4028931obb.5 for ; Thu, 20 Dec 2012 17:25:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=eY0/m9RuRL3RBnGXc+183Gy4LvCi9CGRRVmyKS4H65g=; b=dWOD768DGhWpOM0y2l/3HaJfTIXWbHyI+NJMYHEnZiywo3JfwZucH7BQIX8P/dmApZ YQxzL6VsYu5F6qYgpXS3Zh5nG2Vel1shDkIKU3CbR7zHfFIMRsUwp8boZJNTKWwxujFm tO1mhYT9IiSF2LioCRNMPn2//4EXaHSVjYCgnYGaNSUIsHLClvGHn/ZTji3WluhIyIhr PGwf4YYWTWDrdWvLQp+RaMQpx4s/iIxv8KhDOvPoKp0nwZ16uDFPMyFOjBKla/HSJ2rd 5KFN5xDeU+F993tnPVmfE1oSGq6cEvoD/HtvdBlDVqPnIegA0fFWonsQA/OYIH3Gf7Ec AKOQ== MIME-Version: 1.0 Received: by 10.182.235.46 with SMTP id uj14mr9636096obc.40.1356053110360; Thu, 20 Dec 2012 17:25:10 -0800 (PST) Sender: zarvonsteve@gmail.com Received: by 10.76.12.10 with HTTP; Thu, 20 Dec 2012 17:25:10 -0800 (PST) Date: Fri, 21 Dec 2012 11:25:10 +1000 X-Google-Sender-Auth: H7j-8PVfdXhhO0135kVItqzsdz8 Message-ID: Subject: Possible unzip dependency bug with a PREFIX set From: Steven Harris To: freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Dec 2012 01:25:12 -0000 Hi, One a clean install of FreeBSD, i wanted to install openjdk7 into /share/local (which is later exported through NFS). Installing other ports (apache, php etc) works perfect, but openjdk7 relied on unzip. So as a dependency, it installed unzip from ports, but because of my PREFIX setting, put it in /share/local/bin/unzip Then after returning to openjdk, it was specifically looking in /usr/local/bin for unzip. /usr/include/sys/timeb.h:42:2: warning: #warning "this file includes which is deprecated" cc -o unzipsfx unzipsfx.o crc32_.o crypt_.o extract_.o fileio_.o globals_.o inflate_.o match_.o process_.o ttyio_.o ubz2err_.o unix_.o -s ===> Installing for unzip-6.0_1 ===> Generating temporary packing list ===> Checking if archivers/unzip already installed install -s -o root -g wheel -m 555 /usr/ports/archivers/unzip/work/unzip60/unzip /share/local/bin/unzip install -s -o root -g wheel -m 555 /usr/ports/archivers/unzip/work/unzip60/funzip /share/local/bin install -s -o root -g wheel -m 555 /usr/ports/archivers/unzip/work/unzip60/unzipsfx /share/local/bin /bin/ln -sf unzip /share/local/bin/zipinfo install -o root -g wheel -m 555 /usr/ports/archivers/unzip/work/unzip60/unix/zipgrep /share/local/bin install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/man/unzip.1 /share/local/man/man1/unzip.1 install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/man/funzip.1 /share/local/man/man1 install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/man/unzipsfx.1 /share/local/man/man1 install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/man/zipgrep.1 /share/local/man/man1 install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/man/zipinfo.1 /share/local/man/man1 install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/README /share/local/share/doc/unzip install -o root -g wheel -m 444 /usr/ports/archivers/unzip/work/unzip60/WHERE /share/local/share/doc/unzip ===> Compressing manual pages for unzip-6.0_1 ===> Registering installation for unzip-6.0_1 ===> Returning to build of openjdk-7.9.05_1 /usr/local/bin/unzip: not found *** Error code 1 Just thought i would raise that. Thanks Steve