diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-02-16 13:07:16 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-02-16 13:07:16 +0000 |
commit | 25babc8b50f39d95c66c5bac952d53f9c2b338b8 (patch) | |
tree | 8b2f751135e6d4ab6358d2f1b7d94219447fb49a | |
parent | Support staging and add LICENSE. (diff) |
Stage support
Notes
Notes:
svn path=/head/; revision=344558
-rw-r--r-- | java/eclipse-EPIC/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/java/eclipse-EPIC/Makefile b/java/eclipse-EPIC/Makefile index aba8d566cb59..234895f2252c 100644 --- a/java/eclipse-EPIC/Makefile +++ b/java/eclipse-EPIC/Makefile @@ -28,7 +28,6 @@ EPICFILES= features/org.epic.feature.main_${PORTVERSION} \ plugins/org.epic.regexp_0.6.1 \ plugins/org.epic.source_${PORTVERSION} -NO_STAGE= yes post-extract: .for file in ${EPICFILES} cd ${WRKSRC} \ @@ -37,12 +36,7 @@ post-extract: .endfor do-install: -.for file in ${EPICFILES} - cd ${WRKSRC} \ - && ${MKDIR} ${ECLIPSE}/${file} \ - && ${FIND} ${file} -type d -exec ${MKDIR} ${ECLIPSE}/{} \; \ - && ${FIND} ${file} -type f -exec ${INSTALL_DATA} {} ${ECLIPSE}/{} \; -.endfor + cd ${WRKSRC} && ${COPYTREE_SHARE} "${EPICFILES}" ${STAGEDIR}${ECLIPSE} post-install: .for file in ${EPICFILES} |