mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-08 01:15:00 +01:00
26 lines
565 B
Bash
26 lines
565 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
inherit distutils-r1 flag-o-matic
|
|
|
|
DESCRIPTION="Experimental Python wrapper for OpenSSL"
|
|
HOMEPAGE="https://github.com/nabla-c0d3/nassl"
|
|
SRC_URI="https://github.com/nabla-c0d3/nassl/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_compile() {
|
|
append-cflags -fno-strict-aliasing
|
|
append-ldflags -Wl,-z,noexecstack
|
|
python2.7 setup.py build
|
|
}
|