diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-14 15:23:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-14 15:25:21 +0000 |
commit | 9f1c48dd1df423c4c7a80c5d3a47b3ecc4322010 (patch) | |
tree | 87d66adec56c2c37cf8e3b8b4f6ddc75fc96f6dc | |
parent | fc2fe2164ddf06656cebd6bec7781c216bd53ef7 (diff) | |
download | aports-9f1c48dd1df423c4c7a80c5d3a47b3ecc4322010.tar.bz2 aports-9f1c48dd1df423c4c7a80c5d3a47b3ecc4322010.tar.xz |
testing/rp-pppoe: needs ppp-dev package when building
seems like configure scripts detects path to pppd and hardcode that
compile time. If pppd is not there it will use 'pppd' it which will
fail to execve.
-rw-r--r-- | testing/rp-pppoe/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/rp-pppoe/APKBUILD b/testing/rp-pppoe/APKBUILD index 91f087f8d..0694c2168 100644 --- a/testing/rp-pppoe/APKBUILD +++ b/testing/rp-pppoe/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Francesco Colista <francesco.colista@gmail.com> pkgname=rp-pppoe pkgver=3.10 -pkgrel=3 +pkgrel=4 pkgdesc="Roaring Penguin\'s Point-to-Point Protocol over Ethernet client" url="http://www.roaringpenguin.com/pppoe/" arch="all" license="LGPL" depends= -makedepends= +makedepends="ppp-dev" install= subpackages="$pkgname-doc" source="http://www.roaringpenguin.com/files/download/rp-pppoe-$pkgver.tar.gz |