blob: ddf93aea5a2b0ed385b457e0f870c0ebdd887240 (
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
32
33
34
35
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
PYTHON_COMPAT="python2_6 python2_7"
inherit git-2 python-distutils-ng
DESCRIPTION="A static website and blog generator"
HOMEPAGE="http://nikola.ralsina.com.ar/"
#SRC_URI="http://nikola-generator.googlecode.com/files/${P}.zip"
EGIT_REPO_URI="git://github.com/ralsina/nikola.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="dev-python/docutils
dev-python/doit
dev-python/imaging
>=dev-python/mako-0.6
dev-python/pygments
dev-python/unidecode"
src_install() {
python-distutils-ng_src_install
# hackish way to remove docs that ended up in the wrong place
rm "${D}"/usr/*.txt
dodoc README.md docs/*
}
|