2006-02-23 17:13:51 +00:00
|
|
|
# Description: Weave Dial - PPP dialer
|
|
|
|
# URL: http://open.nit.ca/wiki/?page=WvDial
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2009-09-30 10:28:20 +02:00
|
|
|
# Depends on: ppp
|
2006-02-23 17:13:51 +00:00
|
|
|
|
|
|
|
name=wvdial
|
2009-09-30 10:28:20 +02:00
|
|
|
version=1.61
|
2010-08-06 13:01:10 +02:00
|
|
|
release=3
|
2009-09-30 10:28:20 +02:00
|
|
|
source=(http://wvstreams.googlecode.com/files/$name-$version.tar.gz \
|
|
|
|
http://wvstreams.googlecode.com/files/wvstreams-4.6.1.tar.gz \
|
2010-08-06 13:01:10 +02:00
|
|
|
$name-$version.patch wvstreams-4.6.1-openssl.patch \
|
|
|
|
wvstreams-4.6.1-include_stat.patch)
|
2006-02-23 17:13:51 +00:00
|
|
|
|
|
|
|
build() {
|
2009-09-30 10:28:20 +02:00
|
|
|
cd wvstreams-4.6.1
|
2010-06-09 12:35:28 +02:00
|
|
|
patch -p1 -i $SRC/wvstreams-4.6.1-openssl.patch
|
2010-08-06 13:01:10 +02:00
|
|
|
patch -p1 -i $SRC/wvstreams-4.6.1-include_stat.patch
|
2008-12-29 10:18:33 +01:00
|
|
|
./configure --prefix=/usr --without-{pam,tcl,qt,dbus}
|
|
|
|
make -j1
|
2006-02-23 17:13:51 +00:00
|
|
|
|
|
|
|
cd $SRC/$name-$version
|
2008-12-29 10:18:33 +01:00
|
|
|
patch -p1 -i $SRC/$name-$version.patch
|
2009-09-30 10:28:20 +02:00
|
|
|
./configure
|
|
|
|
make -j1 WVS=$SRC/wvstreams-4.6.1
|
2006-02-23 17:13:51 +00:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|