blob: 160e2d1bf902c46a628730d2223970075e811e37 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/krecord/krecord-1.16.ebuild,v 1.3 2006/11/03 21:17:11 opfer Exp $
inherit kde-functions
DESCRIPTION="A KDE sound recorder."
HOMEPAGE="http://bytesex.org/krecord.html"
SRC_URI="http://dl.bytesex.org/releases/krecord/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc x86"
IUSE=""
RDEPEND=">=kde-base/kdelibs-3
x11-libs/libXmu"
DEPEND="${RDEPEND}"
set-kdedir 3
src_compile() {
emake || die
}
src_install() {
make DESTDIR="${D}" \
prefix=/usr \
appsdir="${D}/usr/share/applnk/Multimedia" \
datadir="${D}/usr/share/apps/krecord" \
htmldir="${D}/usr/share/doc/HTML/en/krecord" \
install || die
dodoc Changes README VERSION
}
|