From owner-freebsd-ruby@FreeBSD.ORG Wed Dec 17 18:52:54 2014 Return-Path: Delivered-To: ruby@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E78E2F7D; Wed, 17 Dec 2014 18:52:54 +0000 (UTC) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "asuka.mahoroba.org", Issuer "ca.mahoroba.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 65587A74; Wed, 17 Dec 2014 18:52:54 +0000 (UTC) Received: from yuga.mahoroba.org (ume@yuga.mahoroba.org [IPv6:2001:2f0:104:8010:7258:12ff:fe22:d94b]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.14.9/8.14.9) with ESMTP/inet6 id sBHIqeUq082003 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Thu, 18 Dec 2014 03:52:47 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Thu, 18 Dec 2014 03:52:38 +0900 Message-ID: From: Hajimu UMEMOTO To: Robert Burmeister Subject: Re: FreeBSD Port: graphics/rubygem-cairo In-Reply-To: <543665CE.2000400@UToledo.edu> References: <543665CE.2000400@UToledo.edu> User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) Emacs/24.4 Mule/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 10.1-STABLE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="Multipart_Thu_Dec_18_03:52:38_2014-1" Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Thu, 18 Dec 2014 03:52:47 +0900 (JST) X-Virus-Scanned: clamav-milter 0.98.5 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,T_RP_MATCHES_RCVD autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on asuka.mahoroba.org Cc: ruby@FreeBSD.org, Hajimu UMEMOTO X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 18:52:55 -0000 --Multipart_Thu_Dec_18_03:52:38_2014-1 Content-Type: text/plain; charset=US-ASCII Hi, >>>>> On Thu, 9 Oct 2014 06:39:10 -0400 >>>>> Robert Burmeister said: > /usr/local/lib/ruby/gems/1.9/gems/pkg-config-1.1.5/lib/pkg-config.rb:239:in > `parse_pc': .pc for zlib doesn't exist. (RuntimeError) I met same problem here on my 10.1-STABLE box. rubygem-cairo-1.12.9 requires zlib.pc. There is zlib.pc in /usr/libdata/pkgconfig. However, rubygem-pkg-config-1.1.6 doesn't search /usr/libdata/pkgconfig. Rebuilding rubygem-pkg-config with the attached patch fixed it. Sincerely, --Multipart_Thu_Dec_18_03:52:38_2014-1 Content-Type: text/x-patch; charset=US-ASCII Content-Disposition: attachment; filename="patch-lib__pkg-config.rb" Content-Transfer-Encoding: 8bit Index: lib/pkg-config.rb diff -u lib/pkg-config.rb.orig lib/pkg-config.rb --- lib/pkg-config.rb.orig 2014-12-16 18:52:11.177908000 +0900 +++ lib/pkg-config.rb 2014-12-16 18:54:33.498910198 +0900 @@ -310,6 +310,7 @@ arch_depended_path, "/usr/lib64/pkgconfig", "/usr/lib/pkgconfig", + "/usr/libdata/pkgconfig", "/usr/X11/lib/pkgconfig/", "/opt/X11/lib/pkgconfig/", "/usr/share/pkgconfig"].join(SEPARATOR) --Multipart_Thu_Dec_18_03:52:38_2014-1 Content-Type: text/plain; charset=US-ASCII -- Hajimu UMEMOTO ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.mahoroba.org/~ume/ --Multipart_Thu_Dec_18_03:52:38_2014-1--