blob: 283e12adbac3d0c473ad0f1744d00d1dd16dfbe6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/colubrid/colubrid-0.10-r1.ebuild,v 1.2 2008/07/14 03:32:08 antarus Exp $
inherit distutils
DESCRIPTION="Colubrid is a set of tools around the WSGI standard."
HOMEPAGE="http://wsgiarea.pocoo.org/colubrid/"
MY_P="Colubrid-${PV}"
SRC_URI="http://wsgiarea.pocoo.org/colubrid/dist/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack $A
cd "$S"
epatch "${FILESDIR}"/${P}.patch
}
|