blob: 133d46f21a70d61b7351ff969b08a0a8a87bc553 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/kaconnect/kaconnect-1.1.1.ebuild,v 1.6 2004/08/03 11:56:54 dholm Exp $
DESCRIPTION="Part of Kalsatools - QT based frontend to aconnect"
HOMEPAGE="http://www.suse.de/~mana/kalsatools.html"
SRC_URI="ftp://ftp.suse.com/pub/people/mana/kalsatools-current/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
RDEPEND="media-sound/alsa-utils
>=x11-libs/qt-3.0.5"
DEPEND="${RDEPEND}
sys-apps/sed"
src_unpack() {
unpack ${A} || die
sed -i 's:/usr/lib/qt3:/usr/qt/3:g' ${S}/make_kaconnect
}
src_compile() {
make -f make_kaconnect || die "Make failed."
}
src_install () {
dobin kaconnect
dodoc INSTALL README THANKS LICENSE kalsatools.changes
}
|