mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
26 lines
663 B
Bash
26 lines
663 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python2_7 pypy )
|
|
|
|
inherit distutils-r1 flag-o-matic
|
|
|
|
DESCRIPTION="Simple MSSQL python extension module"
|
|
HOMEPAGE="http://pymssql.sourceforge.net/ https://code.google.com/p/pymssql/ https://pypi.python.org/pypi/pymssql"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-db/freetds-0.63[mssql]
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
python_configure_all() {
|
|
append-flags -fno-strict-aliasing
|
|
}
|