blob: caa83641166b2bcc3c64fab48743b7f82d5a22f2 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/keepnote-0.7.8-r1.ebuild,v 1.4 2013/12/03 19:56:55 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 )
PYTHON_REQ_USE="sqlite,xml"
inherit gnome2-utils distutils-r1
DESCRIPTION="A note taking application"
HOMEPAGE="http://keepnote.org/"
SRC_URI="http://keepnote.org/download-test/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
RDEPEND="dev-python/pygobject:2
dev-python/pygtk:2
x11-misc/xdg-utils"
PATCHES=( "${FILESDIR}"/${P}-desktopfile.patch )
DOCS=( CHANGES )
python_test() {
"${PYTHON}" test/testing.py || die
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
einfo
elog "optional dependencies:"
elog " app-text/gtkspell:2 (spell checking)"
einfo
}
pkg_postrm() {
gnome2_icon_cache_update
}
|