blob: e6c3bcf5d32deff6af9e1d633a864117dbc232f7 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/waveselect/waveselect-0.1.2.ebuild,v 1.5 2008/08/24 03:33:17 mr_bones_ Exp $
EAPI=1
inherit kde
DESCRIPTION="Waveselect is wireless lan connection tool for Linux using QT and wireless-tools."
HOMEPAGE="http://www.kde-apps.org/content/show.php?content=19152"
SRC_URI="http://kernelpanic.no/waveselect/files/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
S=${WORKDIR}/${PN}
DEPEND="x11-libs/qt:3"
RDEPEND="${DEPEND}
net-wireless/wireless-tools"
src_compile() {
${QTDIR}/bin/qmake -project || die
${QTDIR}/bin/qmake || die
emake || die
}
src_install() {
dobin waveselect || die
dodoc README
}
|