blob: 38439a0d7a14dea44f6205dd48fed046d6d3a794 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite?"
EGIT_REPO_URI="https://github.com/linkcheck/linkchecker.git"
inherit bash-completion-r1 distutils-r1 eutils git-r3
DESCRIPTION="Check websites for broken links"
HOMEPAGE="https://github.com/linkcheck/linkchecker"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="gnome sqlite"
RDEPEND="
virtual/python-dnspython[${PYTHON_USEDEP}]
gnome? ( dev-python/pygtk:2[${PYTHON_USEDEP}] )
"
DEPEND=""
RESTRICT="test"
python_prepare_all() {
local PATCHES=( "${FILESDIR}"/${PN}-9.3-bash-completion.patch )
distutils-r1_python_prepare_all
}
python_install_all() {
DOCS=(
doc/upgrading.txt
doc/python3.txt
doc/changelog.txt
doc/development.mdwn
)
distutils-r1_python_install_all
rm "${ED}"/usr/share/applications/linkchecker.desktop || die
newbashcomp config/linkchecker-completion ${PN}
}
pkg_postinst() {
optfeature "bash-completion support" dev-python/argcomplete[${PYTHON_USEDEP}]
optfeature "Virus scanning" app-antivirus/clamav
optfeature "Geo IP support" dev-python/geoip-python[${PYTHON_USEDEP}]
}
|