2012-02-14 20:57:25 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-02-20 21:40:18 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyproj/pyproj-1.9.0.ebuild,v 1.3 2012/02/20 14:58:50 patrick Exp $
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
EAPI="3"
|
|
|
|
SUPPORT_PYTHON_ABIS="1"
|
2012-02-20 21:40:18 +04:00
|
|
|
RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-*"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
inherit distutils
|
|
|
|
|
2012-02-14 20:57:25 +04:00
|
|
|
DESCRIPTION="Python interface to PROJ.4 library"
|
2011-11-09 11:33:19 +04:00
|
|
|
HOMEPAGE="http://code.google.com/p/pyproj/ http://pypi.python.org/pypi/pyproj"
|
|
|
|
SRC_URI="http://pyproj.googlecode.com/files/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2012-02-14 20:57:25 +04:00
|
|
|
IUSE="doc"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND=""
|
|
|
|
|
|
|
|
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
|
2012-02-14 20:57:25 +04:00
|
|
|
|
|
|
|
src_install(){
|
|
|
|
distutils_src_install
|
2012-02-16 23:45:32 +04:00
|
|
|
|
2012-02-14 20:57:25 +04:00
|
|
|
if use doc; then
|
|
|
|
dohtml -r docs/*
|
|
|
|
fi
|
|
|
|
}
|