blob: 81a06d91e8fa1927d944baaf07085f62c054d095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Maintainer: Sascha Schwabbauer <cybersystem@gentoo.org>
inherit kde-base || die
need-kde 3
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
SLOT="0"
S="${WORKDIR}/${P}"
DESCRIPTION="Napster Client for Linux"
SRC_URI="mirror://sourceforge/knapster/${P}.tar.gz"
HOMEPAGE="http://knapster.sourceforge.net"
src_unpack() {
cd ${WORKDIR}
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/${P}-gcc3.2.diff || die
}
|