From owner-freebsd-ports@FreeBSD.ORG Thu Jul 21 00:53:30 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org 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 63CE816A453 for ; Thu, 21 Jul 2005 00:53:30 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C59043D94 for ; Thu, 21 Jul 2005 00:53:20 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 5BEA95EE7 for ; Wed, 20 Jul 2005 20:53:19 -0400 (EDT) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 90203-05 for ; Wed, 20 Jul 2005 20:53:08 -0400 (EDT) Received: from [192.168.1.100] (pool-68-161-54-113.ny325.east.verizon.net [68.161.54.113]) by pi.codefab.com (Postfix) with ESMTP id 271495D80 for ; Wed, 20 Jul 2005 20:53:08 -0400 (EDT) Message-ID: <42DEF1F5.9040306@mac.com> Date: Wed, 20 Jul 2005 20:53:09 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8) Gecko/20050511 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com Cc: Subject: Installing .la files for textproc/redland... 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: Thu, 21 Jul 2005 00:53:30 -0000 Hi, all-- A port which depends on textproc/redland would like to use .la files. How can I convince the port make stuff to not ignore .la files? I looked through /usr/ports/Mk/bsd.autotools.mk, and found this: # LIBTOOLFLAGS= # - Arguments passed to libtool during configure step # Currently defaults to "--disable-ltlibs", but this will be going # away when libtool .la files are brought back ...so I dutifully added: LIBTOOLFLAGS= --enable-ltlibs ...to textproc/redland/Makefile. This causes the .la files to be built under ${WORKSRC}, but libtool still decides not to install them: [ .... ] creating rdfproc gmake[2]: Entering directory `/usr/ports/textproc/redland/work/redland-1.0.2/utils' test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin" /bin/sh /usr/local/bin/libtool15 --mode=install install -c -s -o root -g wheel -m 555 'redland-db-upgrade' '/usr/local/bin/redland-db-upgrade' libtool15: install: warning: `../librdf/librdf.la' has not been installed in `/usr/local/lib' libtool15: install: warning: `/usr/ports/textproc/redland/work/redland-1.0.2/rasqal/librasqal.la' has not been installed in `/usr/local/lib' install -c -o root -g wheel -m 555 -s .libs/redland-db-upgrade /usr/local/bin/redland-db-upgrade /bin/sh /usr/local/bin/libtool15 --mode=install install -c -s -o root -g wheel -m 555 'rdfproc' '/usr/local/bin/rdfproc' libtool15: install: warning: `../librdf/librdf.la' has not been installed in `/usr/local/lib' libtool15: install: warning: `/usr/ports/textproc/redland/work/redland-1.0.2/rasqal/librasqal.la' has not been installed in `/usr/local/lib' install -c -o root -g wheel -m 555 -s .libs/rdfproc /usr/local/bin/rdfproc test -z "/usr/local/man/man1" || mkdir -p -- "/usr/local/man/man1" -- -Chuck