| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/www-apps/nikola/nikola-3.ebuild,v 1.1 2012/06/27 08:07:33 yngwin Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
PYTHON_COMPAT="python2_6 python2_7"
|
| 7 |
|
| 8 |
inherit python-distutils-ng
|
| 9 |
|
| 10 |
DESCRIPTION="A static website and blog generator"
|
| 11 |
HOMEPAGE="http://nikola.ralsina.com.ar/"
|
| 12 |
SRC_URI="http://nikola-generator.googlecode.com/files/${P}.zip"
|
| 13 |
|
| 14 |
LICENSE="GPL-3"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~amd64"
|
| 17 |
IUSE=""
|
| 18 |
|
| 19 |
DEPEND=""
|
| 20 |
RDEPEND="dev-python/docutils
|
| 21 |
dev-python/doit
|
| 22 |
dev-python/imaging
|
| 23 |
>=dev-python/mako-0.6
|
| 24 |
dev-python/pygments"
|
| 25 |
|
| 26 |
src_install() {
|
| 27 |
python-distutils-ng_src_install
|
| 28 |
|
| 29 |
# hackish way to remove docs that ended up in the wrong place
|
| 30 |
rm "${D}"/usr/*.txt
|
| 31 |
|
| 32 |
dodoc README.md docs/*
|
| 33 |
}
|