From owner-svn-ports-head@FreeBSD.ORG Sun Oct 6 19:02:38 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 46139153; Sun, 6 Oct 2013 19:02:38 +0000 (UTC) (envelope-from pawel@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 329032A2B; Sun, 6 Oct 2013 19:02:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r96J2cHO039963; Sun, 6 Oct 2013 19:02:38 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r96J2cJV039962; Sun, 6 Oct 2013 19:02:38 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201310061902.r96J2cJV039962@svn.freebsd.org> From: Pawel Pekala Date: Sun, 6 Oct 2013 19:02:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329625 - head/x11-themes/gnome-icons-faenza 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: Sun, 06 Oct 2013 19:02:38 -0000 Author: pawel Date: Sun Oct 6 19:02:37 2013 New Revision: 329625 URL: http://svnweb.freebsd.org/changeset/ports/329625 Log: Add support for STAGEDIR Modified: head/x11-themes/gnome-icons-faenza/Makefile (contents, props changed) Modified: head/x11-themes/gnome-icons-faenza/Makefile ============================================================================== --- head/x11-themes/gnome-icons-faenza/Makefile Sun Oct 6 18:54:13 2013 (r329624) +++ head/x11-themes/gnome-icons-faenza/Makefile Sun Oct 6 19:02:37 2013 (r329625) @@ -22,24 +22,24 @@ THEMES= Faenza Faenza-Dark Faenza-Darke Faenza-Ambiance Faenza-Radiance FAENZA_LIGHT= Faenza FAENZA_DARK= Faenza-Dark +INSTALLDIR= ${STAGEDIR}${PREFIX}/share/icons -NO_STAGE= yes do-install: + @${MKDIR} ${INSTALLDIR} .for theme in ${THEMES} - @cd ${WRKDIR} && ${TAR} -xf ${theme}.tar.gz + @cd ${INSTALLDIR} && ${TAR} -xf ${WRKDIR}/${theme}.tar.gz .if ${FAENZA_LIGHT} == ${theme} || ${FAENZA_DARK} == ${theme} - @cd ${WRKDIR}/${theme}/places/scalable && \ + @cd ${INSTALLDIR}/${theme}/places/scalable && \ ${LN} -sf start-here-gnome.svg start-here.svg && \ ${LN} -sf start-here-gnome-symbolic.svg start-here-symbolic.svg .for size in 22 24 32 48 64 96 - @cd ${WRKDIR}/${theme}/places/${size} && \ + @cd ${INSTALLDIR}/${theme}/places/${size} && \ ${LN} -sf start-here-gnome.png start-here.png .endfor .endif - - ${CP} -R ${WRKDIR}/${theme} ${PREFIX}/share/icons - @cd ${PREFIX} && ${FIND} share/icons/${theme} ! -type d >> ${TMPPLIST} && \ + @cd ${STAGEDIR}${PREFIX} && ${FIND} share/icons/${theme} ! \ + -type d >> ${TMPPLIST} && \ ${FIND} share/icons/${theme} -type d | ${SORT} -r | \ ${SED} 's|^|@dirrm |' >> ${TMPPLIST} .endfor