From owner-svn-ports-head@FreeBSD.ORG Mon Sep 23 20:32:23 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8C0F4841; Mon, 23 Sep 2013 20:32:23 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F91927F6; Mon, 23 Sep 2013 20:32:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8NKWNg6049324; Mon, 23 Sep 2013 20:32:23 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8NKWNHg049323; Mon, 23 Sep 2013 20:32:23 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201309232032.r8NKWNHg049323@svn.freebsd.org> From: Rene Ladan Date: Mon, 23 Sep 2013 20:32:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328046 - head/astro/boinc-setiathome-enhanced X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 20:32:23 -0000 Author: rene Date: Mon Sep 23 20:32:22 2013 New Revision: 328046 URL: http://svnweb.freebsd.org/changeset/ports/328046 Log: - Add staging support (tested with 'make makeplist') - Convert an optional LIB_DEPENDS to the new syntax - Wrap some long lines Modified: head/astro/boinc-setiathome-enhanced/Makefile Modified: head/astro/boinc-setiathome-enhanced/Makefile ============================================================================== --- head/astro/boinc-setiathome-enhanced/Makefile Mon Sep 23 20:30:03 2013 (r328045) +++ head/astro/boinc-setiathome-enhanced/Makefile Mon Sep 23 20:32:22 2013 (r328046) @@ -20,7 +20,6 @@ BUILD_DEPENDS= ${LOCALBASE}/include/fftw RUN_DEPENDS= boinc_client:${PORTSDIR}/net/boinc-client LIB_DEPENDS= libfftw3f.so:${PORTSDIR}/math/fftw3-float -NO_STAGE= yes USES= gmake pkgconfig USE_XZ= yes USE_AUTOTOOLS= autoconf:env automake:env @@ -45,7 +44,7 @@ X11_DESC= Build screensaver (requires ne .include .if ${PORT_OPTIONS:MX11} -LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg USE_GL= gl glu glut USE_XORG= ice sm x11 xau xcb xext xi xdamage xdmcp xfixes xmu xt xxf86vm BUILD_DEPENDS+= ${LOCALBASE}/lib/libboinc_graphics2.a:${PORTSDIR}/net/boinc-client @@ -100,18 +99,20 @@ pre-configure: (cd ${WRKSRC} ; ./_autosetup) do-install: - ${INSTALL} -d -o ${BOINC_CLIENT_USER} -g ${BOINC_CLIENT_GROUP} ${BOINC_CLIENT_HOME}/projects ${INSTALL} -d -o ${BOINC_CLIENT_USER} -g ${BOINC_CLIENT_GROUP} \ - ${BOINC_CLIENT_HOME}/projects/${SETI_SITE} + ${STAGEDIR}${BOINC_CLIENT_HOME}/projects + ${INSTALL} -d -o ${BOINC_CLIENT_USER} -g ${BOINC_CLIENT_GROUP} \ + ${STAGEDIR}${BOINC_CLIENT_HOME}/projects/${SETI_SITE} ${INSTALL_PROGRAM} -o ${BOINC_CLIENT_USER} -g ${BOINC_CLIENT_GROUP} \ - ${WRKSRC}/client/${SETI_BINARY} ${BOINC_CLIENT_HOME}/projects/${SETI_SITE}/ + ${WRKSRC}/client/${SETI_BINARY} \ + ${STAGEDIR}${BOINC_CLIENT_HOME}/projects/${SETI_SITE}/ .if ${PORT_OPTIONS:MX11} ${INSTALL_PROGRAM} -o ${BOINC_CLIENT_USER} -g ${BOINC_CLIENT_GROUP} \ - ${WRKSRC}/client/seti_graphics ${BOINC_CLIENT_HOME}/projects/${SETI_SITE}/ + ${WRKSRC}/client/seti_graphics \ + ${STAGEDIR}${BOINC_CLIENT_HOME}/projects/${SETI_SITE}/ .endif post-install: @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${CAT} ${PKGMESSAGE} .include