Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Sun Oct 4 14:31:24 2009 UTC (3 years, 7 months ago) by cjg
File size: 734 byte(s)
importing opt
1 # Description: Weave Dial - PPP dialer
2 # URL: http://open.nit.ca/wiki/?page=WvDial
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4 # Depends on: ppp, openssl
5
6 name=wvdial
7 version=1.60
8 release=2
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)
12
13 build() {
14 cd wvstreams-4.4.1
15 ./configure --prefix=/usr \
16 --enable-verbose \
17 --without-{pam,tcl,qt}
18 make
19 ln -s ../xplc/include/xplc include/xplc
20
21 cd $SRC/$name-$version
22 patch -p1 < $SRC/$name-$version.patch
23 make CXXOPTS="$CXXFLAGS" WVS=$SRC/wvstreams-4.4.1
24 make DESTDIR=$PKG install
25 }