From c77f9482061537d69d6979799293ef6313decc12 Mon Sep 17 00:00:00 2001 From: mandree Date: Fri, 13 Dec 2013 23:15:53 +0000 Subject: Convert to staging. While here, defang a var!= assignment and move it into the do-whatever: targets. --- net/cvsupchk/Makefile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'net/cvsupchk') diff --git a/net/cvsupchk/Makefile b/net/cvsupchk/Makefile index d985b7df9a7e..9b54afad684e 100644 --- a/net/cvsupchk/Makefile +++ b/net/cvsupchk/Makefile @@ -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 -- cgit