blob: eae2f22de1c438ba0202a64c8a6d528b424ecaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.0.11.ebuild,v 1.7 2007/12/30 16:37:11 maekke Exp $
inherit distutils
MY_P=${P/py//}
DESCRIPTION="A python implementation of Textile, Dean Allen's Human Text Generator. Textile simplifies the work of creating (X)HTML."
HOMEPAGE="http://cheeseshop.python.org/pypi/textile"
SRC_URI="http://cheeseshop.python.org/packages/source/t/textile/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="dev-python/setuptools"
S=${WORKDIR}/${MY_P}
|