Date: Mon, 4 Nov 2013 11:02:47 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332690 - in head/textproc: en-hunspell es-hunspell it-hunspell nl-hunspell no-hunspell ro-hunspell sk-hunspell so-hunspell sq-hunspell sr-hunspell ss-hunspell sw-hunspell ti-hunspell t... Message-ID: <201311041102.rA4B2lsH033207@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Mon Nov 4 11:02:46 2013 New Revision: 332690 URL: http://svnweb.freebsd.org/changeset/ports/332690 Log: Use bsdtar to extract Modified: head/textproc/en-hunspell/Makefile head/textproc/es-hunspell/Makefile head/textproc/it-hunspell/Makefile head/textproc/nl-hunspell/Makefile head/textproc/no-hunspell/Makefile head/textproc/ro-hunspell/Makefile head/textproc/sk-hunspell/Makefile head/textproc/so-hunspell/Makefile head/textproc/sq-hunspell/Makefile head/textproc/sr-hunspell/Makefile head/textproc/ss-hunspell/Makefile head/textproc/sw-hunspell/Makefile head/textproc/ti-hunspell/Makefile head/textproc/tk-hunspell/Makefile head/textproc/tn-hunspell/Makefile head/textproc/ts-hunspell/Makefile head/textproc/ve-hunspell/Makefile head/textproc/xh-hunspell/Makefile head/textproc/yi-hunspell/Makefile head/textproc/zu-hunspell/Makefile Modified: head/textproc/en-hunspell/Makefile ============================================================================== --- head/textproc/en-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/en-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -16,7 +16,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= English hunspell dictionaries -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/es-hunspell/Makefile ============================================================================== --- head/textproc/es-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/es-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -15,7 +15,6 @@ COMMENT= Spanish hunspell dictionaries LICENSE= GPLv3 LGPL3 MPL LICENSE_COMB= dual -USE_ZIP= yes NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/it-hunspell/Makefile ============================================================================== --- head/textproc/it-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/it-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,7 @@ COMMENT= Italian hunspell dictionaries LICENSE= GPLv3 -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/nl-hunspell/Makefile ============================================================================== --- head/textproc/nl-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/nl-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -15,7 +15,6 @@ COMMENT= Dutch hunspell dictionaries LICENSE= BSD -USE_ZIP= yes NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/no-hunspell/Makefile ============================================================================== --- head/textproc/no-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/no-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Norwegian (Nynorsk and Bokmaal) hunspell dictionaries -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes PLIST_FILES= %%DATADIR%%/nb_NO.aff \ @@ -22,8 +22,9 @@ PLIST_FILES= %%DATADIR%%/nb_NO.aff \ PLIST_DIRSTRY= %%DATADIR%% post-extract: - @${EXTRACT_CMD} ${WRKDIR}/nb_NO.zip -d ${WRKSRC}/ - @${EXTRACT_CMD} ${WRKDIR}/nn_NO.zip -d ${WRKSRC}/ + @${MKDIR} ${WRKSRC} + @${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${WRKDIR}/nb_NO.zip -C ${WRKSRC}/ + @${EXTRACT_CMD} ${EXTRACT_BEOFRE_ARGS} ${WRKDIR}/nn_NO.zip -C ${WRKSRC}/ do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/ Modified: head/textproc/ro-hunspell/Makefile ============================================================================== --- head/textproc/ro-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/ro-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,7 @@ COMMENT= Romanian hunspell dictionaries LICENSE= LGPL21 GPLv2 MPL LICENSE_COMB= dual -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/sk-hunspell/Makefile ============================================================================== --- head/textproc/sk-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/sk-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -15,7 +15,7 @@ COMMENT= Slovak hunspell dictionaries LICENSE= LGPL21 GPLv2 MPL LICENSE_COMB= dual -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes PLIST_FILES= %%DATADIR%%/sk_SK.aff \ Modified: head/textproc/so-hunspell/Makefile ============================================================================== --- head/textproc/so-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/so-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -16,7 +16,6 @@ COMMENT= Somali hunspell dictionaries LICENSE= GPLv2 -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/sq-hunspell/Makefile ============================================================================== --- head/textproc/sq-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/sq-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Albanian hunspell dictionaries -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes PLIST_FILES= %%DATADIR%%/sq_AL.aff \ Modified: head/textproc/sr-hunspell/Makefile ============================================================================== --- head/textproc/sr-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/sr-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Serbian hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/ss-hunspell/Makefile ============================================================================== --- head/textproc/ss-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/ss-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Swati hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/sw-hunspell/Makefile ============================================================================== --- head/textproc/sw-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/sw-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Swedish hunspell dictionaries -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes NO_WRKSUBDIR= yes PROJECTHOST= dsso Modified: head/textproc/ti-hunspell/Makefile ============================================================================== --- head/textproc/ti-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/ti-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Tigrigna hunspell dictionaries -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/textproc/tk-hunspell/Makefile ============================================================================== --- head/textproc/tk-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/tk-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Turkmen hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/tn-hunspell/Makefile ============================================================================== --- head/textproc/tn-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/tn-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Tswana hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/ts-hunspell/Makefile ============================================================================== --- head/textproc/ts-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/ts-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Tsonga hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/ve-hunspell/Makefile ============================================================================== --- head/textproc/ve-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/ve-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Venda hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/xh-hunspell/Makefile ============================================================================== --- head/textproc/xh-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/xh-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Xhosa hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/yi-hunspell/Makefile ============================================================================== --- head/textproc/yi-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/yi-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Yiddish hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries Modified: head/textproc/zu-hunspell/Makefile ============================================================================== --- head/textproc/zu-hunspell/Makefile Mon Nov 4 10:54:56 2013 (r332689) +++ head/textproc/zu-hunspell/Makefile Mon Nov 4 11:02:46 2013 (r332690) @@ -14,7 +14,6 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Zulu hunspell dictionaries -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311041102.rA4B2lsH033207>