aboutsummaryrefslogtreecommitdiff
path: root/lang/jython/Makefile
blob: dfc0a546cdbe74e41c4deed334285f2f5ecf2e31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
PORTNAME=	jython
PORTVERSION=	2.7.0
DISTVERSIONPREFIX=	installer-
CATEGORIES=	lang python java
MASTER_SITES=	https://repo1.maven.org/maven2/org/python/jython-installer/${PORTVERSION}/ \
		http://repo1.maven.org/maven2/org/python/jython-installer/${PORTVERSION}/
EXTRACT_SUFX=	.jar

MAINTAINER=	python@FreeBSD.org
COMMENT=	Implementation of Python Interpreter in Pure Java

LICENSE=	PSFL APACHE20
LICENSE_COMB=	multi
LICENSE_FILE_PSFL=	${WRKDIR}/LICENSE.txt
LICENSE_FILE_APACHE20=	${WRKDIR}/LICENSE_Apache.txt

BUILD_DEPENDS=	bash:shells/bash
RUN_DEPENDS=	bash:shells/bash

# Extract only license files
EXTRACT_AFTER_ARGS=	--no-same-owner --no-same-permissions \
			LICENSE.txt LICENSE_Apache.txt

USES=		cpe
CPE_VENDOR=	python
USE_JAVA=	yes
NO_BUILD=	yes
NO_ARCH=	yes
REINPLACE_ARGS=	-i ""

INST_TARGET?=	lib/jython
JYTHON_PREFIX=	${PREFIX}/${INST_TARGET}
PLIST_SUB+=	JYTHON_DIR=${INST_TARGET}

# Do tons of backflips so that the cachedir is put into the user's home
# directory (it's irritating to not be able to cache stuff if you're
# not root).  Furthermore, don't leave a cachedir around from either a
# port install or a package install, but do cache the *.py files in Lib
# during a port install or a package install.
do-install:
# Null the PATH so installer won't find the python2.7 executable
# and won't build a python launcher instead of bash one
	cd ${DISTDIR} && PATH="" ${JAVA} \
		-jar ${DISTNAME}${EXTRACT_SUFX} \
		--silent -d ${STAGEDIR}${JYTHON_PREFIX} -t standard -e ensurepip
# Place python.cachedir in user's home directory by default
	${REINPLACE_CMD} \
		's|\"$$JAVA_OPTS|\"-Dpython.cachedir=$${HOME}/.jython-cachedir $$JAVA_OPTS|g' \
		${STAGEDIR}${JYTHON_PREFIX}/bin/jython
# Teach bin/jython script to solve symlinks the right way
	${REINPLACE_CMD} \
		's,if expr "$$link" : '\''/'\'' > /dev/null; then,if expr "$$link" : '\''^/'\'' > /dev/null; then,' \
		${STAGEDIR}${JYTHON_PREFIX}/bin/jython
# Delete python.cachedir entry from Jython's registry file
	${REINPLACE_CMD} 's/^python\.cachedir/#&/g' \
		${STAGEDIR}${JYTHON_PREFIX}/registry
# Compile all the *.py files to *$py.class files, override HOME and user.home to place
# .jython-cachedir and .jline-jython.history in WRKDIR
	-HOME=${WRKDIR} JAVA_OPTS="-Duser.home=${WRKDIR}" \
		${STAGEDIR}${JYTHON_PREFIX}/bin/jython \
		-m compileall -d ${JYTHON_PREFIX} ${STAGEDIR}${JYTHON_PREFIX}

# Install symbolic links for convenience.
	${LN} -sf ${JYTHON_PREFIX}/bin/jython ${STAGEDIR}${PREFIX}/bin/jython
	${LN} -sf ${JYTHON_PREFIX}/registry ${STAGEDIR}${PREFIX}/etc/jython.reg

.include <bsd.port.mk>