blob: 90294599e7a7af302ca6237da271e87ddef886ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-python/csv/csv-0.5.0.ebuild,v 1.4 2003/06/21 22:30:24 drobbins Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="CSV Module for Python"
SRC_URI="http://www.object-craft.com.au/projects/csv/download/csv-0.5.tar.gz"
HOMEPAGE="http://www.object-craft.com.au/projects/csv/"
IUSE=""
KEYWORDS="x86 amd64 ~alpha ~ppc ~sparc"
DEPEND="virtual/python"
LICENSE="PYTHON"
SLOT="0"
inherit distutils
src_compile() {
distutils_src_compile
}
src_install() {
distutils_src_install
}
|