28 lines
670 B
Makefile
28 lines
670 B
Makefile
# Created by: Choe, Cheng-Dae
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jep
|
|
PORTVERSION= 2.4
|
|
CATEGORIES= devel java python
|
|
MASTER_SITES= SF/${PORTNAME}p/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= lippe@FreeBSD.org
|
|
COMMENT= Java Embedded Python
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV= JAVA_HOME=${JAVA_HOME}
|
|
MAKE_ENV= JAVA_HOME=${JAVA_HOME}
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --exec-prefix=${PREFIX}
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
USE_PYTHON= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
# Necessary, since the configure script does the LIBS and
|
|
# LDFLAGS detection wrong
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/jep.jar ${STAGEDIR}${JAVAJARDIR}/
|
|
|
|
.include <bsd.port.mk>
|