090059a210
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)
39 lines
943 B
Makefile
39 lines
943 B
Makefile
# New ports collection makefile for: eclipseme
|
|
# Date created: July 22, 2004
|
|
# Whom: past@ebs.gr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eclipseme
|
|
PORTVERSION= 0.4.6
|
|
PORTREVISION= 2
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
DIST_SUBDIR= eclipse
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Eclipse J2ME Plugin
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/eclipse:${PORTSDIR}/java/eclipse \
|
|
${LOCALBASE}/bin/ktoolbar:${PORTSDIR}/java/sun-wtk
|
|
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
NO_WRKSUBDIR= yes
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
APP_HOME= ${PREFIX}/eclipse/plugins/${PORTNAME}_${PORTVERSION}
|
|
|
|
.if defined(WITH_PROGUARD)
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/proguard/lib/proguard.jar:${PORTSDIR}/java/proguard
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/eclipse/plugins
|
|
@${CP} -R ${WRKSRC}/${PORTNAME}_${PORTVERSION} ${PREFIX}/eclipse/plugins/
|
|
|
|
post-install:
|
|
@${CAT} ./pkg-message | ${SED} -e 's|%%PREFIX%%|${APP_HOME}|'
|
|
|
|
.include <bsd.port.mk>
|