From owner-cvs-ports@FreeBSD.ORG Fri May 27 08:19:32 2005 Return-Path: X-Original-To: cvs-ports@FreeBSD.org Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7776F16A41C; Fri, 27 May 2005 08:19:32 +0000 (GMT) (envelope-from mich@icommerce.fr) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 095D943D1F; Fri, 27 May 2005 08:19:31 +0000 (GMT) (envelope-from mich@icommerce.fr) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id 4AD7A37BC7; Fri, 27 May 2005 10:19:31 +0200 (CEST) Received: by icommerce.fr (Postfix, from userid 1001) id 349A52281F; Fri, 27 May 2005 10:19:31 +0200 (CEST) Date: Fri, 27 May 2005 10:19:31 +0200 From: "Michael L. Hostbaek" To: Anders Nordby , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050527081931.GB43359@mich2.itxmarket.com> Mail-Followup-To: "Michael L. Hostbaek" , Anders Nordby , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, mbr@FreeBSD.org References: <200505261521.j4QFLUst090014@repoman.freebsd.org> <20050527075937.GA43359@mich2.itxmarket.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <20050527075937.GA43359@mich2.itxmarket.com> X-Operating-System: FreeBSD 5.4-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.9i Cc: mbr@FreeBSD.org Subject: Re: cvs commit: ports/net/citrix_ica Makefile distinfo pkg-plist ports/net/citrix_ica/files patch-linuxx86::hinst X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2005 08:19:32 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Michael L. Hostbaek (mich) writes: > Anders Nordby (anders) writes: > > anders 2005-05-26 15:21:30 UTC > > > > FreeBSD ports repository > > > > Modified files: > > net/citrix_ica Makefile distinfo pkg-plist > > net/citrix_ica/files patch-linuxx86::hinst > > Log: > > Update to version 9. The old distfile was removed. > > After the update, I get the following error when running wfcmgr: > /usr/local/ICAClient/wfcmgr: error while loading shared libraries: > libXm.so.3: cannot open shared object file: No such file or directory The attached patch ought to fix it. (Evidently wfcmgr depends on openmotif - and wfica does not.) /mich --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-citrix_ica --- Makefile.orig Fri May 27 10:13:55 2005 +++ Makefile Fri May 27 10:14:53 2005 @@ -14,7 +14,8 @@ MAINTAINER= mbr@FreeBSD.org COMMENT= Citrix(R) client for the Microsoft Windows Terminal Server -RUN_DEPENDS= ${LINUXBASE}/usr/X11R6/lib/libXaw.so.6:${PORTSDIR}/x11/linux-XFree86-libs +RUN_DEPENDS= ${LINUXBASE}/usr/X11R6/lib/libXaw.so.6:${PORTSDIR}/x11/linux-XFree86-libs \ + ${LINUXBASE}/usr/X11R6/lib/libXm.so.3:${PORTSDIR}/x11-toolkits/linux-openmotif ONLY_FOR_ARCHS= i386 RESTRICTED= "License prohibits redistribution" --82I3+IH0IqGh5yIs--