From owner-freebsd-ports@freebsd.org Tue Nov 20 17:17:21 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A82791137040 for ; Tue, 20 Nov 2018 17:17:21 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "troutmask", Issuer "troutmask" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A7493771C6 for ; Tue, 20 Nov 2018 17:17:20 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id wAKHHIpC079461 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Tue, 20 Nov 2018 09:17:19 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id wAKHHIqo079460; Tue, 20 Nov 2018 09:17:18 -0800 (PST) (envelope-from sgk) Date: Tue, 20 Nov 2018 09:17:18 -0800 From: Steve Kargl To: bob prohaska Cc: freebsd-ports@freebsd.org Subject: Re: Inkscape package troubles, "libicuuc.so.62" not found Message-ID: <20181120171718.GA79409@troutmask.apl.washington.edu> Reply-To: sgk@troutmask.apl.washington.edu References: <20181119235722.GA53159@www.zefox.net> <20181120004318.GA72711@troutmask.apl.washington.edu> <20181120165257.GA56335@www.zefox.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181120165257.GA56335@www.zefox.net> User-Agent: Mutt/1.10.1 (2018-07-13) X-Rspamd-Queue-Id: A7493771C6 X-Spamd-Result: default: False [-0.98 / 15.00]; ARC_NA(0.00)[]; HAS_REPLYTO(0.00)[sgk@troutmask.apl.washington.edu]; NEURAL_HAM_MEDIUM(-0.87)[-0.874,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; NEURAL_HAM_LONG(-0.62)[-0.623,0]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[washington.edu]; REPLYTO_ADDR_EQ_FROM(0.00)[]; AUTH_NA(1.00)[]; RCVD_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_IN_DNSWL_MED(-0.20)[21.76.95.128.list.dnswl.org : 127.0.11.2]; MX_GOOD(-0.01)[cached: troutmask.apl.washington.edu]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_HAM_SHORT(-0.17)[-0.172,0]; R_SPF_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:73, ipnet:128.95.0.0/16, country:US]; MID_RHS_MATCH_FROM(0.00)[]; IP_SCORE(0.00)[asn: 73(0.11), country: US(-0.09)] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Nov 2018 17:17:21 -0000 On Tue, Nov 20, 2018 at 08:52:58AM -0800, bob prohaska wrote: > On Mon, Nov 19, 2018 at 04:43:18PM -0800, Steve Kargl wrote: > > On Mon, Nov 19, 2018 at 03:57:22PM -0800, bob prohaska wrote: > > > Using pkg delete resolved the ImageMagick vs ImageMagic6 conflict, allowing > > > inkscape to build successfully from ports on an RPI3. > > > > > > Alas, I somehow deleted libicuuc.so.62, causing a runtime failure. Rebuilding > > > devel/icu got version 63, so that didn't help. > > > > > > > The simple (temporary) workaround is > > > > echo 'libicuuc.so.62 libicuuc.so.63' >> /etc/libmap.conf > > > > Thank you very much, I didn't know about libmap.conf. > You're welcomed. Note, this should be considered temporary as the library version bump should indicate a change in some function interface. I've never run into an issue, but one may exists. You should probably do 'pkg check -B'. This will identify which ports depend on the missing library, and you can update those. Once 'pkg check -B' returns 100%, you can remove the contents from libmap.conf -- Steve