blob: d72736f56f0b4444d38283ce366754d9dfe7e683 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit kde
DESCRIPTION="A QT frontend for ndiswrapper"
HOMEPAGE="http://www.kde-apps.org/content/show.php/KNDISWrapper?content=86885"
SRC_URI="http://www.linux-specialist.com/download/source/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
need-kde 3.5
RDEPEND="net-misc/dhcpcd
sys-apps/net-tools
net-wireless/ndiswrapper
net-wireless/wireless-tools
net-wireless/wpa_supplicant"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README || die "dodoc failed"
}
|