blob: 5e476481aeb13d6d0d632edeee2978a06e184282 (
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
33
34
35
36
37
38
39
40
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/qtwvdialer/qtwvdialer-0.4.2.ebuild,v 1.7 2006/03/16 20:20:20 mrness Exp $
inherit kde-functions eutils
DESCRIPTION="QT Frontend for wvdial"
SRC_URI="http://www.mtoussaint.de/${P}.tgz"
HOMEPAGE="http://www.mtoussaint.de/qtwvdialer.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND=">=dev-util/tmake-1.6
sys-apps/which"
RDEPEND="net-dialup/wvdial"
need-qt 3
S="${WORKDIR}/QtWvDialer-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/g++configure.patch"
}
src_compile() {
econf && \
sed -i -e "s:^CXXFLAGS *=:CXXFLAGS = ${CFLAGS}:" src/Makefile && \
emake || die "compile failed"
}
src_install () {
dobin bin/qtwvdialer
dodoc AUTHORS CHANGELOG README
}
|