diff options
author | lioux <lioux@FreeBSD.org> | 2005-10-06 02:18:56 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2005-10-06 02:18:56 +0800 |
commit | d3823ac39ffc04387bddd78ee124a271d8f25d53 (patch) | |
tree | 825ed71545127aedb421d7a290c841ba5e141639 /net-p2p/azureus | |
parent | 3d0d834ac98ed02494de886719fd5dc2044f47db (diff) | |
download | freebsd-ports-gnome-d3823ac39ffc04387bddd78ee124a271d8f25d53.tar.gz freebsd-ports-gnome-d3823ac39ffc04387bddd78ee124a271d8f25d53.tar.zst freebsd-ports-gnome-d3823ac39ffc04387bddd78ee124a271d8f25d53.zip |
Small protection layer in case the ports system is not completely
available on the target system but the dependencies are (read
java/eclipse).
Diffstat (limited to 'net-p2p/azureus')
-rw-r--r-- | net-p2p/azureus/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net-p2p/azureus/Makefile b/net-p2p/azureus/Makefile index ba1c272fb976..a7864330014b 100644 --- a/net-p2p/azureus/Makefile +++ b/net-p2p/azureus/Makefile @@ -79,8 +79,12 @@ do-install: .include <bsd.port.pre.mk> +.if exists(${PORTSDIR}/java/eclipse) ECLIPSE_PORT= ${PORTSDIR}/java/eclipse ECLIPSE_VERSION!= cd ${ECLIPSE_PORT} && ${MAKE} -V PORTVERSION +.else +ECLIPSE_VERSION= 3.1 +.endif CLASSPATH=. .for jar in ${CLASSPATH_JARS} |