1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
This commit is contained in:
Vanilla I. Shu 2014-06-17 10:06:38 +00:00
parent ba1ddc0b3d
commit 9eead0ee34
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358088

View File

@ -19,15 +19,14 @@ USES= zip
NO_BUILD= yes
NO_WRKSUBDIR= yes
NO_STAGE= yes
do-install:
@${MKDIR} -p ${PREFIX}/lib/eclipse
@${CP} -r ${WRKSRC}/plugins ${PREFIX}/lib/eclipse
@${CP} -r ${WRKSRC}/features ${PREFIX}/lib/eclipse
@(cd ${WRKSRC}; ${FIND} -s features plugins -not -type d) \
| ${SED} -ne 's,^,lib/eclipse/,p' >> ${TMPPLIST}
@(cd ${WRKSRC}; ${FIND} -s -d features plugins -type d) \
| ${GREP} -vE 'plugins$$|features$$' \
| ${SED} -ne 's,^,@dirrm lib/eclipse/,p' >> ${TMPPLIST}
@${MKDIR} -p ${STAGEDIR}${PREFIX}/lib/eclipse
@${CP} -r ${WRKSRC}/plugins ${STAGEDIR}${PREFIX}/lib/eclipse
@${CP} -r ${WRKSRC}/features ${STAGEDIR}${PREFIX}/lib/eclipse
@(cd ${WRKSRC}; ${FIND} -s features plugins -not -type d) \
| ${SED} -ne 's,^,lib/eclipse/,p' >> ${TMPPLIST}
@(cd ${WRKSRC}; ${FIND} -s -d features plugins -type d) \
| ${GREP} -vE 'plugins$$|features$$' \
| ${SED} -ne 's,^,@dirrm lib/eclipse/,p' >> ${TMPPLIST}
.include <bsd.port.mk>