# HG changeset patch # User Christopher Rogers # Date 1287786982 0 # Node ID 8346e7a4c25fac1b989a30aa213b84ccea23b1f0 # Parent bdaad11139915a4d00d0f59c2a3aa86955396d6b Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine. diff -r bdaad1113991 -r 8346e7a4c25f elfutils-dev/receipt --- a/elfutils-dev/receipt Fri Oct 22 17:37:00 2010 +0000 +++ b/elfutils-dev/receipt Fri Oct 22 22:36:22 2010 +0000 @@ -1,10 +1,11 @@ # SliTaz package receipt. PACKAGE="elfutils-dev" -VERSION="0.148" +VERSION="0.149" CATEGORY="development" SHORT_DESC="ELF object file access library, development files." MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="elfutils" WEB_SITE="http://fedorahosted.org/elfutils/" WANTED="elfutils" diff -r bdaad1113991 -r 8346e7a4c25f elfutils/receipt --- a/elfutils/receipt Fri Oct 22 17:37:00 2010 +0000 +++ b/elfutils/receipt Fri Oct 22 22:36:22 2010 +0000 @@ -1,17 +1,29 @@ # SliTaz package receipt. PACKAGE="elfutils" -VERSION="0.148" +VERSION="0.149" CATEGORY="development" SHORT_DESC="ELF object file access library." MAINTAINER="pascal.bellard@slitaz.org" +BUILD_DEPENDS="m4 zlib-dev" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://fedorahosted.org/elfutils/" -WGET_URL="http://fedorahosted.org/releases/e/l/$PACKAGE/$TARBALL" +WGET="https://fedorahosted.org/releases/e/l/$PACKAGE/$VERSION/$TARBALL" # Rules to configure and make the package. compile_rules() { + + # Download using real wget since the link is https and we need + # --no-check-certificate that works + if [ -f $SOURCES_REPOSITORY/$TARBALL ]; then + tar xjf $SOURCES_REPOSITORY/$TARBALL + else + [ -L /usr/bin/wget ] && tazpkg get-install wget --forced + wget -O $SOURCES_REPOSITORY/$TARBALL --no-check-certificate "$WGET" + tar xjf $SOURCES_REPOSITORY/$TARBALL + fi + cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man \