Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 321 - (show annotations)
Sun Oct 4 15:02:31 2009 UTC (3 years, 8 months ago) by cjg
File size: 802 byte(s)
wvdial: added a patch for compiling with gcc 4.3.*
1 # Description: Weave Dial - PPP dialer
2 # URL: http://open.nit.ca/wiki/?page=WvDial
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4 # Depends on: ppp, openssl
5
6 name=wvdial
7 version=1.60
8 release=3
9 source=(http://alumnit.ca/download/$name-$version.tar.gz \
10 http://wvstreams.googlecode.com/files/wvstreams-4.4.1.tar.gz \
11 $name-$version.patch wvstreams-gcc43.patch)
12
13 build() {
14 cd wvstreams-4.4.1
15
16 patch -p1 -i $SRC/wvstreams-gcc43.patch
17 ./configure --prefix=/usr \
18 --enable-verbose \
19 --without-{pam,tcl,qt}
20 make
21 ln -s ../xplc/include/xplc include/xplc
22
23 cd $SRC/$name-$version
24 patch -p1 < $SRC/$name-$version.patch
25 make CXXOPTS="$CXXFLAGS" WVS=$SRC/wvstreams-4.4.1
26 make DESTDIR=$PKG install
27 }