diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2005-01-31 16:43:03 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2005-01-31 16:43:03 +0000 |
commit | ed821b9a7ddd233f15a0d462bb18af9ba1314282 (patch) | |
tree | 05bc33f2b91cf5f1b2c05d4eb4bac0b5dcc720c0 | |
parent | I messed up the MOVED fields a bit. (diff) |
Add kinda special slave port for open-motif, which is expected
to be used while building of native jdk ports. In conjunction with
additional rules in jdk's Makefile it'll allow avoid installing of
open-motif while building of jdk and include special patch which fixes
Drag'n'Drop support for Sun's JDK by default.
Notes
Notes:
svn path=/head/; revision=127789
-rw-r--r-- | x11-toolkits/open-motif-jdk/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11-toolkits/open-motif-jdk/Makefile b/x11-toolkits/open-motif-jdk/Makefile new file mode 100644 index 000000000000..9840f4d07804 --- /dev/null +++ b/x11-toolkits/open-motif-jdk/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: open-motif-jdk +# Date created: 31 January 2005 +# Whom: Alexey Zelkin <phantom@FreeBSD.org> +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -jdk + +MAINTAINER= phantom@FreeBSD.org + +.if defined(WITH_JDK_PATCH) +EXTRA_PATCHES+= ${WITH_JDK_PATCH} +.else +IGNORE= "cannot be built separately" +.endif + +WITHOUT_OPENMOTIF_DEMOS= YES +WITHOUT_OPENMOTIF_MANUALS= YES + +MASTERDIR= ${.CURDIR}/../open-motif + +.include "${MASTERDIR}/Makefile" |