diff options
author | znerd <znerd@FreeBSD.org> | 2002-03-28 19:24:43 +0800 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2002-03-28 19:24:43 +0800 |
commit | 9d5e7f051f32f9a8633e7959af6465e90a6f383f (patch) | |
tree | 946e8c3e5a0e7495d1c92f673f0cb3b1be012131 /Mk/bsd.port.mk | |
parent | 8e5f07c8d2e6d7e045c28d05ead79b2f038ee19c (diff) | |
download | freebsd-ports-gnome-9d5e7f051f32f9a8633e7959af6465e90a6f383f.tar.gz freebsd-ports-gnome-9d5e7f051f32f9a8633e7959af6465e90a6f383f.tar.zst freebsd-ports-gnome-9d5e7f051f32f9a8633e7959af6465e90a6f383f.zip |
Added bsd.java.mk. This adds Java-specific support to ports by
means of a USE_JAVA definition. If a port does not define
USE_JAVA, then this change should not affect that port.
The purpose of this bsd.java.mk file has been extensively
discussed on the freebsd-java mailing list. The current
bsd.java.mk is based on the following specification documents:
http://www.metaverse.nl/~ernst/installing.html
http://www.metaverse.nl/~ernst/writing.html
A proposal that lead to the development of these documents and
finally the current bsd.java.mk file is:
http://www.metaverse.nl/~ernst/freebsd-java-proposal-20011116.html
The bsd.java.mk has been sent to portmgr for review. They had
no objections.
Reviewed by: portmgr@FreeBSD.org, java@FreeBSD.org
Approved by: sobomax@FreeBSD.org
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 752790f30ab1..098f784668d8 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -782,6 +782,10 @@ MAKE_ENV+= OPENSSLLIB=${OPENSSLLIB} OPENSSLINC=${OPENSSLINC} \ .include "${PORTSDIR}/Mk/bsd.python.mk" .endif +.if defined(USE_JAVA) +.include "${PORTSDIR}/Mk/bsd.java.mk" +.endif + .if defined(USE_RUBY) || defined(USE_LIBRUBY) .include "${PORTSDIR}/Mk/bsd.ruby.mk" .endif |