diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-10-06 08:10:07 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-10-06 08:10:07 +0000 |
commit | ac54401717c62c96c2d719ccf7af6ca2a95fe326 (patch) | |
tree | 22e5b2f22c12eb88ab9013ee3b70df21495d2b15 /dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild | |
parent | added the patch of tcort@cs.ubishops.ca (Manifest recommit) (diff) | |
download | gentoo-2-ac54401717c62c96c2d719ccf7af6ca2a95fe326.tar.gz gentoo-2-ac54401717c62c96c2d719ccf7af6ca2a95fe326.tar.bz2 gentoo-2-ac54401717c62c96c2d719ccf7af6ca2a95fe326.zip |
Version bumped; bug #62689. Added src_test().
Diffstat (limited to 'dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild')
-rw-r--r-- | dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild b/dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild new file mode 100644 index 000000000000..17d3823939a3 --- /dev/null +++ b/dev-python/cjkcodecs/cjkcodecs-1.1.1.ebuild @@ -0,0 +1,22 @@ +# 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.1.1.ebuild,v 1.1 2004/10/06 08:10:07 usata 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_test() { + cd tests + python testall.py || die "testall.py failed" +} |