From owner-freebsd-multimedia@FreeBSD.ORG Wed Apr 23 13:25:11 2008 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89258106567A for ; Wed, 23 Apr 2008 13:25:11 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from QMTA04.emeryville.ca.mail.comcast.net (qmta04.emeryville.ca.mail.comcast.net [76.96.30.40]) by mx1.freebsd.org (Postfix) with ESMTP id 52A548FC13 for ; Wed, 23 Apr 2008 13:25:11 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from OMTA04.emeryville.ca.mail.comcast.net ([76.96.30.35]) by QMTA04.emeryville.ca.mail.comcast.net with comcast id Gz9N1Z01k0lTkoCA409f00; Wed, 23 Apr 2008 13:13:27 +0000 Received: from discordia ([24.60.135.75]) by OMTA04.emeryville.ca.mail.comcast.net with comcast id H1F71Z00H1dmTCQ8Q00000; Wed, 23 Apr 2008 13:15:08 +0000 X-Authority-Analysis: v=1.0 c=1 a=IfhOpFVJkQEA:10 a=FWXg9x3_RCAA:10 a=V5OJo9C4AAAA:8 a=yPqEeVgsZnCskH4z4OEA:9 a=EH_Gs0DEpQvo3zWiFhoA:7 a=hRibc2BdTgpDNAXRvksarxXSUIwA:4 a=LY0hPdMaydYA:10 a=82f9Cs9mfN-uLmCNo_QA:9 a=TbKqFukePBDri9088foGfxTy34gA:4 a=rPt6xJ-oxjAA:10 Received: by discordia (Postfix, from userid 103) id 82FF016B55D; Wed, 23 Apr 2008 09:15:07 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.1.8-gr1 (2007-02-13) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,BAYES_00, UPPERCASE_25_50 autolearn=ham version=3.1.8-gr1 Received: from [172.20.1.3] (erwin.int.cokane.org [172.20.1.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by discordia (Postfix) with ESMTP id B29C416B55B; Wed, 23 Apr 2008 09:14:49 -0400 (EDT) From: Coleman Kane To: Martin Wilke In-Reply-To: <20080423094623.GE69856@bsdcrew.de> References: <1208876296.3060.14.camel@localhost> <20080422154130.GA60817@bsdcrew.de> <1208882246.1320.0.camel@localhost> <20080423094623.GE69856@bsdcrew.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ZZ+C52plNFx9xkeNkn3L" Organization: FreeBSD Project Date: Wed, 23 Apr 2008 09:14:04 -0400 Message-Id: <1208956444.6154.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.22.1 FreeBSD GNOME Team Port Cc: freebsd-multimedia@FreeBSD.org Subject: Re: Update to multimedia/transcode broke ImageMagick X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 13:25:11 -0000 --=-ZZ+C52plNFx9xkeNkn3L Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2008-04-23 at 11:46 +0200, Martin Wilke wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >=20 > On Tue, Apr 22, 2008 at 12:37:26PM -0400, Coleman Kane wrote: > > On Tue, 2008-04-22 at 17:41 +0200, Martin Wilke wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > > > Hash: SHA1 > > >=20 > > > On Tue, Apr 22, 2008 at 10:58:16AM -0400, Coleman Kane wrote: > > > > Hi, > > > >=20 > > > > The upgrade of ImageMagick breaks the ability for transcode to buil= d > > > > WTIH_IMAGEMAGICK=3Dyes, even more than the small Makefile change it > > > > recently experienced. > > > >=20 > > > > It seems that the configure script is still looking for libMagick.s= o > > > > (instead of libMagickCore.so or libMagickWand.so). > > > >=20 > > > > Additionally, the following: > > > >=20 > > > > .if (defined(WITH_IMAGEMAGICK) || exists(${LOCALBASE}/lib/libMagick= .so)) && !defined(WITHOUT_IMAGEMAGICK) > > > > LIB_DEPENDS+=3D MagickWand.1:${PORTSDIR}/graphics/ImageMagick > > > > CONFIGURE_ARGS+=3D --enable-imagemagick --with-imagemagick-prefix= =3D${LOCALBASE} > > > > .else > > > > CONFIGURE_ARGS+=3D --enable-imagemagick=3Dno > > > > .endif > > > >=20 > > > > Should be changed to: > > > >=20 > > > > .if (defined(WITH_IMAGEMAGICK) || exists(${LOCALBASE}/lib/libMagick= Wand.so)) && !defined(WITHOUT_IMAGEMAGICK) > > > > LIB_DEPENDS+=3D MagickWand.1:${PORTSDIR}/graphics/ImageMagick > > > > CONFIGURE_ARGS+=3D --enable-imagemagick --with-imagemagick-prefix= =3D${LOCALBASE} > > > > .else > > > > CONFIGURE_ARGS+=3D --enable-imagemagick=3Dno > > > > .endif > > >=20 > > > You are right. Fixed. > > >=20 > > > >=20 > > > > (The exists(...) clause needs to mimic the change on LIB_DEPENDS+= =3D ) > > > >=20 > > > > --=20 > > > > Coleman Kane > >=20 > > And the bug in the configure script? > >=20 >=20 > Hi, >=20 > Can you please test follow patch: > http://miwi.homeunix.com/tc.diff >=20 > Thanks Martin >=20 >=20 That works! Thanks. --=20 Coleman Kane --=-ZZ+C52plNFx9xkeNkn3L Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEABECAAYFAkgPNhcACgkQcMSxQcXat5dMgACeL3ps4p65+4n8xlJEYfDQ6XCG 82UAmwfnWWAI2VR60tNR6kFjXirvEcsZ =kkYJ -----END PGP SIGNATURE----- --=-ZZ+C52plNFx9xkeNkn3L--