blob: 0cb1fea590734d26ebc0249d2a9d0e18c5b0e626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cjkcodecs/cjkcodecs-1.0.3.ebuild,v 1.4 2004/07/12 22:33:14 tgall Exp $
inherit distutils
DESCRIPTION="Python Codecs for CJK Encodings. Aimed at replacing ChineseCodecs, JapaneseCodecs and KoreanCodecs"
SRC_URI="http://download.berlios.de/cjkpython/${P}.tar.bz2"
HOMEPAGE="http://cjkpython.i18n.org/"
IUSE=""
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha ~ppc ~x86 ppc64"
DEPEND=">=dev-lang/python-2.1"
DOCS="doc/*"
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}/tests
doins tests/*
}
|