summaryrefslogtreecommitdiff
path: root/java/eclipse-datatools/Makefile
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2010-07-16 02:48:22 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2010-07-16 02:48:22 +0000
commit06a767da5cfeff803ca75ef0be9aa2530c8a94af (patch)
treea1861f887b07b4b1cf69e36faaf1453b6f1e4cc3 /java/eclipse-datatools/Makefile
parentUpdate to version 2.70. (diff)
Update the installation path for the new version 3.5.2 of java/eclipse.
PR: 148623 Submitted by: glewis
Notes
Notes: svn path=/head/; revision=257834
Diffstat (limited to 'java/eclipse-datatools/Makefile')
-rw-r--r--java/eclipse-datatools/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/java/eclipse-datatools/Makefile b/java/eclipse-datatools/Makefile
index 85a496f8024a..22a0f5d5f5ef 100644
--- a/java/eclipse-datatools/Makefile
+++ b/java/eclipse-datatools/Makefile
@@ -19,8 +19,8 @@ MAINTAINER= lioux@FreeBSD.org
COMMENT= Data Tools Platform for the Eclipse IDE
RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse \
- ${LOCALBASE}/eclipse/features/org.eclipse.emf_2.3.2.v200802051830/feature.xml:${PORTSDIR}/java/eclipse-emf \
- ${LOCALBASE}/eclipse/features/org.eclipse.gef_3.3.2.v20080129/feature.xml:${PORTSDIR}/java/eclipse-gef
+ ${LOCALBASE}/lib/eclipse/features/org.eclipse.emf_2.3.2.v200802051830/feature.xml:${PORTSDIR}/java/eclipse-emf \
+ ${LOCALBASE}/lib/eclipse/features/org.eclipse.gef_3.3.2.v20080129/feature.xml:${PORTSDIR}/java/eclipse-gef
LICENSE= EPL
@@ -38,23 +38,23 @@ post-extract:
do-install:
# create destination dir
- @${MKDIR} ${PREFIX}/eclipse
+ @${MKDIR} ${PREFIX}/lib/eclipse
# install both files and directories
@(cd ${WRKSRC}/eclipse && \
${FIND} -s features plugins -type d \
- -exec ${MKDIR} "${PREFIX}/eclipse/{}" \; && \
+ -exec ${MKDIR} "${PREFIX}/lib/eclipse/{}" \; && \
${FIND} -s features plugins -not -type d \
- -exec ${INSTALL_DATA} "{}" "${PREFIX}/eclipse/{}" \; \
+ -exec ${INSTALL_DATA} "{}" "${PREFIX}/lib/eclipse/{}" \; \
)
# used to manually generate the plist files
generate-plist-locally: build
# annotate installation files
@(cd ${WRKSRC}/eclipse && ${FIND} -s features plugins -not -type d) \
- | ${SED} -ne 's,^,eclipse/,p' > ${PLIST}
+ | ${SED} -ne 's,^,lib/eclipse/,p' > ${PLIST}
# annotate installation directories
@(cd ${WRKSRC}/eclipse && ${FIND} -s -d features plugins -type d) \
| ${GREP} -vE '^plugins$$|^features$$' \
- | ${SED} -ne 's,^,@dirrm eclipse/,p' >> ${PLIST}
+ | ${SED} -ne 's,^,@dirrm lib/eclipse/,p' >> ${PLIST}
.include <bsd.port.mk>