blob: 9e6b2ef9f36cd75a4ef3e0718128ef0f03e3c674 (
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
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/formkit/formkit-0.6.1.ebuild,v 1.3 2004/11/01 20:10:25 kloeri Exp $
inherit python distutils
S=${WORKDIR}/FormKit
DESCRIPTION="Library to handle server-side www forms. Written for Webware WebKit, it can be used stand-alone as well"
SRC_URI="http://dalchemy.com/global/formkit-0.6.1.tar.bz2"
HOMEPAGE="http://dalchemy.com/opensource/formkit/"
DEPEND="dev-lang/python"
RDEPEND="${DEPEND}
www-servers/webware" #TODO
IUSE=""
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="-*" #"~x86"
src_compile() {
cp ${FILESDIR}/${PV}/setup.py . || die
#python setup.py build || die
}
src_install() {
python_version
distutils_src_install
dodoc License.txt
insinto /usr/share/doc/${PF}/Examples && doins Examples/*
insinto /usr/share/doc/${PF}/Docs && doins Docs/*
}
|