Mercurial > hgrepos > FreeBSD > ports > PyPy
comparison Makefile @ 69:f7806d358539
MERGE: the "origin" branch with the existing ports files
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Thu, 29 Sep 2022 09:19:28 +0200 |
| parents | b8cea9d588b1 |
| children | 82ca701f5432 |
comparison
equal
deleted
inserted
replaced
| 67:9a0f32f1678b | 69:f7806d358539 |
|---|---|
| 1 # Created by: David Naylor <dbn@FreeBSD.org> | |
| 2 # $FreeBSD: head/lang/pypy3/Makefile 559974 2021-01-02 21:48:19Z rene $ | |
| 3 | |
| 4 PORTNAME= pypy3 | |
| 5 DISTNAME= ${PORTNAME}.6-v${DISTVERSION}-src | |
| 6 | |
| 7 MASTERDIR= ${.CURDIR}/../pypy | |
| 8 | |
| 9 WRKSRC= ${WRKDIR}/${PORTNAME}.6-v${DISTVERSION:C/-.*//}-src | |
| 10 | |
| 11 SHEBANG_FILES= \ | |
| 12 lib-python/3/base64.py \ | |
| 13 lib-python/3/cProfile.py \ | |
| 14 lib-python/3/cgi.py \ | |
| 15 lib-python/3/encodings/rot_13.py \ | |
| 16 lib-python/3/keyword.py \ | |
| 17 lib-python/3/idlelib/pyshell.py \ | |
| 18 lib-python/3/lib2to3/pgen2/token.py \ | |
| 19 lib-python/3/lib2to3/tests/data/different_encoding.py \ | |
| 20 lib-python/3/lib2to3/tests/data/false_encoding.py \ | |
| 21 lib-python/3/lib2to3/tests/pytree_idempotency.py \ | |
| 22 lib-python/3/pdb.py \ | |
| 23 lib-python/3/platform.py \ | |
| 24 lib-python/3/profile.py \ | |
| 25 lib-python/3/pydoc.py \ | |
| 26 lib-python/3/quopri.py \ | |
| 27 lib-python/3/smtpd.py \ | |
| 28 lib-python/3/smtplib.py \ | |
| 29 lib-python/3/symbol.py \ | |
| 30 lib-python/3/tabnanny.py \ | |
| 31 lib-python/3/tarfile.py \ | |
| 32 lib-python/3/test/bisect.py \ | |
| 33 lib-python/3/test/crashers/recursive_call.py \ | |
| 34 lib-python/3/test/curses_tests.py \ | |
| 35 lib-python/3/test/pystone.py \ | |
| 36 lib-python/3/test/re_tests.py \ | |
| 37 lib-python/3/test/regrtest.py \ | |
| 38 lib-python/3/timeit.py \ | |
| 39 lib-python/3/trace.py \ | |
| 40 lib-python/3/turtledemo/bytedesign.py \ | |
| 41 lib-python/3/turtledemo/clock.py \ | |
| 42 lib-python/3/turtledemo/forest.py \ | |
| 43 lib-python/3/turtledemo/fractalcurves.py \ | |
| 44 lib-python/3/turtledemo/lindenmayer.py \ | |
| 45 lib-python/3/turtledemo/minimal_hanoi.py \ | |
| 46 lib-python/3/turtledemo/paint.py \ | |
| 47 lib-python/3/turtledemo/peace.py \ | |
| 48 lib-python/3/turtledemo/penrose.py \ | |
| 49 lib-python/3/turtledemo/planet_and_moon.py \ | |
| 50 lib-python/3/turtledemo/tree.py \ | |
| 51 lib-python/3/turtledemo/yinyang.py \ | |
| 52 lib-python/3/uu.py \ | |
| 53 lib-python/3/webbrowser.py \ | |
| 54 lib_pypy/_cffi_ssl/tools/make_ssl_data.py | |
| 55 | |
| 56 PACKAGE_ARGS= --without-gdbm --without-sqlite3 --without-tk | |
| 57 | |
| 58 PYPY_CFFI_VER= ${PORTNAME}6-pp${DISTVERSION:C/.[^.]+$//:S/.//}-${ARCH}-${OPSYS:tl}${OSREL:C/\..*//} | |
| 59 | |
| 60 pre-install: | |
| 61 ${FIND} ${WRKSRC} -name '*.pyc' -delete | |
| 62 #${CHMOD} -R a-w ${WRKSRC} | |
| 63 #${CHMOD} -R u+w ${WRKSRC}/lib_pypy | |
| 64 | |
| 65 .include "${MASTERDIR}/Makefile" |
