From owner-freebsd-ports@FreeBSD.ORG Sat May 10 20:23:51 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 168F8F16; Sat, 10 May 2014 20:23:51 +0000 (UTC) Received: from mst-rip5-missouri-out.um.umsystem.edu (mst-rip5-missouri-out.um.umsystem.edu [198.209.50.135]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "um-tip1.um.umsystem.edu", Issuer "InCommon Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 939B077A; Sat, 10 May 2014 20:23:50 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnsFADmKblPPoJ7E/2dsb2JhbABZgwZPWKsmDgEBAQaaGQGBFxZ0giYBBXQEEQIBKRYPCQMCAQIBICUCBAEMCAEBiD3KMYVIF4VWiQOEQASJVZEvkUuBd4E/gi8 X-IPAS-Result: AnsFADmKblPPoJ7E/2dsb2JhbABZgwZPWKsmDgEBAQaaGQGBFxZ0giYBBXQEEQIBKRYPCQMCAQIBICUCBAEMCAEBiD3KMYVIF4VWiQOEQASJVZEvkUuBd4E/gi8 Received: from um-tcas1.um.umsystem.edu ([207.160.158.196]) by mst-rip5-exch-relay.um.umsystem.edu with ESMTP; 10 May 2014 15:22:39 -0500 Received: from UM-MBX-N02.um.umsystem.edu ([169.254.5.16]) by UM-TCAS1.um.umsystem.edu ([207.160.158.196]) with mapi id 14.03.0181.006; Sat, 10 May 2014 15:22:39 -0500 From: "Montgomery-Smith, Stephen" To: Tijl Coosemans , "freebsd-ports@FreeBSD.org" Subject: Problems with libtool and graphics/opendx; was: To all port maintainers: libtool Thread-Topic: Problems with libtool and graphics/opendx; was: To all port maintainers: libtool Thread-Index: AQHPakMfjA5AJFHVaEeSmqvGPb9iTps6mnaA Date: Sat, 10 May 2014 20:22:39 +0000 Message-ID: <536E8A8D.3070504@missouri.edu> References: <20140508002420.5d37e7f6@kalimero.tijl.coosemans.org> In-Reply-To: <20140508002420.5d37e7f6@kalimero.tijl.coosemans.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 x-originating-ip: [207.160.158.193] Content-Type: text/plain; charset="iso-8859-1" Content-ID: <6556BDDD2051CC43AD1BF4916741A642@missouri.edu> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 May 2014 20:23:51 -0000 I am trying to get the libtool changes to work with the port graphics/opendx. I made the changes: Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Makefile (revision 353598) +++ Makefile (working copy) @@ -16,10 +16,11 @@ cdf:${PORTSDIR}/science/cdf USE_XORG=3D xinerama xext xpm xmu sm ice -USES=3D bison motif gmake +USES=3D bison motif gmake libtool USE_GCC=3D any USE_GL=3D yes -USE_AUTOTOOLS=3D libtool +GNU_CONFIGURE=3D yes +#USE_AUTOTOOLS=3D libtool USE_LDCONFIG=3D yes CFLAGS+=3D ${PTHREAD_CFLAGS} CONFIGURE_ENV=3D ARCH=3Dfreebsd Then when I do "make install" I got pkg-static: lstat(/usr/ports/graphics/opendx/work/stage/usr/local/dx/lib_freebsd/libDX.= la): No such file or directory pkg-static: lstat(/usr/ports/graphics/opendx/work/stage/usr/local/dx/lib_freebsd/libDX.= so): No such file or directory pkg-static: lstat(/usr/ports/graphics/opendx/work/stage/usr/local/dx/lib_freebsd/libDX.= so.4): No such file or directory etc. When I do "find . -name "libDX.*"", I get ./work/dx-4.4.4/src/exec/.libs/libDX.lai ./work/dx-4.4.4/src/exec/.libs/libDX.a ./work/dx-4.4.4/src/exec/.libs/libDX.la ./work/dx-4.4.4/src/exec/libDX.la ./work/stage/usr/local/dx/lib_freebsd/libDX.a suggesting that the "*.so" files were never created. Did I miss something? The modifiers :keepla and :oldver don't seem to help.=