# HG changeset patch # User necrophcodr # Date 1414953728 -3600 # Node ID 48aca7ed35574cfd580b165fcc2656bdbfd5fe9a # Parent a692dd5a5c64e55fd277258ca1430ba26f3378aa# Parent 965b0a2c558af79c0d8d4c4d7d188e80ea51513e merge changes from remote (oops) diff -r a692dd5a5c64 -r 48aca7ed3557 buildroot/receipt --- a/buildroot/receipt Sun Nov 02 19:40:25 2014 +0100 +++ b/buildroot/receipt Sun Nov 02 19:42:08 2014 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="buildroot" -VERSION="2011.11" +VERSION="2014.08" CATEGORY="development" SHORT_DESC="Tools to build toolchains and root filesystems with uClibc." MAINTAINER="pascal.bellard@slitaz.org" @@ -9,9 +9,9 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.buildroot.org/" WGET_URL="${WEB_SITE}downloads/$TARBALL" -SUGGESTED="subversion bazaar git elfkickers ccache" +SUGGESTED="subversion bazaar git elfkickers ccache bison flex gettext texinfo" -DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra" +DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra tar" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r a692dd5a5c64 -r 48aca7ed3557 genext2fs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/genext2fs/receipt Sun Nov 02 19:42:08 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="genext2fs" +VERSION="1.4.1" +CATEGORY="base-system" +SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://genext2fs.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} + diff -r a692dd5a5c64 -r 48aca7ed3557 rsh/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rsh/receipt Sun Nov 02 19:42:08 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="rsh" +SOURCE="rsh-redone" +VERSION="85" +CATEGORY="network" +SHORT_DESC="Reimplementation of rsh and rlogin" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" +TARBALL="${SOURCE}_$VERSION.orig.tar.gz" +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" +WGET_URL="http://ftp.de.debian.org/debian/pool/main/${SOURCE:0:1}/$SOURCE/$TARBALL" + +BUILD_DEPENDS="pam-dev" + +# Rules to configure and make the package. +compile_rules() +{ + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} diff -r a692dd5a5c64 -r 48aca7ed3557 rshd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rshd/receipt Sun Nov 02 19:42:08 2014 +0100 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="rshd" +VERSION="85" +CATEGORY="network" +SHORT_DESC="Reimplementation of rshd and rlogind" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" +WEB_SITE="https://packages.debian.org/source/sid/rsh-redone" +WANTED="rsh" + +DEPENDS="pam" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/etc $fs +}