equal
deleted
inserted
replaced
1 # Copyright 1999-2007 Gentoo Foundation |
1 # Copyright 1999-2015 Gentoo Foundation |
2 # Distributed under the terms of the GNU General Public License v2 |
2 # Distributed under the terms of the GNU General Public License v2 |
3 # $Header: $ |
3 # $Header: $ |
4 |
4 |
5 EAPI=3 |
5 EAPI=5 |
6 |
6 |
7 inherit distutils python |
7 PYTHON_COMPAT=( python2_7 ) |
|
8 |
|
9 inherit distutils-r1 |
8 |
10 |
9 DESCRIPTION="A distant Gentoo synchronizer helper" |
11 DESCRIPTION="A distant Gentoo synchronizer helper" |
10 HOMEPAGE="http://tuna.lyua.org/syndgen/" |
12 HOMEPAGE="http://tuna.lyua.org/syndgen/" |
11 # SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2" |
13 SRC_URI="httpS://tinyrss.elyzion.net/files/soft/${P}.tar.bz2" |
12 SRC_URI="http://openid.elyzion.net/~darisk/files/soft/${P}.tar.bz2" |
|
13 |
14 |
14 LICENSE="GPL-3" |
15 LICENSE="GPL-3" |
15 SLOT="0" |
16 SLOT="0" |
16 KEYWORDS="~x86 ~amd64" |
17 KEYWORDS="~amd64 ~x86" |
17 IUSE="" |
18 IUSE="" |
18 |
|
19 PYTHON_DEPEND="2:6" |
|
20 |
19 |
21 DEPEND="" |
20 DEPEND="" |
22 RDEPEND="net-misc/rsync net-misc/openssh app-portage/gentoolkit" |
21 RDEPEND="net-misc/rsync net-misc/openssh app-portage/gentoolkit" |
23 |
22 |
24 PYTHON_MODNAME="syndgen" |
23 EHG_REPO_URI="https://hg.geekorum.com/syndgen" |
25 |
24 |
26 src_install() |
25 python_install_all() |
27 { |
26 { |
28 cd ${S} |
27 distutils-r1_python_install_all |
29 distutils_src_install |
28 doman doc/syndgen.1 |
30 |
|
31 doman doc/syndgen.1 |
|
32 } |
29 } |