diff options
author | 2017-11-12 08:59:47 +0100 | |
---|---|---|
committer | 2017-11-12 08:59:47 +0100 | |
commit | 6ec4c88f11c7e25ab3b9fc77ca6d131af3de3355 (patch) | |
tree | b54933bea2cf9403a3bfa07681242e1153f03d02 | |
parent | dev-binpkg/pypy3: Bump to 5.9.0 (diff) | |
download | mgorny-6ec4c88f11c7e25ab3b9fc77ca6d131af3de3355.tar.gz mgorny-6ec4c88f11c7e25ab3b9fc77ca6d131af3de3355.tar.bz2 mgorny-6ec4c88f11c7e25ab3b9fc77ca6d131af3de3355.zip |
dev-binpkg/pypy: Support LibreSSL builds
-rw-r--r-- | dev-binpkg/pypy/pypy-5.9.0.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dev-binpkg/pypy/pypy-5.9.0.ebuild b/dev-binpkg/pypy/pypy-5.9.0.ebuild index 505e1de..0425266 100644 --- a/dev-binpkg/pypy/pypy-5.9.0.ebuild +++ b/dev-binpkg/pypy/pypy-5.9.0.ebuild @@ -18,14 +18,15 @@ LICENSE="MIT" # pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' SLOT="0/41" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="bzip2 +jit low-memory ncurses sandbox cpu_flags_x86_sse2 test" +IUSE="bzip2 +jit libressl low-memory ncurses sandbox cpu_flags_x86_sse2 test" DEPEND=">=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/expat:0= - dev-libs/openssl:0=[-bindist] bzip2? ( app-arch/bzip2:0= ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) ncurses? ( sys-libs/ncurses:0= ) app-arch/lzip ${PYTHON_DEPS}" @@ -178,7 +179,7 @@ src_compile() { } src_install() { - local flags=( bzip2 jit ncurses sandbox ) + local flags=( bzip2 jit libressl ncurses sandbox ) use x86 && flags+=( cpu_flags_x86_sse2 ) local f suffix="-${ARCH}" |