mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
5a52a08234
java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and java/openjdk6 and java/openjdk6-jre were removed from the ports tree (r512663). Now this patch completely removes remaining stuff from the ports tree. PR: 241953 (exp-run) Reviewed by: glewis Approved by: portmgr (antoine) Differential Revision: https://reviews.freebsd.org/D22342
48 lines
870 B
Makefile
48 lines
870 B
Makefile
# Created by: Lev Serebryakov <lev@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMEPREFIX= java-
|
|
CATEGORIES= java
|
|
|
|
MAINTAINER= lev@FreeBSD.org
|
|
COMMENT= Java bindings for Version control system
|
|
|
|
USES+= compiler
|
|
|
|
USE_JAVA= yes
|
|
JAVA_OS= native
|
|
JAVA_BUILD= yes
|
|
JAVA_RUN= yes
|
|
|
|
|
|
PORTREVISION_113= 0
|
|
PORTREVISION_LTS= 0
|
|
|
|
SVN_BUILD_BINDINGS= yes
|
|
|
|
.include "${.CURDIR}/../../devel/subversion/Makefile.addons"
|
|
|
|
CONFIGURE_ARGS+= --enable-javahl \
|
|
--with-jdk=${JAVA_HOME} \
|
|
--with-jikes=no \
|
|
--without-gnome-keyring \
|
|
--without-kwallet \
|
|
--with-apxs=no
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
ALL_TARGET= javahl
|
|
INSTALL_TARGET= install-javahl
|
|
|
|
post-configure:
|
|
.if ${COMPILER_TYPE} == clang
|
|
@${REINPLACE_CMD} "s#^LT_CXX_LIBADD = .*#LT_CXX_LIBADD =#" ${WRKSRC}/Makefile
|
|
.else
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
pre-build:
|
|
@${MKDIR} ${WRKSRC}/subversion/bindings/java/javahl/classes
|
|
|
|
.include <bsd.port.post.mk>
|