mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 18:13:12 -04:00
- Use Data Tools SDK distribution from now on for other ports' benefit o Fix typo on "Date Created" tag in the port's Makefile
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
# New ports collection makefile for: eclipse-datatools
|
|
# Date created: Sun 1 Apr 2007 22:18:17 UTC
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= datatools
|
|
DISTVERSION= 1.5.1_101607
|
|
CATEGORIES= java devel databases
|
|
MASTER_SITE_SUBDIR= 1.5
|
|
PKGNAMEPREFIX= eclipse-
|
|
DISTNAME= dtp-sdk_${DISTVERSION}
|
|
DIST_SUBDIR= eclipse
|
|
|
|
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.2.4.v200710030400/feature.xml:${PORTSDIR}/java/eclipse-emf \
|
|
${LOCALBASE}/eclipse/features/org.eclipse.gef_3.2.2.v20070208/feature.xml:${PORTSDIR}/java/eclipse-gef
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
JAVA_OS= native
|
|
|
|
post-extract:
|
|
# avoid empty dirs since they break the automated PLIST generation
|
|
@${FIND} ${WRKSRC} -type d -empty \
|
|
-exec ${TOUCH} "{}/.keep_me" \;
|
|
|
|
do-install:
|
|
# create destination dir
|
|
@${MKDIR} ${PREFIX}/eclipse
|
|
# install both files and directories
|
|
@(cd ${WRKSRC}/eclipse && \
|
|
${FIND} -s features plugins -type d \
|
|
-exec ${MKDIR} "${PREFIX}/eclipse/{}" \; && \
|
|
${FIND} -s features plugins -not -type d \
|
|
-exec ${INSTALL_DATA} "{}" "${PREFIX}/eclipse/{}" \; \
|
|
)
|
|
# annotate installation files
|
|
@(cd ${WRKSRC} && ${FIND} -s eclipse/features eclipse/plugins -not -type d) >> ${TMPPLIST}
|
|
# annotate installation directories
|
|
@(cd ${WRKSRC} && ${FIND} -s -d eclipse/features eclipse/plugins -type d) \
|
|
| ${GREP} -vE 'eclipse/plugins$$|eclipse/features$$' \
|
|
| ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.include "${.CURDIR}/Makefile.master-sites"
|
|
|
|
.include <bsd.port.post.mk>
|