From owner-freebsd-perl@FreeBSD.ORG Thu Aug 23 08:46:28 2012 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6568B1065676 for ; Thu, 23 Aug 2012 08:46:28 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id D48D38FC16 for ; Thu, 23 Aug 2012 08:46:27 +0000 (UTC) Received: by obbun3 with SMTP id un3so1244748obb.13 for ; Thu, 23 Aug 2012 01:46:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=3+aUVMqinqzbR6/mH+JDrjwaogLhr2tDFNMOZEPvuno=; b=jixp6gdYJvk+kcUqhxa7pNgFnJtgd/TYzdNjrSRDfgvVcvAO+QjcIrQbkoUab/dDJv hk/9UuUy0d1mbYlf9KlolRhvyJlcWAOmuwDYS0EWCWAWsC0nwH6wIJZKFkIhFeFzjz5i 45dF5fuQZbKC5go1J/kvLJId9FKMW94gqg5gyh9eLucEPZ6qlRZZMH4FTUZTfr0QBQCv eNtIwuWWIiZHxwXUlBEpBliXAO+EV3m3WPy1fz7lUWbJ9p54bPRZ0xTk5gxxLbwXNteJ NFmz0gCar9NYkEs3y09XS+N4Luuu8rMRohl4PW3LRnZknHSQBKankdm8GN7UW4E3jI2n /VJA== Received: by 10.60.171.138 with SMTP id au10mr504216oec.39.1345711587039; Thu, 23 Aug 2012 01:46:27 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.182.155.71 with HTTP; Thu, 23 Aug 2012 01:46:06 -0700 (PDT) In-Reply-To: References: <201208221815.q7MIFG4M074100@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Aug 2012 16:46:06 +0800 X-Google-Sender-Auth: 3T_75naykUPK4ix4fQo8qUbF1l0 Message-ID: To: Chris Rees Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQl3TSVK7iE6tSNOXxoaixye4g/mQwNcED9uBb3CiUQKiZiCzmXRiNS8FGVhu/y40BWPIGAB Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, =?UTF-8?Q?Beat_G=C3=A4tzi?= , perl , ports-committers@freebsd.org Subject: Re: svn commit: r302955 - head/graphics/p5-OpenGL X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 08:46:28 -0000 Hi, I've added USE_DISPLAY=yes to deal with X11 issue when I updated p5-OpenGL to 0.66. And it passed tests [1] in tinderbox at that time. I don't know why it doesn't work now. BTW, it has two USE_DISPLAY in Makefile now. [1] I have a locally-patched bsd.port.mk (regression-test:) to run "make test" for p5- ports. Regards, sunpoet On Thu, Aug 23, 2012 at 2:19 AM, Chris Rees wrote: > On 22 August 2012 19:15, Chris Rees wrote: >> Author: crees >> Date: Wed Aug 22 18:15:15 2012 >> New Revision: 302955 >> URL: http://svn.freebsd.org/changeset/ports/302955 >> >> Log: >> There's apparently a magic variable, USE_DISPLAY that I'd somehow missed. >> >> Hopefully this will fix the build on pointyhat... >> >> Submitted by: beat >> Submitted by: linimon >> >> Modified: >> head/graphics/p5-OpenGL/Makefile >> >> Modified: head/graphics/p5-OpenGL/Makefile >> ============================================================================== >> --- head/graphics/p5-OpenGL/Makefile Wed Aug 22 18:09:57 2012 (r302954) >> +++ head/graphics/p5-OpenGL/Makefile Wed Aug 22 18:15:15 2012 (r302955) >> @@ -17,7 +17,7 @@ PKGNAMEPREFIX= p5- >> MAINTAINER= perl@FreeBSD.org >> COMMENT= Perl module to display 3D data using OpenGL, GLU, GLUT, and GLX >> >> -IS_INTERACTIVE= requires an X server for configure stage >> +USE_DISPLAY= requires an X server for configure stage > > Oh dear... I screwed up here. > > Apparently USE_DISPLAY has spontaneously stopped working, and I > hurried to correct the 'mistake' without reading the emails properly. > > Sorry for the noise here, I know I've got it wrong, and I'll have to > look tomorrow when I have time-- I've not broken anything more than it > was before :/ > > Chris