From owner-svn-ports-all@FreeBSD.ORG Fri Dec 13 23:15:53 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id DB9FB5B9; Fri, 13 Dec 2013 23:15:53 +0000 (UTC) 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 C7CF7186B; Fri, 13 Dec 2013 23:15:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDNFrSW070930; Fri, 13 Dec 2013 23:15:53 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBDNFrT2070929; Fri, 13 Dec 2013 23:15:53 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201312132315.rBDNFrT2070929@svn.freebsd.org> From: Matthias Andree Date: Fri, 13 Dec 2013 23:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336380 - head/net/cvsupchk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 23:15:53 -0000 Author: mandree Date: Fri Dec 13 23:15:53 2013 New Revision: 336380 URL: http://svnweb.freebsd.org/changeset/ports/336380 Log: Convert to staging. While here, defang a var!= assignment and move it into the do-whatever: targets. Modified: head/net/cvsupchk/Makefile Modified: head/net/cvsupchk/Makefile ============================================================================== --- head/net/cvsupchk/Makefile Fri Dec 13 23:13:46 2013 (r336379) +++ head/net/cvsupchk/Makefile Fri Dec 13 23:15:53 2013 (r336380) @@ -19,21 +19,20 @@ PORTDOCS= * USE_PYTHON= yes NO_BUILD= yes -NO_STAGE= yes .include -src!= ${MAKE} -C ${PORTSDIR}/net/cvsup-without-gui -V WRKSRC +get_src= ${MAKE} -C ${PORTSDIR}/net/cvsup-without-gui -V WRKSRC do-extract: ${MKDIR} ${WRKSRC} - ${SED} 's:^#!/usr/local/bin/python:#!${PYTHON_CMD}:' <${src}/contrib/cvsupchk/cvsupchk >${WRKSRC}/cvsupchk + ${SED} 's:^#!/usr/local/bin/python:#!${PYTHON_CMD}:' <$$(${get_src})/contrib/cvsupchk/cvsupchk >${WRKSRC}/cvsupchk do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/cvsupchk ${PREFIX}/bin/ + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/cvsupchk ${STAGEDIR}${PREFIX}/bin/ .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${src}/contrib/cvsupchk/README ${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} $$(${get_src})/contrib/cvsupchk/README ${STAGEDIR}${DOCSDIR}/ .endif .include