From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 22:28:36 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EDB6106566B for ; Sat, 9 Oct 2010 22:28:36 +0000 (UTC) (envelope-from ports.friedemann.becker@googlemail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1F98FC08 for ; Sat, 9 Oct 2010 22:28:36 +0000 (UTC) Received: by vws1 with SMTP id 1so611821vws.13 for ; Sat, 09 Oct 2010 15:28:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=42t2hYx4Hr2jgBFBormPN2dVJbT1XwFuEn7QW7+/oK8=; b=cADyDe9h9cK1VQdK3RhwixWO2DHrE2ilDpQJ6rfmmvluSBSVCH9vtvKuExyxk7FPDI ki2z6/3o6f5PEAxLhHkGmfduf1wP1bOlF9XFgNxuttOCCZXa3oQqH/8rXg9rLw2+BsVn mEj7vpmzKjxYzz3785o31Vea22ETcEZdh9mSc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=uI9HUlYYeAEyJi7OW1nVsMLWgnZUPWslSVN9mRKxTDjO0hO4HFHbm3QKtr+1M5EY+J C/lW50iVuQM3w3YDAankJ+RrDJO0+s0cVT0eHudcPcPoGX107scCbhliNLiurPV2bn// 1DLXOXYC111HofWR1PCHwFSNLPnXm452r7uDc= MIME-Version: 1.0 Received: by 10.220.165.70 with SMTP id h6mr1263957vcy.244.1286661731887; Sat, 09 Oct 2010 15:02:11 -0700 (PDT) Received: by 10.220.203.72 with HTTP; Sat, 9 Oct 2010 15:02:11 -0700 (PDT) Date: Sun, 10 Oct 2010 00:02:11 +0200 Message-ID: From: Friedemann Becker To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: How to handle files installed to /usr/local/lib/qt4/plugins/script/ correctly in pkg-plist? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2010 22:28:36 -0000 Hello, I'm trying to make a port for musescore, it's compiling and installing, and now I'm working through the testing chapter in the porter's handbook. Musescore has some files that are installed into the /usr/local/lib/qt4/plugins/script/ directory, and I'm wondering how to handle them correctly. All other files install to ${PREFIX}/..., but I don't know what to do with the qt-lib directory. Is it okay to leave the files there, and if I do so how do I tell pkg-plist about that? Is it okay to just put absolute paths there? like /usr/local/lib/qt4/plugins/script/libqtscript_core.so? Also strange: there already are installed versions of these files, for instance it looks like -rwxr-xr-x 1 root wheel 2363778 Oct 9 12:48 libqtscript_uitools.so lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 libqtscript_uitools.so.1 -> libqtscript_uitools.so.1.0.0 lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 libqtscript_uitools.so.1.0 -> libqtscript_uitools.so.1.0.0 -r--r--r-- 1 root wheel 974529 Jun 30 18:42 libqtscript_uitools.so.1.0.0 where libqtscript_uitools.so is installed by Musescore, the symbolic links and the libqtscript_uitools.so.1.0.0 where already there. What to do best in this situation? Thanks in advance, Best regards, Friedemann Becker