2019-04-14 11:59:58 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
NO_BUILD= yes
|
|
|
|
USE_JAVA= yes
|
|
|
|
JAVA_VERSION= 1.8+
|
|
|
|
|
2019-04-14 12:07:04 +00:00
|
|
|
REPO_DIRS?= features plugins
|
2019-04-14 11:59:58 +00:00
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse
|
|
|
|
@(cd ${WRKSRC}; ${COPYTREE_SHARE} "${REPO_DIRS}" ${STAGEDIR}${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse/)
|
|
|
|
@(cd ${STAGEDIR}${PREFIX}; ${FIND} -s share/eclipse/dropins/${PORTNAME} -not -type d) >> ${TMPPLIST}
|
|
|
|
@(cd ${STAGEDIR}${PREFIX}; ${FIND} -s -d share/eclipse/dropins/${PORTNAME} -type d -empty) | ${SED} -ne 's,^,@dir ,p' >> ${TMPPLIST}
|
2019-04-14 12:07:04 +00:00
|
|
|
|