wok rev 43
Add : gcolor2, geany, gftp, gimp, gitmail, gqview, grsync
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Dec 18 14:18:59 2007 +0100 (2007-12-18) |
parents | 8e742fadbc43 |
children | dbd7a9189e51 |
files | gcolor2/receipt geany/receipt gftp/receipt gftp/stuff/bookmarks gimp/receipt gimp/stuff/gimp-splash.png gitmail/receipt gqview/receipt grsync/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gcolor2/receipt Tue Dec 18 14:18:59 2007 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gcolor2" 1.7 +VERSION="0.4" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="Light and simple color selector." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="gtk+" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://gcolor2.sourceforge.net/" 1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.21 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.22 + make 1.23 + make DESTDIR=$PWD/_pkg install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + cp -a $_pkg/usr/bin $fs/usr 1.31 + strip -s $fs/usr/bin/* 1.32 + 1.33 + cp -a $_pkg/usr/share $fs/usr 1.34 + cd $fs/usr/share/pixmaps 1.35 + ln -s gcolor2/icon.png gcolor2.png 1.36 +} 1.37 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/geany/receipt Tue Dec 18 14:18:59 2007 +0100 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="geany" 2.7 +VERSION="0.12" 2.8 +CATEGORY="extra" 2.9 +SHORT_DESC="Small and fast IDE using GTK+ toolkit." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +DEPENDS="gtk+" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://geany.uvena.de/" 2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + cd $src 2.20 + ./configure --prefix=/usr --mandir=/usr/share/man \ 2.21 + --disable-vte $CONFIGURE_ARGS 2.22 + make 2.23 + make DESTDIR=$PWD/_pkg install 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + mkdir -p $fs/usr/share/locale $fs/usr/lib/geany 2.30 + cp -a $_pkg/usr/bin $fs/usr 2.31 + cp -a $_pkg/usr/lib/geany/*.so $fs/usr/lib/geany 2.32 + cp -a $_pkg/usr/share/geany $fs/usr/share 2.33 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share 2.34 + rm -f $fs/usr/share/pixmaps/*.ico 2.35 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 2.36 + strip -s $fs/usr/bin/* 2.37 + strip -s $fs/usr/lib/geany/* 2.38 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/gftp/receipt Tue Dec 18 14:18:59 2007 +0100 3.3 @@ -0,0 +1,42 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="gftp" 3.7 +VERSION="2.0.18" 3.8 +CATEGORY="extra" 3.9 +SHORT_DESC="Small and speed FTP client." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="gtk+" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.13 +WEB_SITE="http://www.gftp.org/" 3.14 +WGET_URL="http://www.gftp.org/$TARBALL" 3.15 + 3.16 +# Rules to configure and make the package. 3.17 +compile_rules() 3.18 +{ 3.19 + cd $src 3.20 + ./configure --prefix=/usr --mandir=/usr/share/man \ 3.21 + --disable-ssl --disable-textport \ 3.22 + $CONFIGURE_ARGS 3.23 + make 3.24 + make DESTDIR=$PWD/_pkg install 3.25 +} 3.26 + 3.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.28 +genpkg_rules() 3.29 +{ 3.30 + mkdir -p $fs/usr/bin $fs/usr/share/locale 3.31 + cp -a $_pkg/usr/bin/gftp $fs/usr/bin 3.32 + cp -a $_pkg/usr/bin/gftp-gtk $fs/usr/bin 3.33 + cp -a $_pkg/usr/share/gftp $fs/usr/share 3.34 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share 3.35 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 3.36 + strip -s $fs/usr/bin/* 3.37 + chmod 755 $fs/usr/bin/gftp 3.38 + 3.39 + # Copy custom bookmarks file and remove license, big logo. 3.40 + cp -a stuff/bookmarks $fs/usr/share/gftp 3.41 + rm -f $fs/usr/share/gftp/COPYING 3.42 + rm -f $fs/usr/share/gftp/gftp-logo.xpm 3.43 + cd $fs/usr/share/gftp/ 3.44 + ln -s gftp-mini-logo.xpm gftp-logo.xpm 3.45 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/gftp/stuff/bookmarks Tue Dec 18 14:18:59 2007 +0100 4.3 @@ -0,0 +1,254 @@ 4.4 +# Bookmarks file for gFTP. Copyright (C) 1998-2002 Brian Masney 4.5 +# <masneyb@gftp.org>. Warning: Any comments that you add to this file WILL be 4.6 +# overwritten 4.7 + 4.8 +[BSD Sites/FreeBSD] 4.9 +hostname=ftp.freebsd.org 4.10 +port=21 4.11 +protocol=FTP 4.12 +remote directory=/pub/FreeBSD 4.13 +local directory= 4.14 +username=anonymous 4.15 +password=@EMAIL@ 4.16 +account= 4.17 + 4.18 +[BSD Sites/NetBSD] 4.19 +hostname=ftp.netbsd.org 4.20 +port=21 4.21 +protocol=FTP 4.22 +remote directory=/pub 4.23 +local directory= 4.24 +username=anonymous 4.25 +password=@EMAIL@ 4.26 +account= 4.27 + 4.28 +[BSD Sites/OpenBSD] 4.29 +hostname=ftp.openbsd.org 4.30 +port=21 4.31 +protocol=FTP 4.32 +remote directory=/pub 4.33 +local directory= 4.34 +username=anonymous 4.35 +password=@EMAIL@ 4.36 +account= 4.37 + 4.38 +[Debian Sites/Debian] 4.39 +hostname=ftp.debian.org 4.40 +port=21 4.41 +protocol=FTP 4.42 +remote directory=/debian 4.43 +local directory= 4.44 +username=anonymous 4.45 +password=@EMAIL@ 4.46 +account= 4.47 + 4.48 +[General Sites/gFTP] 4.49 +hostname=www.gftp.org 4.50 +port=21 4.51 +protocol=FTP 4.52 +remote directory=/pub/gftp 4.53 +local directory= 4.54 +username=anonymous 4.55 +password=@EMAIL@ 4.56 +account= 4.57 + 4.58 +[General Sites/GNU Archive] 4.59 +hostname=prep.ai.mit.edu 4.60 +port=21 4.61 +protocol=FTP 4.62 +remote directory=/pub/gnu 4.63 +local directory= 4.64 +username=anonymous 4.65 +password=@EMAIL@ 4.66 +account= 4.67 + 4.68 +[General Sites/Kernel.Org] 4.69 +hostname=ftp.kernel.org 4.70 +port=21 4.71 +protocol=FTP 4.72 +remote directory=/ 4.73 +local directory= 4.74 +username=anonymous 4.75 +password=@EMAIL@ 4.76 +account= 4.77 + 4.78 +[General Sites/Ibiblio] 4.79 +hostname=ibiblio.unc.edu 4.80 +port=21 4.81 +protocol=FTP 4.82 +remote directory=/pub/Linux 4.83 +local directory= 4.84 +username=anonymous 4.85 +password=@EMAIL@ 4.86 +account= 4.87 + 4.88 +[General Sites/Micro$~1 =)] 4.89 +hostname=ftp.microsoft.com 4.90 +port=21 4.91 +protocol=FTP 4.92 +remote directory=/ 4.93 +local directory= 4.94 +username=anonymous 4.95 +password=@EMAIL@ 4.96 +account= 4.97 + 4.98 +[General Sites/Mozilla] 4.99 +hostname=ftp.mozilla.org 4.100 +port=21 4.101 +protocol=FTP 4.102 +remote directory=/pub 4.103 +local directory= 4.104 +username=anonymous 4.105 +password=@EMAIL@ 4.106 +account= 4.107 + 4.108 +[General Sites/Rufus] 4.109 +hostname=rufus.w3.org 4.110 +port=21 4.111 +protocol=FTP 4.112 +remote directory=/ 4.113 +local directory= 4.114 +username=anonymous 4.115 +password=@EMAIL@ 4.116 +account= 4.117 + 4.118 +[General Sites/Source Forge] 4.119 +hostname=ftp.sourceforge.net 4.120 +port=21 4.121 +protocol=FTP 4.122 +remote directory=/pub 4.123 +local directory= 4.124 +username=anonymous 4.125 +password=@EMAIL@ 4.126 +account= 4.127 + 4.128 +[General Sites/Tux.Org] 4.129 +hostname=ftp.tux.org 4.130 +port=21 4.131 +protocol=FTP 4.132 +remote directory=/pub 4.133 +local directory= 4.134 +username=anonymous 4.135 +password=@EMAIL@ 4.136 +account= 4.137 + 4.138 +[General Sites/TSX-11] 4.139 +hostname=tsx-11.mit.edu 4.140 +port=21 4.141 +protocol=FTP 4.142 +remote directory=/pub/linux 4.143 +local directory= 4.144 +username=anonymous 4.145 +password=@EMAIL@ 4.146 +account= 4.147 + 4.148 +[General Sites/Wcarchive] 4.149 +hostname=ftp.cdrom.com 4.150 +port=21 4.151 +protocol=FTP 4.152 +remote directory=/ 4.153 +local directory= 4.154 +username=anonymous 4.155 +password=@EMAIL@ 4.156 +account= 4.157 + 4.158 +[SliTaz Sites/TuxFamily] 4.159 +hostname=ftp.tuxfamily.org 4.160 +port=21 4.161 +protocol=FTP 4.162 +remote directory=/slitaz 4.163 +local directory= 4.164 +username=anonymous 4.165 +password=@EMAIL@ 4.166 +account= 4.167 + 4.168 +[SliTaz Sites/TuxFamily-packages] 4.169 +hostname=ftp.tuxfamily.org 4.170 +port=21 4.171 +protocol=FTP 4.172 +remote directory=/slitaz/packages 4.173 +local directory= 4.174 +username=anonymous 4.175 +password=@EMAIL@ 4.176 +account= 4.177 + 4.178 +[X11 Sites/Gimp] 4.179 +hostname=ftp.gimp.org 4.180 +port=21 4.181 +protocol=FTP 4.182 +remote directory=/pub/gimp 4.183 +local directory= 4.184 +username=anonymous 4.185 +password=@EMAIL@ 4.186 +account= 4.187 + 4.188 +[X11 Sites/Gnome] 4.189 +hostname=ftp.gnome.org 4.190 +port=21 4.191 +protocol=FTP 4.192 +remote directory=/pub 4.193 +local directory= 4.194 +username=anonymous 4.195 +password=@EMAIL@ 4.196 +account= 4.197 + 4.198 +[X11 Sites/GTK+] 4.199 +hostname=ftp.gtk.org 4.200 +port=21 4.201 +protocol=FTP 4.202 +remote directory=/pub/gtk 4.203 +local directory= 4.204 +username=anonymous 4.205 +password=@EMAIL@ 4.206 +account= 4.207 + 4.208 +[X11 Sites/KDE] 4.209 +hostname=ftp.kde.org 4.210 +port=21 4.211 +protocol=FTP 4.212 +remote directory=/pub 4.213 +local directory= 4.214 +username=anonymous 4.215 +password=@EMAIL@ 4.216 +account= 4.217 + 4.218 +[X11 Sites/LessTif] 4.219 +hostname=ftp.hungry.com 4.220 +port=21 4.221 +protocol=FTP 4.222 +remote directory=/pub/hungry/lesstif 4.223 +local directory= 4.224 +username=anonymous 4.225 +password=@EMAIL@ 4.226 +account= 4.227 + 4.228 +[X11 Sites/Qt] 4.229 +hostname=ftp.troll.no 4.230 +port=21 4.231 +protocol=FTP 4.232 +remote directory=/qt/source 4.233 +local directory= 4.234 +username=anonymous 4.235 +password=@EMAIL@ 4.236 +account= 4.237 + 4.238 +[X11 Sites/XFree86] 4.239 +hostname=ftp.xfree86.org 4.240 +port=21 4.241 +protocol=FTP 4.242 +remote directory=/pub 4.243 +local directory= 4.244 +username=anonymous 4.245 +password=@EMAIL@ 4.246 +account= 4.247 + 4.248 +[X11 Sites/ftp.x.org] 4.249 +hostname=ftp.x.org 4.250 +port=21 4.251 +protocol=FTP 4.252 +remote directory=/pub 4.253 +local directory= 4.254 +username=anonymous 4.255 +password=@EMAIL@ 4.256 +account= 4.257 +
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/gimp/receipt Tue Dec 18 14:18:59 2007 +0100 5.3 @@ -0,0 +1,51 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="gimp" 5.7 +VERSION="2.2.17" 5.8 +CATEGORY="extra" 5.9 +SHORT_DESC="Gnu Image Manipulation Program or GIMP!" 5.10 +MAINTAINER="pankso@slitaz.org" 5.11 +DEPENDS="gtk+ libart_lgpl" 5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 5.13 +WEB_SITE="http://www.gimp.org/" 5.14 +WGET_URL="ftp://ftp.gimp.org/pub/gimp/v2.2/$TARBALL" 5.15 + 5.16 +# Rules to configure and make the package. 5.17 +compile_rules() 5.18 +{ 5.19 + cd $src 5.20 + ./configure \ 5.21 + --prefix=/usr --infodir=/usr/share/info \ 5.22 + --mandir=/usr/share/man --sysconfdir=/etc \ 5.23 + --with-html-dir=/usr/share/doc \ 5.24 + $CONFIGURE_ARGS \ 5.25 + --disable-print 5.26 + make 5.27 + make DESTDIR=$PWD/_pkg install 5.28 +} 5.29 + 5.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.31 +genpkg_rules() 5.32 +{ 5.33 + mkdir -p $fs/usr $fs/usr/lib $fs/usr/share/locale $fs/usr/share/pixmaps 5.34 + 5.35 + cp -a $_pkg/etc $fs 5.36 + cp $src/data/images/wilber-icon.png $fs/usr/share/pixmaps/gimp.png 5.37 + 5.38 + cp -a $_pkg/usr/bin $fs/usr 5.39 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 5.40 + cp -a $_pkg/usr/lib/gimp $fs/usr/lib 5.41 + cp -a $_pkg/usr/share/gimp $fs/usr/share 5.42 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 5.43 + 5.44 + rm $fs/usr/lib/gimp/*/*/*.la 5.45 + strip --strip-unneeded $fs/usr/lib/*.so* 5.46 + strip --strip-unneeded $fs/usr/lib/gimp/*/modules/*.so 5.47 + strip -s $fs/usr/lib/gimp/*/plug-ins/* 5.48 + strip -s $fs/usr/bin/* 2>/dev/null 5.49 + 5.50 + # Put a nice splash with a spider 5.51 + cp -a stuff/gimp-splash.png $fs/usr/share/gimp/2.0/images/ 5.52 + 5.53 +} 5.54 +
6.1 Binary file gimp/stuff/gimp-splash.png has changed
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/gitmail/receipt Tue Dec 18 14:18:59 2007 +0100 7.3 @@ -0,0 +1,29 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="gitmail" 7.7 +VERSION="0.4" 7.8 +CATEGORY="extra" 7.9 +SHORT_DESC="Ghost In The Mail is a simple mail client." 7.10 +MAINTAINER="pankso@slitaz.org" 7.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 7.12 +WEB_SITE="http://gitmail.sourceforge.net/" 7.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 7.14 + 7.15 +# Rules to configure and make the package. 7.16 +compile_rules() 7.17 +{ 7.18 + cd GhostInTheMail-$VERSION 7.19 + ./configure --prefix=/usr $CONFIGURE_ARGS 7.20 + make 7.21 + make DESTDIR=$PWD/_pkg \ 7.22 + gitmaildocdir=/usr/share/doc/GhostInTheMail \ 7.23 + install 7.24 +} 7.25 + 7.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.27 +genpkg_rules() 7.28 +{ 7.29 + mkdir -p $fs/usr 7.30 + cp -a GhostInTheMail-$VERSION/_pkg/usr/bin $fs/usr 7.31 + strip -s $fs/usr/bin/* 7.32 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/gqview/receipt Tue Dec 18 14:18:59 2007 +0100 8.3 @@ -0,0 +1,31 @@ 8.4 +# SliTaz package receipt. 8.5 + 8.6 +PACKAGE="gqview" 8.7 +VERSION="2.0.4" 8.8 +CATEGORY="extra" 8.9 +SHORT_DESC="Images viewer and manager using GTK+." 8.10 +MAINTAINER="pankso@slitaz.org" 8.11 +DEPENDS="gtk+" 8.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 8.13 +WEB_SITE="http://gqview.sourceforge.net/" 8.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 8.15 + 8.16 +# Rules to configure and make the package. 8.17 +compile_rules() 8.18 +{ 8.19 + cd $src 8.20 + ./configure --prefix=/usr --mandir=/usr/share/man \ 8.21 + $CONFIGURE_ARGS 8.22 + make 8.23 + make DESTDIR=$PWD/_pkg install 8.24 +} 8.25 + 8.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 8.27 +genpkg_rules() 8.28 +{ 8.29 + mkdir -p $fs/usr/share/locale 8.30 + cp -a $_pkg/usr/bin $fs/usr 8.31 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share 8.32 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 8.33 + strip -s $fs/usr/bin/* 8.34 +}
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/grsync/receipt Tue Dec 18 14:18:59 2007 +0100 9.3 @@ -0,0 +1,32 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="grsync" 9.7 +VERSION="0.6" 9.8 +CATEGORY="extra" 9.9 +SHORT_DESC="GTK+ intuitive interface to rsync." 9.10 +MAINTAINER="pankso@slitaz.org" 9.11 +DEPENDS="gtk+ rsync" 9.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 9.13 +WEB_SITE="http://www.opbyte.it/grsync/" 9.14 +WGET_URL="http://www.opbyte.it/release/$TARBALL" 9.15 + 9.16 +# Rules to configure and make the package. 9.17 +compile_rules() 9.18 +{ 9.19 + cd $src 9.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 9.21 + --mandir=/usr/share/man $CONFIGURE_ARGS 9.22 + make 9.23 + make DESTDIR=$PWD/_pkg install 9.24 +} 9.25 + 9.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.27 +genpkg_rules() 9.28 +{ 9.29 + mkdir -p $fs/usr/share/locale 9.30 + cp -a $_pkg/usr/bin $fs/usr 9.31 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share/pixmaps 9.32 + cp -a $_pkg/usr/share/locale/fr_FR $fs/usr/share/locale/fr 9.33 + strip -s $fs/usr/bin/* 9.34 +} 9.35 +