# HG changeset patch # User Pascal Bellard # Date 1396597176 0 # Node ID a1fff9cb2cd5d699791b44103ce8b8642731ea01 # Parent a002e94842255d709a0547c1370ece2f6d874951 nettle, vte: fix bdeps diff -r a002e9484225 -r a1fff9cb2cd5 nettle/receipt --- a/nettle/receipt Fri Apr 04 00:27:13 2014 +0200 +++ b/nettle/receipt Fri Apr 04 07:39:36 2014 +0000 @@ -11,8 +11,12 @@ WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL" HOST_ARCH="i486 arm" -#DEPENDS="gmp" -#BUILD_DEPENDS="gmp-dev" +# Handle cross compilation. +case "$ARCH" in + i?86) + DEPENDS="gmp" + BUILD_DEPENDS="gmp-dev" ;; +esac # Rules to configure and make the package. compile_rules() diff -r a002e9484225 -r a1fff9cb2cd5 vte/receipt --- a/vte/receipt Fri Apr 04 00:27:13 2014 +0200 +++ b/vte/receipt Fri Apr 04 07:39:36 2014 +0000 @@ -12,13 +12,13 @@ HOST_ARCH="i486 arm" DEPENDS="gtk+ ncurses xorg-libXdamage" -BUILD_DEPENDS="gtk+-dev ncurses-dev " +BUILD_DEPENDS="gtk+-dev ncurses-dev" # Handle cross compilation. case "$ARCH" in i?86) BUILD_DEPENDS="pygtk-dev python-dev gobject-introspection-dev - perl perl-xml-parser" + perl perl-xml-parser ncurses-dev" ARCH_ARGS="--enable-introspection=yes" ;; arm) ARCH_ARGS="--enable-introspection=no" ;;