wok-stable rev 11386

Compat: ensure that pam WGET_URL is non-https. Otherwise tazwok can't download it at cook-toolchain time
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 04:42:49 2011 +0100 (2011-12-10)
parents eb512922693f
children 3dac7d2db9ac
files pam/receipt
line diff
     1.1 --- a/pam/receipt	Sat Dec 10 04:36:45 2011 +0100
     1.2 +++ b/pam/receipt	Sat Dec 10 04:42:49 2011 +0100
     1.3 @@ -8,10 +8,14 @@
     1.4  SOURCE="Linux-PAM"
     1.5  TARBALL="$SOURCE-$VERSION.tar.bz2"
     1.6  WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/"
     1.7 -WGET_URL="https://fedorahosted.org/releases/l/i/linux-pam/$TARBALL"
     1.8 +# Download sources from a non-https mirror so that tazwok can
     1.9 +# cook the toolchain (pam is a build-depend of busybox).
    1.10 +# It's because at this moment tazwok doesn't have access to https
    1.11 +# compatible wget.
    1.12 +WGET_URL="http://gentoo.osuosl.org/distfiles/$TARBALL"
    1.13  
    1.14  DEPENDS="glibc-base libdb"
    1.15 -BUILD_DEPENDS="wget flex db db-dev"
    1.16 +BUILD_DEPENDS="flex db db-dev"
    1.17  
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()