From owner-cvs-all@FreeBSD.ORG Fri Mar 18 13:22:12 2011 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18BCC1065687; Fri, 18 Mar 2011 13:22:12 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.49.45]) by mx1.freebsd.org (Postfix) with ESMTP id E2C6E8FC30; Fri, 18 Mar 2011 13:22:11 +0000 (UTC) Received: by syn.atarininja.org (Postfix, from userid 1001) id 7A6945C3B; Fri, 18 Mar 2011 09:22:58 -0400 (EDT) Date: Fri, 18 Mar 2011 09:22:58 -0400 From: Wesley Shields To: Rene Ladan Message-ID: <20110318132258.GA29721@atarininja.org> References: <201103172328.p2HNS9Rk065443@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <201103172328.p2HNS9Rk065443@repoman.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/astro/boinc-astropulse Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Mar 2011 13:22:12 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Mar 17, 2011 at 11:28:09PM +0000, Rene Ladan wrote: > rene 2011-03-17 23:28:09 UTC > > FreeBSD ports repository > > Modified files: > astro/boinc-astropulse Makefile > Log: > Add archivers/xz as a build dependency on systems which do not have it > in the base system. This fixes the package build. dvl@ brought [1] to my attention recently. The attached patch fixes it. Would you mind committing it? [1]: http://www.freshports.org/sanity_test_failures.php?message_id=201103172328.p2HNS9Rk065443@repoman.freebsd.org -- WXS --bp/iNruPH9dso1Pn Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="boinc-astropulse.diff" Index: Makefile =================================================================== RCS file: /ncvs/ports/astro/boinc-astropulse/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 17 Mar 2011 23:28:09 -0000 1.7 +++ Makefile 18 Mar 2011 13:19:47 -0000 @@ -19,11 +19,6 @@ BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:${PORTSDIR}/math/fftw3 \ ${NONEXISTENT}:${PORTSDIR}/astro/boinc-setiathome-enhanced:patch -# stolen and adapted from bsd.port.mk -.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) || ${OSVERSION} < 800505 -BUILD_DEPENDS+= ${LOCALBASE}/bin/xz:${PORTSDIR}/archivers/xz -.endif - RUN_DEPENDS= boinc_client:${PORTSDIR}/net/boinc-client LIB_DEPENDS= fftw3f:${PORTSDIR}/math/fftw3-float @@ -48,6 +43,10 @@ #OPTIONS= X11 "Build screensaver (requires net/boinc-client with X11)" on .include +# stolen and adapted from bsd.port.mk +.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) || ${OSVERSION} < 800505 +BUILD_DEPENDS+= ${LOCALBASE}/bin/xz:${PORTSDIR}/archivers/xz +.endif # TODO fix upstream .if defined(WITHOUT_X11) --bp/iNruPH9dso1Pn--