svn commit: r336113 - head/devel/asmx

Baptiste Daroussin bapt at FreeBSD.org
Tue Dec 10 21:04:55 UTC 2013


Author: bapt
Date: Tue Dec 10 21:04:54 2013
New Revision: 336113
URL: http://svnweb.freebsd.org/changeset/ports/336113

Log:
  Support stage
  Use bsdtar to extract distfile

Modified:
  head/devel/asmx/Makefile

Modified: head/devel/asmx/Makefile
==============================================================================
--- head/devel/asmx/Makefile	Tue Dec 10 21:02:02 2013	(r336112)
+++ head/devel/asmx/Makefile	Tue Dec 10 21:04:54 2013	(r336113)
@@ -6,6 +6,7 @@ PORTVERSION=	1.8.2
 PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://xi6.com/files/
+EXTRACT_SUFX=	.zip
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Multi-CPU macro assembler for many major 8-bit and 16-bit CPUs
@@ -26,11 +27,8 @@ Z80_DESC=	Zilog Z-80 and Nintendo Gamebo
 
 NO_WRKSUBDIR=	yes
 
-USE_ZIP=	yes
-
 PORTDOCS=	README.txt
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:M1802}
@@ -93,11 +91,9 @@ do-build:
 
 do-install:
 .for f in ${ALL_TARGET}
-	${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
 .endfor
-.if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
-.endif
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list