# HG changeset patch # User Christophe Lincoln # Date 1197982434 -3600 # Node ID bcd4a80b8cd61e923f25fbf22cd0d95e4de9a2fc # Parent 0a7773e78e1d68089cfa3698bc2565c98f6eec27 Add : links, patch, pciutils, pcmciautils diff -r 0a7773e78e1d -r bcd4a80b8cd6 links/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/links/receipt Tue Dec 18 13:53:54 2007 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="links" +VERSION="2.1pre31" +CATEGORY="extra" +SHORT_DESC="Light and speed web browser using Ncurses or Xlib." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://links.twibright.com/" +WGET_URL="http://links.twibright.com/download/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr \ + --sysconfdir=/etc --mandir=/usr/share/man \ + --without-directfb --without-ssl \ + --enable-graphics $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/pixmaps + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* + cp $src/graphics/links.xpm $fs/usr/share/pixmaps +} diff -r 0a7773e78e1d -r bcd4a80b8cd6 patch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patch/receipt Tue Dec 18 13:53:54 2007 +0100 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="patch" +VERSION="2.5.4" +CATEGORY="base-apps" +SHORT_DESC="Utilitie to patch file with diff file." +MAINTAINER="pankso@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnu.org/software/patch/" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/patch $fs/usr/bin + strip -s $fs/usr/bin/* +} + +# Prevent erasing busybox... +pre_install() +{ + local root + root=$1 + rm -f $root/usr/bin/patch +} diff -r 0a7773e78e1d -r bcd4a80b8cd6 pciutils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pciutils/receipt Tue Dec 18 13:53:54 2007 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="pciutils" +VERSION="2.2.9" +CATEGORY="extra" +SHORT_DESC="Utilities to list PCI device by name (lspci)." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://mj.ucw.cz/pciutils.shtml" +WGET_URL="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./update-pciids.sh + make PREFIX=/usr IDSDIR=/usr/share/misc +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin $fs/usr/share/misc + cp -a $src/pci.ids $fs/usr/share/misc + cp -a $src/lspci $fs/usr/bin + strip -s $fs/usr/bin/* +} + diff -r 0a7773e78e1d -r bcd4a80b8cd6 pcmciautils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmciautils/receipt Tue Dec 18 13:53:54 2007 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="pcmciautils" +VERSION="014" +CATEGORY="extra" +SHORT_DESC="Utils to use with PCMCIA cards" +MAINTAINER="pankso@slitaz.org" +DEPENDS="linux sysfs udev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html" +WGET_URL="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + # We need lex... + cd $src + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/sbin $fs/etc/udev/rules.d $fs/etc/pcmcia + cp -a $src/pccardctl $fs/sbin + cp -a $src/pcmcia-check-broken-cis $fs/sbin + cp -a $src/pcmcia-socket-startup $fs/sbin + strip -s $fs/sbin/* + # Udev rules and config. + cp -a $src/udev/60-pcmcia.rules $fs/etc/udev/rules.d + cp -a $src/config/config.opts $fs/etc/pcmcia +}