29 lines
766 B
Bash
29 lines
766 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/geoip-python/geoip-python-1.2.5.ebuild,v 1.2 2012/02/21 05:10:05 patrick Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.* *-python"
|
|
|
|
inherit distutils
|
|
|
|
MY_PN="GeoIP-Python"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="Python bindings for GeoIP"
|
|
HOMEPAGE="http://www.maxmind.com/app/python"
|
|
SRC_URI="http://www.maxmind.com/download/geoip/api/python/${MY_P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-libs/geoip-1.4.5"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
DOCS="README ChangeLog test.py test_city.py test_org.py"
|