# HG changeset patch # User Pascal Bellard # Date 1385830978 0 # Node ID 3765f181a6d574d256a0d8be75cbb82127642180 # Parent bb009a6ef03628d576e97a4bc7542e411aa56f7b Add some licenses diff -r bb009a6ef036 -r 3765f181a6d5 macchanger/receipt --- a/macchanger/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/macchanger/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="A small utility to change your MAC address" MAINTAINER="gokhlayeh@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.gnu.org" WGET_URL="ftp://ftp.gnu.org/gnu/macchanger/$TARBALL" @@ -18,14 +19,14 @@ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/macchanger $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/macchanger $fs/usr/share } diff -r bb009a6ef036 -r 3765f181a6d5 magicpoint/receipt --- a/magicpoint/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/magicpoint/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,11 @@ CATEGORY="x-window" SHORT_DESC="An X11-based presentation tool." MAINTAINER="rcx@zoominternet.net" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://member.wide.ad.jp/wg/mgp/" +WGET_URL="ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/$TARBALL" + DEPENDS="glibc-base expat zlib util-linux-uuid fontconfig freetype1 freetype \ giflib jpeg libpng tiff imlib xorg-libICE xorg-libSM xorg-libX11 \ xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXft xorg-libXmu \ @@ -13,9 +18,6 @@ freetype1 freetype1-dev freetype-dev giflib-dev imlib-dev xorg-imake \ xorg-cf-files xorg-libX11-dev xorg-libXft-dev xorg-libXmu-dev \ xorg-libXrender-dev xorg-xproto xorg-xextproto" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://member.wide.ad.jp/wg/mgp/" -WGET_URL="ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/$TARBALL" # Rules to configure and make the package. compile_rules() @@ -29,14 +31,14 @@ xmkmf && make -j1 Makefiles && make -j1 && - make -j1 DESTDIR=$src/_pkg install + make -j1 DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/X11/mgp - cp -f $_pkg/usr/lib/X11/mgp/default.mgp $fs/usr/lib/X11/mgp + cp -f $install/usr/lib/X11/mgp/default.mgp $fs/usr/lib/X11/mgp - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 magicrescue/receipt --- a/magicrescue/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/magicrescue/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,27 +5,29 @@ CATEGORY="utilities" SHORT_DESC="Find and recover deleted files on block devices." MAINTAINER="slaxemulator@gmail.com" -DEPENDS="perl" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://freshmeat.net/projects/magicrescue/" WGET_URL="http://www.itu.dk/people/jobr/$PACKAGE/release/$TARBALL" +DEPENDS="perl" + # Rules to configure and make the package. compile_rules() { cd $src - install -d $PWD/_pkg/usr + install -d $DESTDIR/usr ./configure \ --prefix=/usr \ $CONFIGURE_ARGS && - make PREFIX=$PWD/_pkg/usr install + make PREFIX=$DESTDIR/usr install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/magicrescue $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/magicrescue $fs/usr/share } diff -r bb009a6ef036 -r 3765f181a6d5 mailx/receipt --- a/mailx/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mailx/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="Command-line Mail User Agent derived from Berkeley Mail." MAINTAINER="pankso@slitaz.org" +LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://heirloom.sourceforge.net/mailx.html" WGET_URL="$SF_MIRROR/heirloom/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 makeself/receipt --- a/makeself/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/makeself/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Utility to create self-extraction packages." MAINTAINER="slaxemulator@gmail.com" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.run" WEB_SITE="http://megastep.org/makeself" WGET_URL="http://megastep.org/makeself/$PACKAGE-$VERSION.run" @@ -13,11 +14,11 @@ compile_rules() { cd $src - mkdir -p $PWD/_pkg/usr/bin - mkdir -p $PWD/_pkg/usr/share/makeself - cp -a makeself.sh $PWD/_pkg/usr/bin/makeself - cp -a makeself-header.sh $PWD/_pkg/usr/share/makeself - sed -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' -i $PWD/_pkg/usr/bin/makeself + mkdir -p $DESTDIR/usr/bin + mkdir -p $DESTDIR/usr/share/makeself + cp -a makeself.sh $DESTDIR/usr/bin/makeself + cp -a makeself-header.sh $DESTDIR/usr/share/makeself + sed -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' -i $DESTDIR/usr/bin/makeself } @@ -25,7 +26,7 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 mana/receipt --- a/mana/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mana/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,9 +5,11 @@ CATEGORY="games" SHORT_DESC="A fully free and open source MMORPG game with the looks of old-fashioned 2D RPG" MAINTAINER="devl547@gmail.com" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://themanaworld.org/" WGET_URL="http://manasource.org/files/$TARBALL" + BUILD_DEPENDS="physfs-dev libxml2-dev libsdl-mixer-dev libsdl-image-dev \ libsdl-net-dev libsdl-ttf-dev libsdl-ttf curl-dev zlib-dev libpng-dev guichan-dev \ libsdl-gfx-dev enet" @@ -20,15 +22,15 @@ cd $src ./configure --prefix=/usr --without-opengl $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/applications $fs/usr/share/ - cp -a $_pkg/usr/share/mana $fs/usr/share/ - cp -a $_pkg/usr/share/pixmaps $fs/usr/share/ + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/applications $fs/usr/share/ + cp -a $install/usr/share/mana $fs/usr/share/ + cp -a $install/usr/share/pixmaps $fs/usr/share/ } diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-common/receipt --- a/matchbox-common/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-common/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Common files for matchbox window manager." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-desktop/receipt --- a/matchbox-desktop/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-desktop/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox desktop." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-panel-manager/receipt --- a/matchbox-panel-manager/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-panel-manager/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox Panel Manager." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.1/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-panel/receipt --- a/matchbox-panel/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-panel/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox panel." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.9/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-themes-extra/receipt --- a/matchbox-themes-extra/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-themes-extra/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox extra themes." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.3/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 matchbox-window-manager/receipt --- a/matchbox-window-manager/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/matchbox-window-manager/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox Window Manager." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/1.2/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 mb-applet-volume/receipt --- a/mb-applet-volume/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mb-applet-volume/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Matchbox volume applet." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://matchbox-project.org/" WGET_URL="${WEB_SITE}sources/$PACKAGE/0.2/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 mcrypt/receipt --- a/mcrypt/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mcrypt/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="security" SHORT_DESC="Encryption" MAINTAINER="erjo@slitaz.org" +LICENSE="GPL3" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://mcrypt.sourceforge.net/" WGET_URL="http://downloads.sourceforge.net/project/mcrypt/MCrypt/$VERSION/$TARBALL" @@ -26,6 +27,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr } - diff -r bb009a6ef036 -r 3765f181a6d5 mdadm/receipt --- a/mdadm/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mdadm/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="system-tools" SHORT_DESC="Software RAID tools" MAINTAINER="b1+slitaz@nagel.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.kernel.org/pub/linux/utils/raid/mdadm/ANNOUNCE" WGET_URL="ftp://www.kernel.org/pub/linux/utils/raid/mdadm/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 mdk3/receipt --- a/mdk3/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mdk3/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="security" SHORT_DESC="WLAN penetration tool" MAINTAINER="slaxemulator@gmail.com" -DEPENDS="" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://homepages.tu-darmstadt.de/~p_larbig/wlan/" WGET_URL="http://homepages.tu-darmstadt.de/~p_larbig/wlan/$TARBALL" +DEPENDS="" + # Rules to configure and make the package. compile_rules() { @@ -17,13 +19,12 @@ sed -i -e "s:/usr/local:/usr:" Makefile make -C osdep make - make DESTDIR="$PWD/_pkg" install + make DESTDIR="$DESTDIR" install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/sbin $fs/usr + cp -a $install/usr/sbin $fs/usr } - diff -r bb009a6ef036 -r 3765f181a6d5 memcached-dev/receipt --- a/memcached-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/memcached-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Memecached dev files." MAINTAINER="erjo@slitaz.org" +LICENSE="BSD" WEB_SITE="http://memcached.org" WANTED="memcached" diff -r bb009a6ef036 -r 3765f181a6d5 memcached/receipt --- a/memcached/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/memcached/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="system-tools" SHORT_DESC="High-performance, distributed memory object caching system, " MAINTAINER="erjo@slitaz.org" +LICENSE="BSD" WEB_SITE="http://memcached.org" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="http://memcached.googlecode.com/files/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 mencoder/receipt --- a/mencoder/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mencoder/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="multimedia" SHORT_DESC="MPlayer video and movie encoder." MAINTAINER="pankso@slitaz.org" +LICENSE="GPL2" WANTED="mplayer" WEB_SITE="http://www.mplayerhq.hu/design7/news.html" diff -r bb009a6ef036 -r 3765f181a6d5 menu-railroad/receipt --- a/menu-railroad/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/menu-railroad/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Freedesktop menu for railroading applications." MAINTAINER="rcx@zoominternet.net" +LICENSE="GPL3" WEB_SITE="http://icons.mysitemyway.com/free-clipart-icons/1/locomotive-train-icon-id/39275/style-id/294/grunge-brushed-metal-pewter-icons/transport-travel/" # Rules to gen a SliTaz package suitable for Tazpkg. diff -r bb009a6ef036 -r 3765f181a6d5 metasploit/receipt --- a/metasploit/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/metasploit/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,12 +5,14 @@ CATEGORY="network" SHORT_DESC="The Metasploit Framework is an advanced open-source platform for developing, testing, and using exploit code" MAINTAINER="slaxemulator@gmail.com" -DEPENDS="ruby libpcap" +LICENSE="BSD" SOURCE="framework" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.metasploit.com/" WGET_URL="http://updates.metasploit.com/data/releases/$TARBALL" +DEPENDS="ruby libpcap" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 mhash-dev/receipt --- a/mhash-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mhash-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="uniform interface to a large number of hash algorithms devel files." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://mhash.sourceforge.net/" WANTED="mhash" @@ -12,7 +13,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/lib/libmhash*a $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/libmhash*a $fs/usr/lib } diff -r bb009a6ef036 -r 3765f181a6d5 mhash/receipt --- a/mhash/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/mhash/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="uniform interface to a large number of hash algorithms." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://mhash.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" @@ -16,13 +17,13 @@ ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS make - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/libmhash.so* $fs/usr/lib + cp -a $install/usr/lib/libmhash.so* $fs/usr/lib } diff -r bb009a6ef036 -r 3765f181a6d5 miau/receipt --- a/miau/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/miau/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="Another IRC-bouncer/proxy." MAINTAINER="christophe.paris@free.fr" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://miau.sourceforge.net/" WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL" @@ -20,13 +21,13 @@ --docdir=/usr/share/doc \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 nagios-dev/receipt --- a/nagios-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagios-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Nagios development files" MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://www.nagios.org/" WANTED="nagios" diff -r bb009a6ef036 -r 3765f181a6d5 nagios-nrpe/receipt --- a/nagios-nrpe/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagios-nrpe/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="network" SHORT_DESC="Service and network monitoring program, remote monitoring." MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" SOURCE="nrpe" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.nagios.org/" WGET_URL="$SF_MIRROR/nagios/$TARBALL" + BUILD_DEPENDS="libcrypto-dev openssl-dev openssl libwrap-dev" DEPENDS="nagios-plugins libssl libcrypto" diff -r bb009a6ef036 -r 3765f181a6d5 nagios-nsca/receipt --- a/nagios-nsca/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagios-nsca/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="network" SHORT_DESC="Service and network monitoring program, remote monitoring." MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" SOURCE="nsca" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.nagios.org/" #WGET_URL="$SF_MIRROR/nagios/$TARBALL" WGET_URL="http://prdownloads.sourceforge.net/sourceforge/nagios/$TARBALL" + BUILD_DEPENDS="libmcrypt-dev perl libwrap-dev" DEPENDS="libmcrypt" diff -r bb009a6ef036 -r 3765f181a6d5 nagios/receipt --- a/nagios/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagios/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="Host and network monitoring" MAINTAINER="erjo@slitaz.org" -DEPENDS="apache nagios-plugins libpng libjpeg libltdl" -BUILD_DEPENDS="libgd-dev libpng-dev jpeg-dev libtool" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.nagios.org/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" SUGGESTED="nagios-nrpe" +DEPENDS="apache nagios-plugins libpng libjpeg libltdl" +BUILD_DEPENDS="libgd-dev libpng-dev jpeg-dev libtool" + # Rules to configure and make the package. compile_rules() { @@ -42,8 +44,8 @@ sed -i s!HTMLDIR=.*!HTMLDIR=/usr/share/nagios! html/Makefile - #~ make all && make DESTDIR=$PWD/_pkg fullinstall \ - #~ && make DESTDIR=$PWD/_pkg install-config + #~ make all && make DESTDIR=$DESTDIR fullinstall \ + #~ && make DESTDIR=$DESTDIR install-config make all && make install \ && make install-config \ && make install-commandmode \ diff -r bb009a6ef036 -r 3765f181a6d5 nagvis-doc/receipt --- a/nagvis-doc/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagvis-doc/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,9 +5,11 @@ CATEGORY="network" SHORT_DESC="Nagvis documentation and licence" MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://www.nagvis.org/" +WANTED="nagvis" + DEPENDS="nagvis" -WANTED="nagvis" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r bb009a6ef036 -r 3765f181a6d5 nagvis-flex/receipt --- a/nagvis-flex/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagvis-flex/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,9 +5,11 @@ CATEGORY="network" SHORT_DESC="Nagvis Flex" MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://www.nagvis.org/" +WANTED="nagvis" + DEPENDS="nagvis" -WANTED="nagvis" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r bb009a6ef036 -r 3765f181a6d5 nagvis/receipt --- a/nagvis/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nagvis/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="network" SHORT_DESC="Visualization addon for nagios." MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.nagvis.org/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="graphviz" + DEPENDS="nagios php-mysql php-gd ndoutils mk-livestatus" -SUGGESTED="graphviz" # Rules to configure and make the package. compile_rules() diff -r bb009a6ef036 -r 3765f181a6d5 nail/receipt --- a/nail/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nail/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,8 +5,7 @@ CATEGORY="network" SHORT_DESC="Text mode mail user agent." MAINTAINER="sygne@ombres.eu" -DEPENDS="openssl" -BUILD_DEPENDS="openssl-dev" +LICENSE="BSD" SOURCE="mailx" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://heirloom.sourceforge.net/mailx.html" @@ -14,6 +13,9 @@ CONFIG_FILES="/etc/nailrc" TAGS="email imap pop3" +DEPENDS="openssl" +BUILD_DEPENDS="openssl-dev" + # Rules to configure and make the package. compile_rules() { @@ -27,17 +29,17 @@ sed -i -e "s/-lgssapi_krb5//g" LIBS make install UCBINSTALL=/usr/bin/install \ - DESTDIR=$PWD/_pkg PREFIX=/usr + DESTDIR=$DESTDIR PREFIX=/usr } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -r $_pkg/usr/bin $fs/usr + cp -r $install/usr/bin $fs/usr mv $fs/usr/bin/mailx $fs/usr/bin/nail - cp -r $_pkg/etc $fs + cp -r $install/etc $fs } # Post install commands for Tazpkg. diff -r bb009a6ef036 -r 3765f181a6d5 nareto-doc/receipt --- a/nareto-doc/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nareto-doc/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="Nareto documentation." MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://www.nareto.org/" WANTED="nareto" DEPENDS="nareto" diff -r bb009a6ef036 -r 3765f181a6d5 nareto/receipt --- a/nareto/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nareto/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="Nagios reporting tool." MAINTAINER="erjo@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.nareto.org/" WGET_URL="${WEB_SITE}srcs/$TARBALL" -DEPENDS="nagios apache php php-cli mysql perl-dbd-mysql perl-dbi" CONFIG_FILES="/etc/nagios" BUGS="s/oreon/centreon/" +DEPENDS="nagios apache php php-cli mysql perl-dbd-mysql perl-dbi" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 nasm/receipt --- a/nasm/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nasm/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="The netwide assembler." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.nasm.us/" WGET_URL="${WEB_SITE}pub/$PACKAGE/releasebuilds/$VERSION/$TARBALL" @@ -23,6 +24,6 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 nat-tester/receipt --- a/nat-tester/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nat-tester/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="Network Address Translator tester." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" SOURCE="linuxTester" TARBALL="linuxNatTester.tar.gz" WEB_SITE="http://nattest.net.in.tum.de/" WGET_URL="${WEB_SITE}$TARBALL" +TAGS="networking" + BUILD_DEPENDS="pkg-config libsctp-dev libsctp zlib-dev libxml2-dev" DEPENDS="zlib gcc-lib-base libxml2" -TAGS="networking" # Rules to configure and make the package. compile_rules() @@ -21,14 +23,14 @@ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/nat-tester - cp -a $_pkg/usr/bin/NatTester $fs/usr/share/nat-tester + cp -a $install/usr/bin/NatTester $fs/usr/share/nat-tester cp -a $src/src/framework.cfg $fs/usr/share/nat-tester } diff -r bb009a6ef036 -r 3765f181a6d5 nbs-dev/receipt --- a/nbs-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nbs-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Network Broadcast Sound development files." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://svn.digium.com/view/nbs" WANTED="nbs" @@ -12,6 +13,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 nbs/receipt --- a/nbs/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nbs/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,10 +5,11 @@ CATEGORY="network" SHORT_DESC="Network Broadcast Sound." MAINTAINER="pascal.bellard@slitaz.org" -BUILD_DEPENDS="subversion" +LICENSE="GPL2" WEB_SITE="http://svn.digium.com/view/nbs" WGET_URL="subversion|http://svn.digium.com/svn/nbs/trunk" +BUILD_DEPENDS="subversion" # Rules to configure and make the package. compile_rules() @@ -16,16 +17,16 @@ cd $src patch -p0 < $stuff/Makefile.u && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/sbin $fs/usr - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib ln -s libnbs.so.1.0 $fs/usr/lib/libnbs.so.1 } diff -r bb009a6ef036 -r 3765f181a6d5 nconf/receipt --- a/nconf/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nconf/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="system-tools" SHORT_DESC="Enterprise Nagios configurator" MAINTAINER="erjo@slitaz.org" -DEPENDS="mysql php-apache nagios perl perl-dbi perl-dbd-mysql" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tgz" WEB_SITE="http://www.nconf.org/dokuwiki/doku.php" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="mysql php-apache nagios perl perl-dbi perl-dbd-mysql" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 ndisc6/receipt --- a/ndisc6/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ndisc6/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="IPv6 diagnostic tools." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://rdnssd.linkfanel.net/" WGET_URL="http://www.remlab.net/files/$PACKAGE/$TARBALL" @@ -18,15 +19,15 @@ ./configure --prefix=/usr --infodir=/usr/share/info \ --localstatedir=/var --sysconfdir=/etc \ --mandir=/usr/share/man $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/sbin $fs/usr - cp -a $_pkg/var $fs - cp -a $_pkg/etc $fs + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/var $fs + cp -a $install/etc $fs } diff -r bb009a6ef036 -r 3765f181a6d5 ndiswrapper-driver/receipt --- a/ndiswrapper-driver/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ndiswrapper-driver/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,14 +5,16 @@ CATEGORY="system-tools" SHORT_DESC="Add Windows network drivers support to Linux kernel." MAINTAINER="erjo@slitaz.org" -DEPENDS="linux" -BUILD_DEPENDS="linux-module-headers xz" +LICENSE="GPL" SOURCE="ndiswrapper" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://ndiswrapper.sourceforge.net/joomla/" WGET_URL="$SF_MIRROR/$SOURCE/stable/$VERSION/$TARBALL" TAGS="windows wireless network" +DEPENDS="linux" +BUILD_DEPENDS="linux-module-headers xz" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 ndiswrapper-utils/receipt --- a/ndiswrapper-utils/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ndiswrapper-utils/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="system-tools" SHORT_DESC="ndiswrapper utilities." MAINTAINER="erjo@slitaz.org" -DEPENDS="ndiswrapper-driver perl" +LICENSE="GPL" SOURCE="ndiswrapper" WANTED="ndiswrapper-driver" WEB_SITE="http://ndiswrapper.sourceforge.net/joomla/" +DEPENDS="ndiswrapper-driver perl" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 ndiswrapper/receipt --- a/ndiswrapper/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ndiswrapper/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="meta" SHORT_DESC="Add Windows network drivers support to Linux kernel." MAINTAINER="erjo@slitaz.org" -DEPENDS="ndiswrapper-driver ndiswrapper-utils wireless_tools" +LICENSE="GPL" WEB_SITE="http://ndiswrapper.sourceforge.net/joomla/" TAGS="windows wireless network" +DEPENDS="ndiswrapper-driver ndiswrapper-utils wireless_tools" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 neon-dev/receipt --- a/neon-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/neon-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Neon HTTP and WebDAV client library" MAINTAINER="lehswe@gmail.com" +LICENSE="GPL2" WEB_SITE="http://www.webdav.org/neon" WANTED="neon" @@ -12,8 +13,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*a $fs/usr/lib - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } - diff -r bb009a6ef036 -r 3765f181a6d5 neon/receipt --- a/neon/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/neon/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="development" SHORT_DESC="Neon HTTP and WebDAV client library" MAINTAINER="lehswe@gmail.com" -DEPENDS="libssl zlib libkrb5 libcomerr3 expat" -BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev openssl-dev" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.webdav.org/neon" WGET_URL="http://www.webdav.org/neon/$TARBALL" TAGS="http webdav" +DEPENDS="libssl zlib libkrb5 libcomerr3 expat" +BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev openssl-dev" + # Rules to configure and make the package. compile_rules() { @@ -23,15 +25,15 @@ --enable-shared --disable-static \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 net-snmp-dev/receipt --- a/net-snmp-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/net-snmp-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,16 +5,17 @@ CATEGORY="development" SHORT_DESC="dev files for net-snmp" MAINTAINER="allan316@gmail.com" -DEPENDS="net-snmp" +LICENSE="BSD" WEB_SITE="http://net-snmp.sourceforge.net" WANTED="net-snmp" +DEPENDS="net-snmp" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.a $fs/usr/lib - cp -a $_pkg/usr/lib/*.la $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib/*.a $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/include $fs/usr } - diff -r bb009a6ef036 -r 3765f181a6d5 net-snmp/receipt --- a/net-snmp/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/net-snmp/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="snmp tools" MAINTAINER="allan316@gmail.com" -DEPENDS="openssl" -BUILD_DEPENDS="perl openssl-dev file" +LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://net-snmp.sourceforge.net" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" TAGS="snmp" +DEPENDS="openssl" +BUILD_DEPENDS="perl openssl-dev file" + # Rules to configure and make the package. compile_rules() { @@ -24,18 +26,17 @@ --with-logfile="/var/log/snmpd.log" \ --with-persistent-directory="/var/net-snmp" \ $CONFIGURE_ARGS && - make -j 1 && make DESTDIR=$PWD/_pkg install + make -j 1 && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/ - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/sbin $fs - cp -a $_pkg/usr/share $fs/usr - cp -a $_pkg/usr/lib/*so* $fs/usr/lib - cp -a $_pkg/usr/lib/perl5 $fs/usr/lib - + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs + cp -a $install/usr/share $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib + cp -a $install/usr/lib/perl5 $fs/usr/lib } diff -r bb009a6ef036 -r 3765f181a6d5 net-tools/receipt --- a/net-tools/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/net-tools/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="network" SHORT_DESC="Network toolbox." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.tazenda.demon.co.uk/phil/net-tools" WGET_URL="$WEB_SITE/$TARBALL" @@ -13,7 +14,7 @@ compile_rules() { cd $src - mkdir _pkg + mkdir $DESTDIR enabled="HAVE_AFUNIX HAVE_AFINET HAVE_HWETHER HAVE_HWPPP \ HAVE_HWTUNNEL HAVE_FW_MASQUERADE HAVE_IP_TOOLS HAVE_MII" sed '/HAVE_/!d;s/.*\(HAVE.*\)../\1/' < config.in | while read name; do @@ -27,12 +28,12 @@ sed -i 's/default:/&;/' hostname.c lib/inet_sr.c sed -i '/"usage/,/10baseT/s/.*/&\\n\\/' mii-tool.c make && - make BASEDIR=$PWD/_pkg install + make BASEDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/bin $fs - cp -a $_pkg/sbin $fs + cp -a $install/bin $fs + cp -a $install/sbin $fs } diff -r bb009a6ef036 -r 3765f181a6d5 nettle-dev/receipt --- a/nettle-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nettle-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="devel files for nettle" MAINTAINER="devl547@gmail.com" +LICENSE="LGPL2.1" WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/" WANTED="nettle" diff -r bb009a6ef036 -r 3765f181a6d5 nettle/receipt --- a/nettle/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nettle/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="security" SHORT_DESC="Nettle is a cryptographic library that is designed to fit easily in more or less any context." MAINTAINER="devl547@gmail.com" +LICENSE="LGPL2.1" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/" WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 newt-dev/receipt --- a/newt-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/newt-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,15 +5,16 @@ CATEGORY="development" SHORT_DESC="Not Erik's Windowing Toolkit dev files" MAINTAINER="erjo@slitaz.org" -DEPENDS="newt" +LICENSE="GPL2" WANTED="newt" WEB_SITE="https://fedorahosted.org/newt/" +DEPENDS="newt" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib } - diff -r bb009a6ef036 -r 3765f181a6d5 newt/receipt --- a/newt/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/newt/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,12 +5,14 @@ CATEGORY="development" SHORT_DESC="Not Erik's Windowing Toolkit" MAINTAINER="erjo@slitaz.org" -DEPENDS="slang popt tcl" -BUILD_DEPENDS="slang-dev tcl popt-dev python-dev wget" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://fedorahosted.org/newt/" WGET_URL="https://fedorahosted.org/releases/n/e/$PACKAGE/$TARBALL" +DEPENDS="slang popt tcl" +BUILD_DEPENDS="slang-dev tcl popt-dev python-dev wget" + # Rules to configure and make the package. compile_rules() { @@ -26,15 +28,15 @@ ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && - make instroot=$PWD/_pkg install + make instroot=$DESTIDR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib - cp -a $_pkg/usr/lib/python* $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/python* $fs/usr/lib } diff -r bb009a6ef036 -r 3765f181a6d5 nicotine+/receipt --- a/nicotine+/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nicotine+/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,34 +5,36 @@ CATEGORY="network" SHORT_DESC="Nicotine+ is a client for the SoulSeek filesharing network." MAINTAINER="claudinei@slitaz.org" +LICENSE="GPL3" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.nicotine-plus.org" WGET_URL="http://ufpr.dl.sourceforge.net/sourceforge/nicotine-plus/$TARBALL" +TAGS="fileshare p2p peer-to-peer" + DEPENDS="gtk+ python pygtk" BUILD_DEPENDS="python-dev pygtk-dev" -TAGS="fileshare p2p peer-to-peer" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr $fs/usr/share $fs/usr/share/nicotine - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr mv $fs/usr/bin/nicotine.py $fs/usr/bin/nicotine - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/share/applications $fs/usr/share - cp -a $_pkg/usr/share/pixmaps $fs/usr/share - cp -a $_pkg/usr/share/nicotine/sounds $fs/usr/share/nicotine + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/share/applications $fs/usr/share + cp -a $install/usr/share/pixmaps $fs/usr/share + cp -a $install/usr/share/nicotine/sounds $fs/usr/share/nicotine for lang in de es fr pt_BR; do mkdir -p $fs/usr/share/locale/$lang/LC_MESSAGES - cp -a $_pkg/usr/share/locale/$lang/LC_MESSAGES/nicotine.mo \ + cp -a $install/usr/share/locale/$lang/LC_MESSAGES/nicotine.mo \ $fs/usr/share/locale/$lang/LC_MESSAGES done } diff -r bb009a6ef036 -r 3765f181a6d5 nimrod/receipt --- a/nimrod/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nimrod/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,9 +5,11 @@ CATEGORY="development" SHORT_DESC="The Nimrod programming language." MAINTAINER="admin@trixarian.net" +LICENSE="GPL" TARBALL="nimrod_$VERSION.zip" WEB_SITE="http://www.nimrod-code.org/" WGET_URL="http://nimrod-code.org/download/$TARBALL" + DEPENDS="gcc glibc-base readline" BUILD_DEPENDS="gcc glibc-dev readline-dev" diff -r bb009a6ef036 -r 3765f181a6d5 ninvaders/receipt --- a/ninvaders/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ninvaders/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="games" SHORT_DESC="Space Invaders clone." MAINTAINER="pankso@slitaz.org" -DEPENDS="ncurses" -BUILD_DEPENDS="ncurses-dev" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://ninvaders.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" TAGS="shooting" +DEPENDS="ncurses" +BUILD_DEPENDS="ncurses-dev" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 nis/receipt --- a/nis/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nis/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="meta" SHORT_DESC="Yellow pages." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" WEB_SITE="http://www.kernel.org/pub/linux/utils/net/NIS/" DEPENDS="ypserv yp-tools ypbind-mt" diff -r bb009a6ef036 -r 3765f181a6d5 nomad/receipt --- a/nomad/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nomad/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -6,9 +6,10 @@ SHORT_DESC="user friendly wifi configure for nomads." WEB_SITE="http://doc.slitaz.org/en:guides:wifi-easy" MAINTAINER="sygne@ombres.eu" +LICENSE="GPL3" + DEPENDS="gtkdialog wireless_tools" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 notify-python/receipt --- a/notify-python/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/notify-python/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="system-tools" SHORT_DESC="Python binding to libnotify" MAINTAINER="pankso@slitaz.org" +LICENSE="LGPL2.1" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.galago-project.org/" WGET_URL="http://www.galago-project.org/files/releases/source/notify-python/$TARBALL" @@ -28,6 +29,6 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/share $fs/usr + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/share $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 nqc/receipt --- a/nqc/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nqc/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,14 +5,16 @@ CATEGORY="development" SHORT_DESC="Compiler for the Not Quite C programming language." MAINTAINER="rcx@zoominternet.net" -DEPENDS="glibc-base gcc-lib-base" -BUILD_DEPENDS="flex" +LICENSE="MPL" TARBALL="$PACKAGE-$VERSION.bz2" WEB_SITE="http://bricxcc.sourceforge.net/nqc/" #WGET_URL="http://bricxcc.sourceforge.net/nqc/release/$TARBALL" WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL" TAGS="compiler language" +DEPENDS="glibc-base gcc-lib-base" +BUILD_DEPENDS="flex" + # Rules to configure and make the package. compile_rules() { @@ -29,5 +31,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr } diff -r bb009a6ef036 -r 3765f181a6d5 nspr-dev/receipt --- a/nspr-dev/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nspr-dev/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="nspr devel library." MAINTAINER="slaxemulator@gmail.com" +LICENSE="MPL2" WANTED="nspr" WEB_SITE="http://www.mozilla.org/projects/security/nspr/" diff -r bb009a6ef036 -r 3765f181a6d5 nspr/receipt --- a/nspr/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nspr/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,12 +5,14 @@ CATEGORY="utilities" SHORT_DESC="Netscape Portable Runtime" MAINTAINER="rocky@slitaz.org" -DEPENDS="glibc-base" -BUILD_DEPENDS="perl" +LICENSE="MPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.mozilla.org/projects/nspr/" WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${VERSION}/src/${TARBALL}" +DEPENDS="glibc-base" +BUILD_DEPENDS="perl" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 nss_ldap/receipt --- a/nss_ldap/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nss_ldap/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="system-tools" SHORT_DESC="Get users, hosts, and groups from LDAP." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.padl.com/OSS/nss_ldap.html" +WGET_URL="http://www.padl.com/download/$TARBALL" + DEPENDS="cyrus-sasl libkrb5 libldap openssl libcomerr libcomerr3" BUILD_DEPENDS="openldap-dev" -WEB_SITE="http://www.padl.com/OSS/nss_ldap.html" -WGET_URL="http://www.padl.com/download/$TARBALL" # Rules to configure and make the package. compile_rules() @@ -20,15 +22,15 @@ --enable-rfc2307bis --enable-schema-mapping --enable-paged-results \ --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && make $MAKEFLAGS && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTIDR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr $fs/etc - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/etc $fs + cp -a $install/usr/lib $fs/usr + cp -a $install/etc $fs } post_install() diff -r bb009a6ef036 -r 3765f181a6d5 ntl/receipt --- a/ntl/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ntl/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="utilities" SHORT_DESC="A Library for doing Number Theory" MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL" WEB_SITE="http://shoup.net/ntl/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/$TARBALL" diff -r bb009a6ef036 -r 3765f181a6d5 ntlmaps/receipt --- a/ntlmaps/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ntlmaps/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="NTLM Authorization Proxy Server to authenticate via an MS Proxy." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://ntlmaps.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -DEPENDS="python" CONFIG_FILES="/etc/ntlmaps.conf" TAGS="proxy server" +DEPENDS="python" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 ntpclient/receipt --- a/ntpclient/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/ntpclient/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="system-tools" SHORT_DESC="Tiny NTP Client" MAINTAINER="erjo@slitaz.org" -DEPENDS="" +LICENSE="GPL2" TARBALL="${PACKAGE}_${VERSION}.tar.gz" WEB_SITE="http://www.busybox.net/tinyutils.html" WGET_URL="http://doolittle.icarus.com/ntpclient/$TARBALL" +DEPENDS="" + # Rules to configure and make the package. compile_rules() { diff -r bb009a6ef036 -r 3765f181a6d5 nvclock/receipt --- a/nvclock/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nvclock/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -4,11 +4,13 @@ VERSION="0.8b4" CATEGORY="network" MAINTAINER="jozee@slitaz.org" +LICENSE="GPL2" SHORT_DESC="A small utility which allows users to overclock NVIDIA based video cards" WEB_SITE="http://www.linuxhardware.org/nvclock/" TARBALL="$PACKAGE$VERSION.tar.gz" WGET_URL="$WEB_SITE/$TARBALL" TAGS="power-management" + BUILD_DEPENDS="autoconf" # Rules to configure and make the package. @@ -28,6 +30,6 @@ genpkg_rules() { mkdir -p $fs/usr/share/pixmaps - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/icons/hicolor/48x48/apps/* $fs/usr/share/pixmaps + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/icons/hicolor/48x48/apps/* $fs/usr/share/pixmaps } diff -r bb009a6ef036 -r 3765f181a6d5 nvidia-173xx/receipt --- a/nvidia-173xx/receipt Sat Nov 30 15:44:51 2013 +0000 +++ b/nvidia-173xx/receipt Sat Nov 30 17:02:58 2013 +0000 @@ -4,6 +4,7 @@ VERSION="173.14.31" CATEGORY="non-free" MAINTAINER="jozee@slitaz.org" +LICENSE="other" SHORT_DESC="NVIDIA drivers (non-free)" WEB_SITE="http://www.nvidia.com/" SOURCE="NVIDIA-Linux-x86-${VERSION}-pkg1"