blob: d4f1f8018d2f3e8abfd5a180b777c9cdecba2223 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: eclipse-pydev
# Date created: 2007-11-16
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pydev
PORTVERSION= 1.4.7.2843
PORTREVISION= 0
CATEGORIES= java devel python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Pydev%201.4.7
PKGNAMEPREFIX= eclipse-
DISTFILES= org.python.pydev.feature-${PORTVERSION}.zip
MAINTAINER= nivit@FreeBSD.org
COMMENT= Eclipse plugin for Python and Jython development
RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse
JAVA_VERSION= 1.5+
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_JAVA= yes
USE_ZIP= yes
do-install:
.for d in features plugins
cd ${WRKDIR}/${d} && ${COPYTREE_SHARE} . ${PREFIX}/eclipse/${d}
.endfor
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|