# HG changeset patch # User Xander Ziiryanoff # Date 1446441294 -3600 # Node ID f836b85e4c0d601ba29e2621a16bbb7a44713f36 # Parent b86fd11b1871b05992dc4e8a8501ee21cd8b7a98 fix binutils: cp ncurses from cooking wok diff -r b86fd11b1871 -r f836b85e4c0d binutils/receipt --- a/binutils/receipt Mon Nov 02 05:55:43 2015 +0100 +++ b/binutils/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -71,3 +71,4 @@ chown -R root:root $fs/usr/include/libiberty.h chmod 644 $fs/usr/include/libiberty.h } + diff -r b86fd11b1871 -r f836b85e4c0d gnome-panel/receipt --- a/gnome-panel/receipt Mon Nov 02 05:55:43 2015 +0100 +++ b/gnome-panel/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -47,4 +47,3 @@ $fs/usr/share/icons/hicolor rm $fs/usr/share/gnome-panelrc } - diff -r b86fd11b1871 -r f836b85e4c0d libgweather-dev/receipt --- a/libgweather-dev/receipt Mon Nov 02 05:55:43 2015 +0100 +++ b/libgweather-dev/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -19,4 +19,3 @@ cp -a $install/usr/lib/pkgconfig $fs/usr/lib cp -a $install/usr/include $fs/usr } - diff -r b86fd11b1871 -r f836b85e4c0d libgweather/receipt --- a/libgweather/receipt Mon Nov 02 05:55:43 2015 +0100 +++ b/libgweather/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -11,7 +11,7 @@ WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" DEPENDS="GConf gtk+ libsoup" -BUILD_DEPENDS="GConf-dev gtk+-dev libsoup-dev glib-dev" +BUILD_DEPENDS="GConf-dev gtk+-dev libsoup-dev glib-dev sqlite-dev" # Rules to configure and make the package. compile_rules() diff -r b86fd11b1871 -r f836b85e4c0d mplayer/receipt --- a/mplayer/receipt Mon Nov 02 05:55:43 2015 +0100 +++ b/mplayer/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -60,4 +60,4 @@ cp $src/etc/example.conf $fs/etc/mplayer # Config to use Xv by default. cp $stuff/mplayer.conf $fs/etc/mplayer -} \ No newline at end of file +} diff -r b86fd11b1871 -r f836b85e4c0d ncurses-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ncurses-dev/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -0,0 +1,24 @@ +# SliTaz package receipt. + +PACKAGE="ncurses-dev" +VERSION="5.9" +CATEGORY="development" +SHORT_DESC="Devel files for the ncurses library." +MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" +WANTED="ncurses" +WEB_SITE="http://invisible-island.net/ncurses/" +HOST_ARCH="i486 arm" + +DEPENDS="ncursesw-dev ncurses libtinfo" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/lib $fs/usr/bin + cp -a $install/lib/*.a $fs/lib + # Use include file from ncursesw-dev + #cp -a $install/usr/include $fs/usr + cp $install/usr/bin/ncurses5-config $fs/usr/bin + chmod 755 $fs/usr/bin/* +} diff -r b86fd11b1871 -r f836b85e4c0d ncurses/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ncurses/receipt Mon Nov 02 06:14:54 2015 +0100 @@ -0,0 +1,52 @@ +# SliTaz package receipt. + +PACKAGE="ncurses" +VERSION="5.9" +CATEGORY="base-system" +SHORT_DESC="Library of functions to manage display on terminals." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +LICENSE="MIT" +WEB_SITE="http://invisible-island.net/ncurses/" +WGET_URL="ftp://invisible-island.net/ncurses/$TARBALL" +HOST_ARCH="i486 arm" + +DEPENDS="ncurses-common libtinfo libtic" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + # Ncurses need an installed /usr/bin/tic witch is in ncursesw-extra. And + # when cross compiling we can't use the freshly cooked binary. See cook log: + # + #** Building terminfo database, please wait... + #Running /usr/bin/tic to install /home/slitaz/wok/ncurses/install/usr/share/terminfo + # + if [ ! -d "/var/lib/tazpkg/installed/ncursesw-extra" ]; then + echo "Installing: ncursesw-extra" + tazpkg get-install ncursesw-extra 2>/dev/null 1>/dev/null + fi + cd $src + mkdir -p $DESTDIR/usr/lib/terminfo + sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \ + include/Makefile.in + ./configure \ + --libdir=/lib \ + --sysconfdir=/etc \ + --with-shared \ + --without-debug \ + --without-ada \ + --with-build-cc="gcc -D_GNU_SOURCE" \ + --with-termlib \ + --with-ticlib \ + $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/lib + cp -a $install/lib/libncurses.so* $fs/lib +}