Index: dist/common/check_dependenties.pl
===================================================================
--- dist/common/check_dependenties.pl	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/check_dependenties.pl	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,15 @@
+
+while(<STDIN>) {
+	chomp;
+	$app = $_;
+	$path = `which $app 2>/dev/null`;
+	$err = $?;
+	print $app.": ";
+	if($err != 0) {
+		print "failed ($err)\n";
+	}
+	else {
+		print $path;
+	}
+}
+
Index: dist/common/description.def
===================================================================
--- dist/common/description.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/description.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,1 @@
+I put here some description.
Index: dist/common/description.pl.def
===================================================================
--- dist/common/description.pl.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/description.pl.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,1 @@
+Tu umieszczÄ opis po polsku.
Index: dist/common/find_perl_deps.pl
===================================================================
--- dist/common/find_perl_deps.pl	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/find_perl_deps.pl	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,29 @@
+
+
+while(<STDIN>) {
+	chomp;
+    # najpierw nazwa pliku zrodlowego out
+    if($_ =~ /^[^:]*\:\s*(.*)$/) {
+	my $line = $1;
+#	print "TEXT: $line\n";
+	# teraz tylko samo polecenie
+	if($line =~ /\`\s*(.+)\s*\`/) {
+	    my $cmd = $1;
+#	    print "CMD: $cmd\n";
+	    # teraz splitujemy potoki
+	    my @progs = split(/\s*\|\s*/, $cmd);
+	    foreach (@progs) {
+#		print "$_\n";
+		# ucinamy agrumenty programu
+		# oraz linie, zawierajace nie-programy (--replace, $tmpfile_x, /g, \\, itp.)
+		if($_ =~ /^([^\$\\\/\s\']+)(\s.*)?$/) {
+		    my $app = $1;
+#		    print "APP: $app\n";
+#		    my $res = `which $app`;
+#		    print "WYNIK: $res\n";
+		    print "$app\n";
+		}
+	    } # foreach
+	}
+    }
+}
Index: dist/common/find_rpm_deps.sh
===================================================================
--- dist/common/find_rpm_deps.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/find_rpm_deps.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# sprawdzamy czy podano argument
+if test $# -lt 1; then echo RPM file name expected!; exit -1; fi
+
+# sprawdzamy czy to plik, potem, czy rpm
+if test -f $1; \
+then 
+    if test "rpm" = `ls $1 | tail -c 4`; \
+    then
+        rpm -q -R -p $1; \
+    else echo "It's not a RPM file!"; \
+    fi
+else echo RPM file not found!; \
+fi
+
Index: dist/common/make_deps.sh
===================================================================
--- dist/common/make_deps.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/make_deps.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+grep -r -e "\`" ../../src | grep -v -e "\.svn\/" | perl find_perl_deps.pl | sort | uniq > dep_list.txt
Index: dist/common/prepare_conf.sh
===================================================================
--- dist/common/prepare_conf.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/prepare_conf.sh	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+if test 3 -ne $#
+then
+	echo "Usage: " `basename $0` src_conf_dir dest_conf_dir replacement
+else
+	POLEC="s/PATH_PREFIX/$3/g"
+
+	for FN in `ls $1/*.conf`
+	do
+	    BN=`basename ${FN}`
+	    sed ${POLEC} ${FN} > $2/${BN}
+	done
+fi
Index: dist/common/release.def
===================================================================
--- dist/common/release.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/release.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,1 @@
+2
Index: dist/common/version.def
===================================================================
--- dist/common/version.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ dist/common/version.def	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
@@ -0,0 +1,1 @@
+0.9
