svn commit: r339228 - head/converters/cocot

Baptiste Daroussin bapt at FreeBSD.org
Thu Jan 9 13:23:07 UTC 2014


Author: bapt
Date: Thu Jan  9 13:23:06 2014
New Revision: 339228
URL: http://svnweb.freebsd.org/changeset/ports/339228

Log:
  Support stage
  Use bsdtar to extract the zip file

Modified:
  head/converters/cocot/Makefile

Modified: head/converters/cocot/Makefile
==============================================================================
--- head/converters/cocot/Makefile	Thu Jan  9 13:20:36 2014	(r339227)
+++ head/converters/cocot/Makefile	Thu Jan  9 13:23:06 2014	(r339228)
@@ -8,11 +8,13 @@ MASTER_SITES=	ftp://ftp.iDaemons.org/pub
 		${MASTER_SITE_LOCAL}
 MASTER_SITE_SUBDIR=	knu
 DISTNAME=	${PORTNAME}-1.1-${PORTVERSION}
+EXTRACT_SUFX=	.zip
 
 MAINTAINER=	knu at FreeBSD.org
 COMMENT=	Code Converter on TTY
 
-USE_ZIP=	yes
+OPTIONS_DEFINE=	DOCS
+
 USES=		iconv
 WRKSRC=		${WRKDIR}/vmi-${PORTNAME}-8bc9f64
 GNU_CONFIGURE=	yes
@@ -23,20 +25,13 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 DOCS_EN=	COPYING ChangeLog
 DOCS_JA=	ChangeLog.ja README.ja
 
-NO_STAGE=	yes
-
-.include <bsd.port.options.mk>
-
 post-install:
-.if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR}
-	${MKDIR} ${DOCSDIR}/ja
+	${MKDIR} ${STAGEDIR}${DOCSDIR}/ja
 .for f in ${DOCS_EN}
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
 .endfor
 .for f in ${DOCS_JA}
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ja
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ja
 .endfor
-.endif
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list