blob: 4f9cf5bcf41fcc1c0dfca4319ad7d1b5d0483bfc (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/flup/flup-0.5_p2307.ebuild,v 1.3 2007/04/09 22:59:16 mabi Exp $
inherit distutils versionator
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
MY_PV=$(get_version_component_range 3-)
MY_P=${PN}-r${MY_PV/p}
DESCRIPTION="Random assortment of WSGI servers, middleware"
HOMEPAGE="http://www.saddi.com/software/flup/"
SRC_URI="http://www.saddi.com/software/${PN}/dist/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
>=dev-python/setuptools-0.6_rc3"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/use_setuptools/d' \
setup.py || die "sed failed"
}
|