Date: Sat, 30 Aug 2014 22:14:10 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366685 - in head/java/eclipse-langpack: . files Message-ID: <201408302214.s7UMEAks084282@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Sat Aug 30 22:14:10 2014 New Revision: 366685 URL: http://svnweb.freebsd.org/changeset/ports/366685 QAT: https://qat.redports.org/buildarchive/r366685/ Log: Stage java/eclipse-langpack PR: 193088 Submitted by: turutani (Kyoto) Modified: head/java/eclipse-langpack/Makefile head/java/eclipse-langpack/files/install.sh head/java/eclipse-langpack/pkg-descr head/java/eclipse-langpack/pkg-plist Modified: head/java/eclipse-langpack/Makefile ============================================================================== --- head/java/eclipse-langpack/Makefile Sat Aug 30 21:49:21 2014 (r366684) +++ head/java/eclipse-langpack/Makefile Sat Aug 30 22:14:10 2014 (r366685) @@ -23,15 +23,13 @@ USES= zip NO_WRKSUBDIR= yes PLIST= ${WRKDIR}/pkg-plist -NO_STAGE= yes do-build: @${RM} -f ${PLIST} @${TOUCH} ${PLIST} - @(cd ${WRKSRC}; ${FIND} eclipse -type f) | ${SORT} | ${SED} -e 's,^eclipse,lib/eclipse,' > ${PLIST} + (cd ${WRKSRC}; ${FIND} eclipse -type f) | ${SORT} | ${SED} -e 's,^eclipse,lib/eclipse,' > ${PLIST} @${CAT} ${.CURDIR}/pkg-plist >> ${PLIST} do-install: - @${SETENV} ${SH} ${FILESDIR}/install.sh ${WRKSRC} \ - ${PREFIX} ${SHAREOWN} ${SHAREGRP} 0755 0644 + ${SETENV} ${SH} ${FILESDIR}/install.sh ${WRKSRC} ${STAGEDIR}${PREFIX} .include <bsd.port.mk> Modified: head/java/eclipse-langpack/files/install.sh ============================================================================== --- head/java/eclipse-langpack/files/install.sh Sat Aug 30 21:49:21 2014 (r366684) +++ head/java/eclipse-langpack/files/install.sh Sat Aug 30 22:14:10 2014 (r366685) @@ -1,13 +1,12 @@ #!/bin/sh WRKDIR=$1; PREFIX=$2 -OWNER=$3; GROUP=$4; DPERM=$5; FPERM=$6 cd ${WRKDIR} for dir in `find eclipse -type d | sort`; do - install -d -o ${OWNER} -g ${GROUP} -m ${DPERM} ${PREFIX}/lib/${dir} + install -d ${PREFIX}/lib/${dir} done for file in `find eclipse -type f | sort`; do - install -c -o ${OWNER} -g ${GROUP} -m ${FPERM} ${file} ${PREFIX}/lib/${file} + install ${file} ${PREFIX}/lib/${file} done Modified: head/java/eclipse-langpack/pkg-descr ============================================================================== --- head/java/eclipse-langpack/pkg-descr Sat Aug 30 21:49:21 2014 (r366684) +++ head/java/eclipse-langpack/pkg-descr Sat Aug 30 22:14:10 2014 (r366685) @@ -4,24 +4,19 @@ download which are distributed as a set install by extracting over your Eclipse directory and restarting Eclipse. Specifically, -NLpack1- Contains the NL fragments and the NL features that contain -those fragments for: German, Spanish, French, Italian, Japanese, -Korean, Portuguese (Brazil), Traditional Chinese and Simplified -Chinese. +NLpackX contains the NL fragments and the NL features that contain +those fragments for the below languages with each X: -NLpack2- Contains the NL fragments and the NL features that contain -those fragments for: Czech, Hungarian, Polish and Russian. - -NLpack2a- Contains the NL fragments and the NL features that contain -those fragments for: Danish, Dutch, Finnish, Greek, Norwegian, -Portuguese, Swedish and Turkish. - -NLpackBidi- Contains the NL fragments and the NL features that contain -those fragments for: Arabic and Hebrew. +X=1: German, Spanish, French, Italian, Japanese, Korean, + Portuguese (Brazil), Traditional Chinese and Simplified Chinese. +X=2: Czech, Hungarian, Polish and Russian. +X=2a: Danish, Dutch, Finnish, Greek, Norwegian, Portuguese, + Swedish and Turkish. +X=Bidi: Arabic and Hebrew. These translations are based on the Eclipse 3.2 build but should work with all subsequent 3.2.x maintenance releases. If new strings are added to Eclipse after 3.2, they will not show up as translated in the 3.2.x stream when you install this language pack. -http://download.eclipse.org/eclipse/downloads/drops/L-3.2.1_Language_Packs-200609210945/index.php +WWW: http://www.eclipse.org/downloads/ Modified: head/java/eclipse-langpack/pkg-plist ============================================================================== --- head/java/eclipse-langpack/pkg-plist Sat Aug 30 21:49:21 2014 (r366684) +++ head/java/eclipse-langpack/pkg-plist Sat Aug 30 22:14:10 2014 (r366685) @@ -384,7 +384,6 @@ @dirrm lib/eclipse/plugins/com.ibm.icu.source.nl2_3.4.5.v200609270227 @dirrm lib/eclipse/plugins/com.ibm.icu.source.nl1_3.4.5.v200609270227/META-INF @dirrm lib/eclipse/plugins/com.ibm.icu.source.nl1_3.4.5.v200609270227 -@dirrmtry lib/eclipse/plugins @dirrm lib/eclipse/features/org.eclipse.sdk.nlsBidi_3.2.1.v200609270227 @dirrm lib/eclipse/features/org.eclipse.sdk.nls2a_3.2.1.v200609270227 @dirrm lib/eclipse/features/org.eclipse.sdk.nls2_3.2.1.v200609270227 @@ -421,5 +420,3 @@ @dirrm lib/eclipse/features/org.eclipse.jdt.nls2a_3.2.1.v200609270227 @dirrm lib/eclipse/features/org.eclipse.jdt.nls2_3.2.1.v200609270227 @dirrm lib/eclipse/features/org.eclipse.jdt.nls1_3.2.1.v200609270227 -@dirrmtry lib/eclipse/features -@dirrmtry lib/eclipse
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408302214.s7UMEAks084282>