2017-01-17 21:03:03 +03:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2016-07-08 18:45:04 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
2017-07-27 09:38:43 +03:00
|
|
|
|
2017-12-10 00:23:42 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
|
2017-05-12 10:17:05 +03:00
|
|
|
|
2016-07-08 18:45:04 +03:00
|
|
|
inherit python-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Enhanced df with colors"
|
|
|
|
HOMEPAGE="http://kassiopeia.juls.savba.sk/~garabik/software/pydf/"
|
|
|
|
SRC_URI="http://kassiopeia.juls.savba.sk/~garabik/software/pydf/${PN}_${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="public-domain"
|
|
|
|
SLOT="0"
|
2017-11-30 08:50:42 +03:00
|
|
|
KEYWORDS="amd64 arm ppc ppc64 x86 ~arm64 ~x86-fbsd ~amd64-linux ~x86-linux ~amd64-fbsd"
|
2016-07-08 18:45:04 +03:00
|
|
|
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
2017-07-27 09:38:43 +03:00
|
|
|
|
2016-07-08 18:45:04 +03:00
|
|
|
DEPEND="${PYTHON_DEPS}"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
2017-05-12 10:17:05 +03:00
|
|
|
sed -i -e "s:/etc/pydfrc:${EPREFIX}/etc/pydfrc:" "${PN}" || die
|
2016-07-08 18:45:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2017-05-12 10:17:05 +03:00
|
|
|
python_foreach_impl python_doscript "${PN}"
|
2016-07-08 18:45:04 +03:00
|
|
|
insinto /etc
|
2017-05-12 10:17:05 +03:00
|
|
|
doins "${PN}rc"
|
|
|
|
doman "${PN}.1"
|
|
|
|
einstalldocs
|
2016-07-08 18:45:04 +03:00
|
|
|
}
|