freebsd-ports/devel/subclipse/Makefile
Edwin Groothuis 090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00

61 lines
1.5 KiB
Makefile

# New ports collection makefile for: subclipse
# Date created: 06 Mar 2005
# Whom: tux@pinguru.net
#
# $FreeBSD$
#
PORTNAME= subclipse
PORTVERSION= 1.2.4
PORTREVISION= 1
CATEGORIES= devel java
MASTER_SITES= http://subclipse.tigris.org/files/documents/906/39522/
DISTNAME= site-${PORTVERSION}
DIST_SUBDIR= eclipse
MAINTAINER= gerrit.beine@gmx.de
COMMENT= A subversion plugin for the Eclipse IDE Framework
RUN_DEPENDS= ${LOCALBASE}/bin/eclipse:${PORTSDIR}/java/eclipse
CONFLICTS= phpeclipse-[0-9]*
WRKSRC= ${WRKDIR}
NO_BUILD= yes
USE_ZIP= yes
ECLIPSE= ${PREFIX}/eclipse
SUBCLIPSE= org.tigris.subversion.subclipse
SUBCLIPSEFILES= features/${SUBCLIPSE}_${PORTVERSION} \
features/${SUBCLIPSE}.mylyn_2.0.0 \
plugins/${SUBCLIPSE}.core_${PORTVERSION} \
plugins/${SUBCLIPSE}.doc_1.2.0 \
plugins/${SUBCLIPSE}.mylyn_2.0.0 \
plugins/${SUBCLIPSE}.ui_${PORTVERSION}
.include <bsd.port.pre.mk>
post-extract:
.for f in ${SUBCLIPSEFILES}
cd ${WRKSRC} \
&& ${MKDIR} ${f} \
&& ${UNZIP_CMD} ${f}.jar -d ${f}
.endfor
do-install:
.for f in ${SUBCLIPSEFILES}
@cd ${WRKSRC} \
&& ${MKDIR} ${ECLIPSE}/${f} \
&& ${FIND} ${f} -type d -exec ${MKDIR} ${ECLIPSE}/{} \; \
&& ${FIND} ${f} -type f -exec ${INSTALL_DATA} {} ${ECLIPSE}/{} \;
.endfor
post-install:
.for f in ${SUBCLIPSEFILES}
@${FIND} ${WRKSRC}/${f} -not -type d \
| ${SED} -ne 's,^${WRKSRC},${ECLIPSE:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
@${FIND} -d ${WRKSRC}/${f} -type d \
| ${SED} -ne 's,^${WRKSRC},@dirrm ${ECLIPSE:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
.endfor
.include <bsd.port.post.mk>