svn commit: r406278 - head/devel/chrpath

Dmitry Marakasov amdmi3 at FreeBSD.org
Sat Jan 16 21:40:00 UTC 2016


Author: amdmi3
Date: Sat Jan 16 21:39:59 2016
New Revision: 406278
URL: https://svnweb.freebsd.org/changeset/ports/406278

Log:
  - Switch to options helpers

Modified:
  head/devel/chrpath/Makefile

Modified: head/devel/chrpath/Makefile
==============================================================================
--- head/devel/chrpath/Makefile	Sat Jan 16 21:39:43 2016	(r406277)
+++ head/devel/chrpath/Makefile	Sat Jan 16 21:39:59 2016	(r406278)
@@ -13,20 +13,18 @@ COMMENT=	Tool to modify DT_RPATH in exis
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-GNU_CONFIGURE=	yes
-
 USES=		gmake
+GNU_CONFIGURE=	yes
 
 PLIST_FILES=	bin/chrpath man/man1/chrpath.1.gz
-
 PORTDOCS=	AUTHORS ChangeLog NEWS README
 
 OPTIONS_DEFINE=	DOCS
 
-post-install:
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
-.	for i in ${PORTDOCS}
-		${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
-.	endfor
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for i in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
+.endfor
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list