blob: 2b19f82a3bc2605118812b6c5e353ecb63bf4d18 (
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
36
37
38
39
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
PYTHON_DEPEND="2"
inherit python
DESCRIPTION="Gallery generator"
HOMEPAGE="http://furius.ca/curator/"
SRC_URI="mirror://gentoo/curator-3.0_pf078f1686a78.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ~mips ppc x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
dev-python/pillow
virtual/imagemagick-tools"
S="${WORKDIR}/curator-3.0_pf078f1686a78"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_compile() {
:
}
src_install() {
dobin hs/curator-hs
insinto /usr/share/curator/hs
doins -r hs/*
}
|