blob: bc50fd97ecfbe182922a151640c03c10bb123564 (
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
35
36
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/formencode-0.3.ebuild,v 1.2 2005/11/13 03:17:38 pythonhead Exp $
inherit distutils eutils
MY_PN="FormEncode"
DESCRIPTION="formencode is a validation and form generation package"
HOMEPAGE="http://formencode.org/"
SRC_URI="http://cheeseshop.python.org/packages/source/F/${MY_PN}/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
DEPEND=">=dev-lang/python-2.3"
S=${WORKDIR}/${MY_PN}-${PV}
src_unpack() {
unpack ${A} || die "Failed to unpack ${A}"
cd ${S} || die "Failed to cd to ${S}"
#We don't want to use setuptools until eggs.eclass is solid
rm -rf ez_setup
epatch ${FILESDIR}/${P}-setup-gentoo.patch
}
src_install() {
distutils_src_install
if use doc; then
dodoc docs/*
dodir /usr/share/doc/${PF}/examples
cp -R examples/* ${D}/usr/share/doc/${PF}/examples
fi
}
|