blob: 3033228cd402ef8d98293a74f91676856c6561d4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/noteedit/noteedit-2.7.4.ebuild,v 1.1 2005/04/24 23:04:13 eradicator Exp $
IUSE=""
inherit kde-functions kde eutils flag-o-matic
DESCRIPTION="Musical score editor (for Linux)."
HOMEPAGE="http://noteedit.berlios.de/"
SRC_URI="http://download.berlios.de/noteedit/noteedit-2.7.4.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~ppc ~x86"
DEPEND="|| ( kde-base/kdemultimedia-meta kde-base/kdemultimedia )
kde-base/arts
media-libs/tse3"
need-kde 3
src_compile() {
kde_src_compile myconf configure || die
append-flags -fpermissive
emake -j1 || die
}
src_install() {
kde_src_install
dodoc FAQ FAQ.de INSTALL INSTALL.de examples
docinto examples
dodoc noteedit/examples/*
}
|