blob: 900263550c358f8bbae0fb154ebdd216c2423d94 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/frescobaldi/frescobaldi-1.2.0.ebuild,v 1.2 2011/06/07 02:57:40 abcd Exp $
EAPI="3"
KDE_LINGUAS="cs de es fr gl it nl pl ru tr"
PYTHON_DEPEND="2"
inherit python kde4-base
DESCRIPTION="a LilyPond sheet music text editor for KDE"
HOMEPAGE="http://www.frescobaldi.org/"
SRC_URI="http://lilykde.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="+handbook"
DEPEND="
dev-python/PyQt4[examples]
$(add_kdebase_dep pykde4)
media-gfx/imagemagick
media-sound/lilypond
"
RDEPEND=${DEPEND}
pkg_setup() {
python_set_active_version 2
kde4-base_pkg_setup
}
src_install() {
kde4-base_src_install
find "${ED}" -type f -name '*.pyc' -exec rm -f {} +
}
|