wok rev 14767
Add gadmintools
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gadmin-antivirus/receipt Sat Jun 29 11:15:25 2013 +0200 1.3 @@ -0,0 +1,38 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gadmin-antivirus" 1.7 +VERSION="0.0.3" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="GTK+ configuration tool for ClamAV." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 1.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 1.15 + 1.16 +DEPENDS="gtk+ clamav" 1.17 +BUILD_DEPENDS="gtk+-dev" 1.18 + 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + cd $src 1.24 + ./configure --prefix=/usr \ 1.25 + --sysconfdir=/etc \ 1.26 + --localstatedir=/var \ 1.27 + --mandir=/usr/share/man \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && 1.30 + make DESTDIR=$DESTDIR install 1.31 +} 1.32 + 1.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 +genpkg_rules() 1.35 +{ 1.36 + mkdir -p $fs/usr/share/applications 1.37 + cp -a $install/etc $fs 1.38 + cp -a $install/usr/sbin $fs/usr 1.39 + cp -a $install/usr/share/pixmaps $fs/usr/share 1.40 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 1.41 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gadmin-antivirus/stuff/gadmin-antivirus.desktop Sat Jun 29 11:15:25 2013 +0200 2.3 @@ -0,0 +1,9 @@ 2.4 +[Desktop Entry] 2.5 +Encoding=UTF-8 2.6 +Name=GAdmin-antivirus 2.7 +Comment=ClamAV server administration 2.8 +Exec=subox /usr/sbin/gadmin-antivirus 2.9 +Icon=gadmin-antivirus 2.10 +Terminal=false 2.11 +Type=Application 2.12 +Categories=GTK;System;
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/gadmin-bind/receipt Sat Jun 29 11:15:25 2013 +0200 3.3 @@ -0,0 +1,36 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="gadmin-bind" 3.7 +VERSION="0.2.5" 3.8 +CATEGORY="x-window" 3.9 +SHORT_DESC="GTK+ configuration tool for bind9." 3.10 +MAINTAINER="pascal.bellard@slitaz.org" 3.11 +LICENSE="GPL" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 3.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 3.15 + 3.16 +DEPENDS="gtk+ bind" 3.17 +BUILD_DEPENDS="gtk+-dev" 3.18 + 3.19 + 3.20 +# Rules to configure and make the package. 3.21 +compile_rules() 3.22 +{ 3.23 + cd $src 3.24 + ./configure --prefix=/usr \ 3.25 + --sysconfdir=/etc \ 3.26 + --mandir=/usr/share/man \ 3.27 + $CONFIGURE_ARGS && 3.28 + make && 3.29 + make DESTDIR=$DESTDIR install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/share/applications 3.36 + cp -a $install/usr/sbin $fs/usr 3.37 + cp -a $install/usr/share/pixmaps $fs/usr/share 3.38 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 3.39 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/gadmin-bind/stuff/gadmin-bind.desktop Sat Jun 29 11:15:25 2013 +0200 4.3 @@ -0,0 +1,9 @@ 4.4 +[Desktop Entry] 4.5 +Encoding=UTF-8 4.6 +Name=GAdmin-bind 4.7 +Comment=BIND DNS server administration 4.8 +Exec=subox /usr/sbin/gadmin-bind 4.9 +Icon=gadmin-bind 4.10 +Terminal=false 4.11 +Type=Application 4.12 +Categories=GTK;System;
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/gadmin-dhcpd/receipt Sat Jun 29 11:15:25 2013 +0200 5.3 @@ -0,0 +1,37 @@ 5.4 +# SliTaz package receipt. 5.5 + 5.6 +PACKAGE="gadmin-dhcpd" 5.7 +VERSION="0.5.2" 5.8 +CATEGORY="x-window" 5.9 +SHORT_DESC="GTK+ configuration tool for DHCPD." 5.10 +MAINTAINER="pascal.bellard@slitaz.org" 5.11 +LICENSE="GPL" 5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 5.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 5.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 5.15 + 5.16 +DEPENDS="gtk+ dhcp" 5.17 +BUILD_DEPENDS="gtk+-dev" 5.18 + 5.19 + 5.20 +# Rules to configure and make the package. 5.21 +compile_rules() 5.22 +{ 5.23 + cd $src 5.24 + ./configure --prefix=/usr \ 5.25 + --sysconfdir=/etc \ 5.26 + --localstatedir=/var \ 5.27 + --mandir=/usr/share/man \ 5.28 + $CONFIGURE_ARGS && 5.29 + make && 5.30 + make DESTDIR=$DESTDIR install 5.31 +} 5.32 + 5.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 5.34 +genpkg_rules() 5.35 +{ 5.36 + mkdir -p $fs/usr/share/applications 5.37 + cp -a $install/usr/sbin $fs/usr 5.38 + cp -a $install/usr/share/pixmaps $fs/usr/share 5.39 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 5.40 +}
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/gadmin-dhcpd/stuff/gadmin-dhcpd.desktop Sat Jun 29 11:15:25 2013 +0200 6.3 @@ -0,0 +1,9 @@ 6.4 +[Desktop Entry] 6.5 +Encoding=UTF-8 6.6 +Name=GAdmin-dhcpd 6.7 +Comment=DHCP server administration 6.8 +Exec=subox /usr/sbin/gadmin-dhcpd 6.9 +Icon=gadmin-dhcpd 6.10 +Terminal=false 6.11 +Type=Application 6.12 +Categories=GTK;System;
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/gadmin-httpd/receipt Sat Jun 29 11:15:25 2013 +0200 7.3 @@ -0,0 +1,38 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="gadmin-httpd" 7.7 +VERSION="0.1.5" 7.8 +CATEGORY="x-window" 7.9 +SHORT_DESC="GTK+ configuration tool for Apache." 7.10 +MAINTAINER="pascal.bellard@slitaz.org" 7.11 +LICENSE="GPL" 7.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 7.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 7.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 7.15 + 7.16 +DEPENDS="gtk+ apache" 7.17 +BUILD_DEPENDS="gtk+-dev" 7.18 + 7.19 + 7.20 +# Rules to configure and make the package. 7.21 +compile_rules() 7.22 +{ 7.23 + cd $src 7.24 + ./configure --prefix=/usr \ 7.25 + --sysconfdir=/etc \ 7.26 + --localstatedir=/var \ 7.27 + --mandir=/usr/share/man \ 7.28 + $CONFIGURE_ARGS && 7.29 + make && 7.30 + make DESTDIR=$DESTDIR install 7.31 +} 7.32 + 7.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.34 +genpkg_rules() 7.35 +{ 7.36 + mkdir -p $fs/usr/share/applications 7.37 + cp -a $install/etc $fs 7.38 + cp -a $install/usr/sbin $fs/usr 7.39 + cp -a $install/usr/share/pixmaps $fs/usr/share 7.40 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 7.41 +}
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/gadmin-httpd/stuff/gadmin-httpd.desktop Sat Jun 29 11:15:25 2013 +0200 8.3 @@ -0,0 +1,9 @@ 8.4 +[Desktop Entry] 8.5 +Encoding=UTF-8 8.6 +Name=GAdmin-httpd 8.7 +Comment=Apache server administration 8.8 +Exec=subox /usr/sbin/gadmin-httpd 8.9 +Icon=gadmin-httpd 8.10 +Terminal=false 8.11 +Type=Application 8.12 +Categories=GTK;System;
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/gadmin-openvpn-client/receipt Sat Jun 29 11:15:25 2013 +0200 9.3 @@ -0,0 +1,36 @@ 9.4 +# SliTaz package receipt. 9.5 + 9.6 +PACKAGE="gadmin-openvpn-client" 9.7 +VERSION="0.1.8" 9.8 +CATEGORY="x-window" 9.9 +SHORT_DESC="GTK+ configuration tool for OpenVPN (client)." 9.10 +MAINTAINER="pascal.bellard@slitaz.org" 9.11 +LICENSE="GPL" 9.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 9.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 9.14 +WGET_URL="http://dalalven.dtdns.net/linux/gadmin-openvpn/client/$TARBALL" 9.15 + 9.16 +DEPENDS="gtk+ openvpn" 9.17 +BUILD_DEPENDS="gtk+-dev" 9.18 + 9.19 + 9.20 +# Rules to configure and make the package. 9.21 +compile_rules() 9.22 +{ 9.23 + cd $src 9.24 + ./configure --prefix=/usr \ 9.25 + --sysconfdir=/etc \ 9.26 + --mandir=/usr/share/man \ 9.27 + $CONFIGURE_ARGS && 9.28 + make && 9.29 + make DESTDIR=$DESTDIR install 9.30 +} 9.31 + 9.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 9.33 +genpkg_rules() 9.34 +{ 9.35 + mkdir -p $fs/usr/share/applications 9.36 + cp -a $install/usr/sbin $fs/usr 9.37 + cp -a $install/usr/share/pixmaps $fs/usr/share 9.38 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 9.39 +}
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/gadmin-openvpn-client/stuff/gadmin-openvpn-client.desktop Sat Jun 29 11:15:25 2013 +0200 10.3 @@ -0,0 +1,9 @@ 10.4 +[Desktop Entry] 10.5 +Encoding=UTF-8 10.6 +Name=GAdmin-openvpn-client 10.7 +Comment=OpenVPN client administration 10.8 +Exec=subox /usr/sbin/gadmin-openvpn-client 10.9 +Icon=gadmin-openvpn-client 10.10 +Terminal=false 10.11 +Type=Application 10.12 +Categories=GTK;System;
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/gadmin-openvpn-server/receipt Sat Jun 29 11:15:25 2013 +0200 11.3 @@ -0,0 +1,37 @@ 11.4 +# SliTaz package receipt. 11.5 + 11.6 +PACKAGE="gadmin-openvpn-server" 11.7 +VERSION="0.1.6" 11.8 +CATEGORY="x-window" 11.9 +SHORT_DESC="GTK+ configuration tool for OpenVPN (server)." 11.10 +MAINTAINER="pascal.bellard@slitaz.org" 11.11 +LICENSE="GPL" 11.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 11.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 11.14 +WGET_URL="http://dalalven.dtdns.net/linux/gadmin-openvpn/server/$TARBALL" 11.15 + 11.16 +DEPENDS="gtk+ openvpn" 11.17 +BUILD_DEPENDS="gtk+-dev" 11.18 + 11.19 + 11.20 +# Rules to configure and make the package. 11.21 +compile_rules() 11.22 +{ 11.23 + cd $src 11.24 + ./configure --prefix=/usr \ 11.25 + --sysconfdir=/etc \ 11.26 + --mandir=/usr/share/man \ 11.27 + $CONFIGURE_ARGS && 11.28 + make && 11.29 + make DESTDIR=$DESTDIR install 11.30 +} 11.31 + 11.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 11.33 +genpkg_rules() 11.34 +{ 11.35 + mkdir -p $fs/usr/share/applications 11.36 + cp -a $install/etc $fs 11.37 + cp -a $install/usr/sbin $fs/usr 11.38 + cp -a $install/usr/share/pixmaps $fs/usr/share 11.39 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 11.40 +}
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/gadmin-openvpn-server/stuff/gadmin-openvpn-server.desktop Sat Jun 29 11:15:25 2013 +0200 12.3 @@ -0,0 +1,9 @@ 12.4 +[Desktop Entry] 12.5 +Encoding=UTF-8 12.6 +Name=GAdmin-openvpn-server 12.7 +Comment=OpenVPN server administration 12.8 +Exec=subox /usr/sbin/gadmin-openvpn-server 12.9 +Icon=gadmin-openvpn-server 12.10 +Terminal=false 12.11 +Type=Application 12.12 +Categories=GTK;System;
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/gadmin-proftpd/receipt Sat Jun 29 11:15:25 2013 +0200 13.3 @@ -0,0 +1,37 @@ 13.4 +# SliTaz package receipt. 13.5 + 13.6 +PACKAGE="gadmin-proftpd" 13.7 +VERSION="0.4.6" 13.8 +CATEGORY="x-window" 13.9 +SHORT_DESC="GTK+ configuration tool for ProFTPd." 13.10 +MAINTAINER="pascal.bellard@slitaz.org" 13.11 +LICENSE="GPL" 13.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 13.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 13.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 13.15 + 13.16 +DEPENDS="gtk+ proftpd" 13.17 +BUILD_DEPENDS="gtk+-dev" 13.18 + 13.19 + 13.20 +# Rules to configure and make the package. 13.21 +compile_rules() 13.22 +{ 13.23 + cd $src 13.24 + ./configure --prefix=/usr \ 13.25 + --sysconfdir=/etc \ 13.26 + --mandir=/usr/share/man \ 13.27 + $CONFIGURE_ARGS && 13.28 + make && 13.29 + make DESTDIR=$DESTDIR install 13.30 +} 13.31 + 13.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 13.33 +genpkg_rules() 13.34 +{ 13.35 + mkdir -p $fs/usr/share/applications 13.36 + cp -a $install/etc $fs 13.37 + cp -a $install/usr/sbin $fs/usr 13.38 + cp -a $install/usr/share/pixmaps $fs/usr/share 13.39 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 13.40 +}
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/gadmin-proftpd/stuff/gadmin-proftpd.desktop Sat Jun 29 11:15:25 2013 +0200 14.3 @@ -0,0 +1,9 @@ 14.4 +[Desktop Entry] 14.5 +Encoding=UTF-8 14.6 +Name=GAdmin-proftpd 14.7 +Comment=ProFTPd server administration 14.8 +Exec=subox /usr/sbin/gadmin-proftpd 14.9 +Icon=gadmin-proftpd 14.10 +Terminal=false 14.11 +Type=Application 14.12 +Categories=GTK;System;
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/gadmin-rsync/receipt Sat Jun 29 11:15:25 2013 +0200 15.3 @@ -0,0 +1,37 @@ 15.4 +# SliTaz package receipt. 15.5 + 15.6 +PACKAGE="gadmin-rsync" 15.7 +VERSION="0.1.8" 15.8 +CATEGORY="x-window" 15.9 +SHORT_DESC="GTK+ configuration tool for rsync." 15.10 +MAINTAINER="pascal.bellard@slitaz.org" 15.11 +LICENSE="GPL" 15.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 15.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 15.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 15.15 + 15.16 +DEPENDS="gtk+ rsync" 15.17 +BUILD_DEPENDS="gtk+-dev" 15.18 + 15.19 + 15.20 +# Rules to configure and make the package. 15.21 +compile_rules() 15.22 +{ 15.23 + cd $src 15.24 + ./configure --prefix=/usr \ 15.25 + --sysconfdir=/etc \ 15.26 + --mandir=/usr/share/man \ 15.27 + $CONFIGURE_ARGS && 15.28 + make && 15.29 + make DESTDIR=$DESTDIR install 15.30 +} 15.31 + 15.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 15.33 +genpkg_rules() 15.34 +{ 15.35 + mkdir -p $fs/usr/share/applications 15.36 + cp -a $install/etc $fs 15.37 + cp -a $install/usr/sbin $fs/usr 15.38 + cp -a $install/usr/share/pixmaps $fs/usr/share 15.39 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 15.40 +}
16.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 16.2 +++ b/gadmin-rsync/stuff/gadmin-rsync.desktop Sat Jun 29 11:15:25 2013 +0200 16.3 @@ -0,0 +1,9 @@ 16.4 +[Desktop Entry] 16.5 +Encoding=UTF-8 16.6 +Name=GAdmin-rsync 16.7 +Comment=RSYNC server administration 16.8 +Exec=subox /usr/sbin/gadmin-rsync 16.9 +Icon=gadmin-rsync 16.10 +Terminal=false 16.11 +Type=Application 16.12 +Categories=GTK;System;
17.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 17.2 +++ b/gadmin-samba/receipt Sat Jun 29 11:15:25 2013 +0200 17.3 @@ -0,0 +1,39 @@ 17.4 +# SliTaz package receipt. 17.5 + 17.6 +PACKAGE="gadmin-samba" 17.7 +VERSION="0.3.4" 17.8 +CATEGORY="x-window" 17.9 +SHORT_DESC="GTK+ configuration tool for SAMBA." 17.10 +MAINTAINER="pascal.bellard@slitaz.org" 17.11 +LICENSE="GPL" 17.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 17.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 17.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 17.15 + 17.16 +DEPENDS="gtk+ samba" 17.17 +BUILD_DEPENDS="gtk+-dev" 17.18 + 17.19 + 17.20 +# Rules to configure and make the package. 17.21 +compile_rules() 17.22 +{ 17.23 + cd $src 17.24 + ./configure --prefix=/usr \ 17.25 + --sysconfdir=/etc \ 17.26 + --localstatedir=/var \ 17.27 + --mandir=/usr/share/man \ 17.28 + $CONFIGURE_ARGS && 17.29 + make && 17.30 + make DESTDIR=$DESTDIR install 17.31 +} 17.32 + 17.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 17.34 +genpkg_rules() 17.35 +{ 17.36 + mkdir -p $fs/usr/share/applications 17.37 + cp -a $install/etc $fs 17.38 + cp -a $install/var $fs 17.39 + cp -a $install/usr/sbin $fs/usr 17.40 + cp -a $install/usr/share/pixmaps $fs/usr/share 17.41 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 17.42 +}
18.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 18.2 +++ b/gadmin-samba/stuff/gadmin-samba.desktop Sat Jun 29 11:15:25 2013 +0200 18.3 @@ -0,0 +1,9 @@ 18.4 +[Desktop Entry] 18.5 +Encoding=UTF-8 18.6 +Name=GAdmin-samba 18.7 +Comment=SAMBA server administration 18.8 +Exec=subox /usr/sbin/gadmin-samba 18.9 +Icon=gadmin-samba 18.10 +Terminal=false 18.11 +Type=Application 18.12 +Categories=GTK;System;
19.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 19.2 +++ b/gadmin-sendmail/receipt Sat Jun 29 11:15:25 2013 +0200 19.3 @@ -0,0 +1,38 @@ 19.4 +# SliTaz package receipt. 19.5 + 19.6 +PACKAGE="gadmin-sendmail" 19.7 +VERSION="0.0.4" 19.8 +CATEGORY="x-window" 19.9 +SHORT_DESC="GTK+ configuration tool for SAMBA." 19.10 +MAINTAINER="pascal.bellard@slitaz.org" 19.11 +LICENSE="GPL" 19.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 19.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 19.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 19.15 + 19.16 +DEPENDS="gtk+ sendmail" 19.17 +BUILD_DEPENDS="gtk+-dev" 19.18 + 19.19 + 19.20 +# Rules to configure and make the package. 19.21 +compile_rules() 19.22 +{ 19.23 + cd $src 19.24 + ./configure --prefix=/usr \ 19.25 + --sysconfdir=/etc \ 19.26 + --localstatedir=/var \ 19.27 + --mandir=/usr/share/man \ 19.28 + $CONFIGURE_ARGS && 19.29 + make && 19.30 + make DESTDIR=$DESTDIR install 19.31 +} 19.32 + 19.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 19.34 +genpkg_rules() 19.35 +{ 19.36 + mkdir -p $fs/usr/share/applications 19.37 + cp -a $install/etc $fs 19.38 + cp -a $install/usr/sbin $fs/usr 19.39 + cp -a $install/usr/share/pixmaps $fs/usr/share 19.40 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 19.41 +}
20.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 20.2 +++ b/gadmin-sendmail/stuff/gadmin-sendmail.desktop Sat Jun 29 11:15:25 2013 +0200 20.3 @@ -0,0 +1,9 @@ 20.4 +[Desktop Entry] 20.5 +Encoding=UTF-8 20.6 +Name=GAdmin-sendmail 20.7 +Comment=Mail server administration 20.8 +Exec=subox /usr/sbin/gadmin-sendmail 20.9 +Icon=gadmin-sendmail 20.10 +Terminal=false 20.11 +Type=Application 20.12 +Categories=GTK;System;
21.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 21.2 +++ b/gadmin-squid/receipt Sat Jun 29 11:15:25 2013 +0200 21.3 @@ -0,0 +1,38 @@ 21.4 +# SliTaz package receipt. 21.5 + 21.6 +PACKAGE="gadmin-squid" 21.7 +VERSION="0.1.4" 21.8 +CATEGORY="x-window" 21.9 +SHORT_DESC="GTK+ configuration tool for SAMBA." 21.10 +MAINTAINER="pascal.bellard@slitaz.org" 21.11 +LICENSE="GPL" 21.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 21.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 21.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 21.15 + 21.16 +DEPENDS="gtk+ squid" 21.17 +BUILD_DEPENDS="gtk+-dev" 21.18 + 21.19 + 21.20 +# Rules to configure and make the package. 21.21 +compile_rules() 21.22 +{ 21.23 + cd $src 21.24 + ./configure --prefix=/usr \ 21.25 + --sysconfdir=/etc \ 21.26 + --localstatedir=/var \ 21.27 + --mandir=/usr/share/man \ 21.28 + $CONFIGURE_ARGS && 21.29 + make && 21.30 + make DESTDIR=$DESTDIR install 21.31 +} 21.32 + 21.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 21.34 +genpkg_rules() 21.35 +{ 21.36 + mkdir -p $fs/usr/share/applications 21.37 + cp -a $install/etc $fs 21.38 + cp -a $install/usr/sbin $fs/usr 21.39 + cp -a $install/usr/share/pixmaps $fs/usr/share 21.40 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 21.41 +}
22.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 22.2 +++ b/gadmin-squid/stuff/gadmin-squid.desktop Sat Jun 29 11:15:25 2013 +0200 22.3 @@ -0,0 +1,9 @@ 22.4 +[Desktop Entry] 22.5 +Encoding=UTF-8 22.6 +Name=GAdmin-squid 22.7 +Comment=SQUID server administration 22.8 +Exec=subox /usr/sbin/gadmin-squid 22.9 +Icon=gadmin-squid 22.10 +Terminal=false 22.11 +Type=Application 22.12 +Categories=GTK;System;
23.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 23.2 +++ b/gadmin-sshd/receipt Sat Jun 29 11:15:25 2013 +0200 23.3 @@ -0,0 +1,38 @@ 23.4 +# SliTaz package receipt. 23.5 + 23.6 +PACKAGE="gadmin-sshd" 23.7 +VERSION="0.0.2" 23.8 +CATEGORY="x-window" 23.9 +SHORT_DESC="GTK+ configuration tool for SSH." 23.10 +MAINTAINER="pascal.bellard@slitaz.org" 23.11 +LICENSE="GPL" 23.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 23.13 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 23.14 +WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL" 23.15 + 23.16 +DEPENDS="gtk+ openssh" 23.17 +BUILD_DEPENDS="gtk+-dev" 23.18 + 23.19 + 23.20 +# Rules to configure and make the package. 23.21 +compile_rules() 23.22 +{ 23.23 + cd $src 23.24 + ./configure --prefix=/usr \ 23.25 + --sysconfdir=/etc \ 23.26 + --localstatedir=/var \ 23.27 + --mandir=/usr/share/man \ 23.28 + $CONFIGURE_ARGS && 23.29 + make && 23.30 + make DESTDIR=$DESTDIR install 23.31 +} 23.32 + 23.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 23.34 +genpkg_rules() 23.35 +{ 23.36 + mkdir -p $fs/usr/share/applications 23.37 + cp -a $install/etc $fs 23.38 + cp -a $install/usr/sbin $fs/usr 23.39 + cp -a $install/usr/share/pixmaps $fs/usr/share 23.40 + cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications 23.41 +}
24.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 24.2 +++ b/gadmin-sshd/stuff/gadmin-sshd.desktop Sat Jun 29 11:15:25 2013 +0200 24.3 @@ -0,0 +1,9 @@ 24.4 +[Desktop Entry] 24.5 +Encoding=UTF-8 24.6 +Name=GAdmin-sshd 24.7 +Comment=SSH server administration 24.8 +Exec=subox /usr/sbin/gadmin-sshd 24.9 +Icon=gadmin-sshd 24.10 +Terminal=false 24.11 +Type=Application 24.12 +Categories=GTK;System;
25.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 25.2 +++ b/gadmintools/receipt Sat Jun 29 11:15:25 2013 +0200 25.3 @@ -0,0 +1,14 @@ 25.4 +# SliTaz package receipt. 25.5 + 25.6 +PACKAGE="gadmintools" 25.7 +VERSION="1.0" 25.8 +CATEGORY="meta" 25.9 +SHORT_DESC="GTK+ configuration tools." 25.10 +MAINTAINER="pascal.bellard@slitaz.org" 25.11 +LICENSE="GPL" 25.12 +WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/" 25.13 + 25.14 +DEPENDS="gadmin-bind gadmin-openvpn-client gadmin-openvpn-server \ 25.15 +gadmin-rsync gadmin-samba gadmin-squid gadmin-dhcpd gadmin-sshd gadmin-httpd \ 25.16 +gadmin-antivirus" 25.17 +SUGGESTED="gadmin-proftpd gadmin-sendmail"