From owner-cvs-ports@FreeBSD.ORG Wed May 5 12:40:45 2010 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7280C106566B; Wed, 5 May 2010 12:40:45 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 99FEB8FC16; Wed, 5 May 2010 12:40:44 +0000 (UTC) Received: by fxm15 with SMTP id 15so4653510fxm.13 for ; Wed, 05 May 2010 05:40:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=UrnCnGavF1VpWzTxP5WtAgh6BCt0rRNrymB10tXvIx4=; b=j4J5bM+r0NkwuAFvcEJWfky3fBD+DLxE0VYpdXx88QlzxQkLkZAAbRE6KED0twyOWu eoU+VtvGXZrOTeqkSkkCLIgrclH9of0T2C57n5WM25qkzDYtVCp4hv/KSJVyC9BKOl3u zhEsR4f9qq9X4O3zzOiB9nRehUHiL6/jVLDTY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=BDpKNH+bKAtNiyOjVOkeWX8s/N/KM29roH0NY8RzIQ7Zq2bDolce5SzJamEM0JQP+p DT3mNEyhWyZWYRHqnD7tqhUaaf6IfOGQGSAppF4FjQpFkdscUgIQYPzSXx5MRRCqlOCV TBw0d1zyNnKgxrKHC8KH0QrDjDMWshe4taSE0= MIME-Version: 1.0 Received: by 10.239.159.208 with SMTP id z16mr1731055hbc.125.1273063234696; Wed, 05 May 2010 05:40:34 -0700 (PDT) Sender: r.c.ladan@gmail.com Received: by 10.239.160.1 with HTTP; Wed, 5 May 2010 05:40:34 -0700 (PDT) In-Reply-To: <20091203174326.GA22641@hades.panopticon> References: <200911291151.nATBpdsp044837@repoman.freebsd.org> <20091203174326.GA22641@hades.panopticon> Date: Wed, 5 May 2010 14:40:34 +0200 X-Google-Sender-Auth: 0fb8178c71ad0fe3 Message-ID: From: =?ISO-8859-1?Q?Ren=E9_Ladan?= To: Dmitry Marakasov Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Cc: cvs-ports@freebsd.org, ports-committers@freebsd.org, cvs-all@freebsd.org, Dima Panov Subject: Re: cvs commit: ports/devel/cmake Makefile distinfo pkg-plist ports/devel/cmake-gui Makefile distinfo 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: Wed, 05 May 2010 12:40:45 -0000 2009/12/3 Dmitry Marakasov : > * Dima Panov (fluffy@FreeBSD.org) wrote: > >> =9A Log: >> =9A - Update cmake and cmake-gui tools to 2.8.0 release > > You should've tested all cmake consumers in tinderbox or request an > exp-run. This broke at least games/rigsofrods and I guess all ports > that use cmake with wxWidgets. I'm investigating. > It looks like this is still the case? I am encountering this error while trying to let CMake find wxWidgets (minimal test case extracted from a larger project): % cmake testwx CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs= .cmake:70 (MESSAGE): Could NOT find wxWidgets (missing: wxWidgets_FOUND) Call Stack (most recent call first): /usr/local/share/cmake/Modules/FindwxWidgets.cmake:807 (FIND_PACKAGE_HANDLE_STANDARD_ARGS) CMakeLists.txt:2 (find_package) -- Configuring incomplete, errors occurred! % cat testwx/CMakeLists.txt cmake_minimum_required(VERSION 2.4.6) find_package(wxWidgets REQUIRED) % ls /var/db/pkg/ | grep -Ei "wx|cmake" cmake-2.8.0_3 gccmakedep-1.0.2 py26-wxPython-2.8.7.1_5 py26-wxPython-common-2.8.7.1_4 wxgtk2-2.8.10_4 wxgtk2-common-2.8.10_4 wxgtk2-contrib-2.8.10_4 wxgtk2-contrib-common-2.8.10_4 This is on a FreeBSD 8.0-RELEASE/amd64 system with up-to-date ports. Regards, Rene