# HG changeset patch # User Christophe Lincoln # Date 1197983338 -3600 # Node ID 67f32e5e811ae876c2b19522c1f0f8e9c3302c3c # Parent 96142343fd1b7aaaad63a8170efb3d64e59cdb53 Add : bastet, dialog, ninvaders diff -r 96142343fd1b -r 67f32e5e811a bastet/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bastet/receipt Tue Dec 18 14:08:58 2007 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="bastet" +VERSION="0.41" +CATEGORY="base-apps" +SHORT_DESC="Bastard tetris clone." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE-$VERSION.tgz" +WEB_SITE="http://fph.altervista.org/prog/bastet.shtml" +WGET_URL="http://fph.altervista.org/prog/bastet-0.41.tgz" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make + strip bastet +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/games $fs/var/games + cp -a $src/bastet $fs/usr/games + touch $fs/var/games/bastet.scores + chmod 666 $fs/var/games/bastet.scores +} diff -r 96142343fd1b -r 67f32e5e811a dialog/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dialog/receipt Tue Dec 18 14:08:58 2007 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="dialog" +VERSION="1.1-20070930" +CATEGORY="base-apps" +SHORT_DESC="Script-interpreter which provides a set of curses widgets." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE.tar.gz" +WEB_SITE="http://invisible-island.net/dialog/" +WGET_URL="ftp://invisible-island.net/dialog/dialog.tar.gz" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --enable-nls --prefix=/usr \ + --sysconfdir=/etc --mandir=/usr/share/man \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/locale $fs/etc + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + strip -s $fs/usr/bin/* + # Config file. + cp stuff/dialogrc $fs/etc +} diff -r 96142343fd1b -r 67f32e5e811a dialog/stuff/dialogrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dialog/stuff/dialogrc Tue Dec 18 14:08:58 2007 +0100 @@ -0,0 +1,112 @@ +# Run-time configuration file for dialog, on SliTaz GNU/Linux. +# $id: 20/01/2007 17:33:16 root@slitaz $ +# Types of values: +# +# Number - +# String - "string" +# Boolean - +# Attribute - (foreground,background,highlight?) +# + + +# Shadow dialog boxes? This also turns on color. +use_shadow = ON + +# Turn color support ON or OFF +use_colors = ON + +# Screen color +screen_color = (WHITE,BLACK,OFF) + +# Shadow color +shadow_color = (WHITE,BLACK,OFF) + +# Dialog box color +dialog_color = (WHITE,BLACK,OFF) + +# Dialog box title color +title_color = (YELLOW,BLACK,ON) + +# Dialog box border color +border_color = (YELLOW,BLACK,OFF) + +# Active button color +button_active_color = (WHITE,BLUE,ON) + +# Inactive button color +button_inactive_color = (WHITE,BLACK,OFF) + +# Active button key color +button_key_active_color = (WHITE,BLUE,ON) + +# Inactive button key color +button_key_inactive_color = (MAGENTA,BLACK,ON) + +# Active button label color +button_label_active_color = (WHITE,BLUE,ON) + +# Inactive button label color +button_label_inactive_color = (WHITE,BLACK,ON) + +# Input box color +inputbox_color = (BLUE,WHITE,ON) + +# Input box border color +inputbox_border_color = (BLACK,BLACK,ON) + +# Search box color +searchbox_color = (YELLOW,WHITE,ON) + +# Search box title color +searchbox_title_color = (WHITE,WHITE,ON) + +# Search box border color +searchbox_border_color = (RED,WHITE,ON) + +# File position indicator color +position_indicator_color = (YELLOW,BLACK,ON) + +# Menu box color +menubox_color = (GREEN,BLACK,ON) + +# Menu box border color +menubox_border_color = (BLACK,BLACK,ON) + +# Item color +item_color = (GREEN,BLACK,ON) + +# Selected item color +item_selected_color = (MAGENTA,BLACK,ON) + +# Tag color +tag_color = (YELLOW,BLACK,ON) + +# Selected tag color +tag_selected_color = (WHITE,BLUE,ON) + +# Tag key color +tag_key_color = (MAGENTA,BLACK,ON) + +# Selected tag key color +tag_key_selected_color = (GREEN,BLUE,ON) + +# Check box color +check_color = (MAGENTA,BLACK,ON) + +# Selected check box color +check_selected_color = (WHITE,MAGENTA,ON) + +# Up arrow color +uarrow_color = (GREEN,BLUE,ON) + +# Down arrow color +darrow_color = (GREEN,BLUE,ON) + +# Item help-text color +itemhelp_color = (RED,BLACK,ON) + +# Active form text color +form_active_text_color = (WHITE,BLUE,ON) + +# Form text color +form_text_color = (WHITE,MAGENTA,ON) diff -r 96142343fd1b -r 67f32e5e811a ninvaders/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ninvaders/receipt Tue Dec 18 14:08:58 2007 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="ninvaders" +VERSION="0.1.1" +CATEGORY="base-apps" +SHORT_DESC="Space Invaders clone." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://ninvaders.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make + strip nInvaders +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/games + cp -a $src/nInvaders $fs/usr/games +}