blob: 165f46e9d2de07cf2413550cfc54c77a18ba89e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cssutils/cssutils-0.9.6_alpha1-r1.ebuild,v 1.1 2009/03/21 23:14:41 neurogeek Exp $
inherit distutils
MY_P=${P/_alpha/a}
DESCRIPTION="A Python package to parse and build CSS Cascading Style Sheets."
HOMEPAGE="http://code.google.com/p/cssutils"
SRC_URI="http://cssutils.googlecode.com/files/${MY_P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND="virtual/python"
DEPEND=">=dev-python/setuptools-0.6_rc7-r1
${RDEPEND}"
S="${WORKDIR}/${MY_P}"
|