blob: 8a55b0a7b9e994abfcb9743b8e0510899eb72ed5 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/qtwvdialer/qtwvdialer-0.4.4_p20091228.ebuild,v 1.3 2010/01/07 13:21:07 ssuominen Exp $
EAPI=2
inherit eutils qt4-r2
DESCRIPTION="Qt4 frontend for wvdial"
HOMEPAGE="http://github.com/schuay/qt4wvdialer/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="x11-libs/qt-gui: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} ${PN}
dodoc AUTHORS CHANGELOG README
}
|