blob: 01d044e14f8eb2dc708f6e552ae15dfaaeeb004a (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit fdo-mime eutils python-single-r1
DESCRIPTION='A hierarchical note taking application'
HOMEPAGE='http://www.giuspen.com/cherrytree'
LICENSE='GPL-3'
SLOT='0'
SRC_URI="https://github.com/giuspen/cherrytree/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS='~amd64'
IUSE='nls'
RDEPEND="${PYTHON_DEPS}
x11-libs/libX11
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/pyenchant[${PYTHON_USEDEP}]
>=dev-python/pygtk-2.16:2[${PYTHON_USEDEP}]
dev-python/pygtksourceview:2[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
"
PLOCALES='cs de es fr hy it ja lt nl pl pt_BR ru sl tr uk zh_CN'
inherit l10n
src_prepare() {
use nls && l10n_find_plocales_changes 'locale' '' '.po'
sed -i '\|update-desktop-database|d' 'setup.py' || die
default
}
src_compile() {
local args=()
use nls || args+=( '--without-gettext' )
"${EPYTHON}" ./setup.py "${args[@]}" build
}
src_install() {
dobin "${PN}"
doicon -s scalable "glade/svg/${PN}.svg"
domenu "linux/${PN}.desktop"
doman "linux/${PN}.1"
insinto "/usr/share/${PN}"
doins -r 'glade/' 'modules/' 'language-specs/'
insinto '/usr/share/mime-info'
doins "linux/${PN}".{mime,keys}
insinto '/usr/share/mime/packages'
doins "linux/${PN}.xml"
if use nls ; then
ins_loc() {
# cannot use domo() as it installs files into a wrong dir
insinto "/usr/share/locale/${1}/LC_MESSAGES"
doins "build/mo/${1}/${PN}.mo"
}
l10n_for_each_locale_do ins_loc
fi
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
|