blob: 31496d9739cada9fe817d55818c8ca61a5773ccb (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=2
inherit eutils qt4-r2
DESCRIPTION="Qt4 frontend for wvdial"
HOMEPAGE="https://github.com/schuay/qt4wvdialer/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="dev-qt/qtgui:4[qt3support]"
RDEPEND="${DEPEND}
net-dialup/wvdial"
src_configure() {
eqmake4 QtWvDialer.pro
cd src
eqmake4 src.pro
}
src_install() {
dobin bin/qtwvdialer || die
doicon src/qtwvdialer.png
make_desktop_entry ${PN} QtWvDialer
dodoc AUTHORS CHANGELOG README
}
|