comparison lang/pypy3/Makefile @ 120:3b09db02a788

Move the old lang/pypy3 repo into the lang/pypy3 folder
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 12 Jan 2024 09:23:35 +0100
parents Makefile@cbf8c9785be8
children cff826a2d6bf
comparison
equal deleted inserted replaced
119:cbf8c9785be8 120:3b09db02a788
1 # Created by: David Naylor <dbn@FreeBSD.org>
2
3 PORTNAME= pypy3
4 PORTREVISION= 0
5 DISTNAME= ${PYTHON_IMPL_MINOR}-v${DISTVERSION}-src
6
7 MASTERDIR= ${.CURDIR}/../pypy
8
9 WRKSRC= ${WRKDIR}/${PYTHON_IMPL_MINOR}-v${DISTVERSION:C/-.*//}-src
10
11 # Without gdbm is not supported on v7.3.9 any more: no extra package needed
12 LIB_DEPENDS+= libgdbm.so:databases/gdbm
13 # We also need for dbm.ndbm the BerkeleyDB in version 5
14 LIB_DEPENDS+= libdb-5.so:databases/db5
15
16 SHEBANG_FILES= \
17 lib-python/3/base64.py \
18 lib-python/3/cProfile.py \
19 lib-python/3/cgi.py \
20 lib-python/3/encodings/rot_13.py \
21 lib-python/3/keyword.py \
22 lib-python/3/idlelib/pyshell.py \
23 lib-python/3/lib2to3/pgen2/token.py \
24 lib-python/3/lib2to3/tests/data/different_encoding.py \
25 lib-python/3/lib2to3/tests/data/false_encoding.py \
26 lib-python/3/lib2to3/tests/pytree_idempotency.py \
27 lib-python/3/pdb.py \
28 lib-python/3/platform.py \
29 lib-python/3/profile.py \
30 lib-python/3/pydoc.py \
31 lib-python/3/quopri.py \
32 lib-python/3/smtpd.py \
33 lib-python/3/smtplib.py \
34 lib-python/3/symbol.py \
35 lib-python/3/tabnanny.py \
36 lib-python/3/tarfile.py \
37 lib-python/3/test/bisect_cmd.py \
38 lib-python/3/test/crashers/recursive_call.py \
39 lib-python/3/test/curses_tests.py \
40 lib-python/3/test/pystone.py \
41 lib-python/3/test/re_tests.py \
42 lib-python/3/test/regrtest.py \
43 lib-python/3/timeit.py \
44 lib-python/3/trace.py \
45 lib-python/3/turtledemo/bytedesign.py \
46 lib-python/3/turtledemo/clock.py \
47 lib-python/3/turtledemo/forest.py \
48 lib-python/3/turtledemo/fractalcurves.py \
49 lib-python/3/turtledemo/lindenmayer.py \
50 lib-python/3/turtledemo/minimal_hanoi.py \
51 lib-python/3/turtledemo/paint.py \
52 lib-python/3/turtledemo/peace.py \
53 lib-python/3/turtledemo/penrose.py \
54 lib-python/3/turtledemo/planet_and_moon.py \
55 lib-python/3/turtledemo/tree.py \
56 lib-python/3/turtledemo/yinyang.py \
57 lib-python/3/uu.py \
58 lib-python/3/webbrowser.py \
59 lib_pypy/_cffi_ssl/tools/make_ssl_data.py
60
61 FORPYIMPL37_VARS= PLIST=${.CURDIR}/pkg-plist.py37
62
63 FORPYIMPL38_VARS= PLIST=${.CURDIR}/pkg-plist.py38
64
65 FORPYIMPL39_VARS= PLIST=${.CURDIR}/pkg-plist.py39
66
67 FORPYIMPL310_VARS= PLIST=${.CURDIR}/pkg-plist.py310
68
69 PACKAGE_ARGS= --without-sqlite3 --without-_tkinter
70
71 pre-install:
72 ${FIND} ${WRKSRC} -name '*.pyc' -delete
73 #${CHMOD} -R a-w ${WRKSRC}
74 #${CHMOD} -R u+w ${WRKSRC}/lib_pypy
75
76 .include "${MASTERDIR}/Makefile"