ed821b9a7d
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.
23 lines
451 B
Makefile
23 lines
451 B
Makefile
# 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"
|