36 lines
984 B
Bash
36 lines
984 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/chardet/chardet-2.0.1.ebuild,v 1.9 2010/05/11 21:04:07 ranger Exp $
|
|
|
|
EAPI="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Character encoding auto-detection in Python."
|
|
HOMEPAGE="http://chardet.feedparser.org/ http://code.google.com/p/chardet/"
|
|
SRC_URI="http://chardet.feedparser.org/download/python2-${P}.tgz
|
|
http://chardet.feedparser.org/download/python3-${P}.tgz"
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_unpack() {
|
|
default
|
|
cp -pr "python3-${P}" "${P}"
|
|
|
|
unpacking() {
|
|
cp -pr "python${PYTHON_ABI:0:1}-${P}" "${S}-${PYTHON_ABI}"
|
|
}
|
|
python_execute_function -q unpacking
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
dohtml -r "${S}/docs/"*
|
|
}
|