"SET default_with_oids = true;" muß nicht mehr in der postgresql.conf geändert werden.
[kivitendo-erp.git] / DEBIAN / mk_erp_deb.sh
index 306edd7..d656752 100755 (executable)
@@ -1,19 +1,36 @@
 #!/bin/bash
-VER="2.6.1"
+
 #Jedes neue Paket der gleichen Version bekommt eine eigene Nummer
 NR="0"
 
 #hier wurde das Git-Paket entpakt:
 SRC=/tmp/lx-office-erp
+
 #hier wird das Debian-Paket gebaut:
-DEST=/tmp/lx-office/lx-office-erp_$VER-$NR-all
+DST=/tmp/package
+
+
+################################################
+# ab hier keine Konfiguration mehr
+################################################
+
+VER=`cat VERSION`
+DEST=$DST/lx-office-erp_$VER-$NR$1-all
+
 
 mkdir -p $DEST
 cd $DEST
 
 #Struktur anlegen:
-cp -a $SRC/DEBIAN/* .
-rm ./mk*.sh
+cp -a $SRC/DEBIAN/DEBIAN .
+tar xzf $SRC/DEBIAN/struktur.tgz
+
+#Für Hardy + co Sonderbehandlung
+if [ "$1#" == "-older#" ]; then
+    mv DEBIAN/control.older DEBIAN/control
+else
+    rm DEBIAN/control.older
+fi
 
 #Dateien kopieren:
 #aber keine fertigen Konfigurationen, nur *.default
@@ -29,8 +46,7 @@ cp -a $SRC/t usr/lib/lx-office-erp
 cp -a $SRC/*.pl usr/lib/lx-office-erp
 cp $SRC/VERSION usr/lib/lx-office-erp
 cp $SRC/index.html usr/lib/lx-office-erp
-cp $SRC/config/lx-erp.conf  etc/lx-office-erp/lx-erp.conf.default
-cp $SRC/config/authentication.pl.default etc/lx-office-erp/
+cp $SRC/config/lx_office.conf.default etc/lx-office-erp/lx_office.conf.default
 cp $SRC/menu.ini usr/lib/lx-office-erp/menu.default
 cp -a $SRC/css var/lib/lx-office-erp
 cp -a $SRC/templates var/lib/lx-office-erp
@@ -40,6 +56,11 @@ cp -a $SRC/xslt var/lib/lx-office-erp
 cp -a $SRC/doc/* usr/share/doc/lx-office-erp/
 cp -a $SRC/image/* usr/share/lx-office-erp/
 
+#Ist nicht im Repository. Liegt bei sf
+if [ "$1#" == "-older#" ]; then
+    tar xzf $SRC/DEBIAN/lx-erp-perl-libs-compat-v2.tar.gz
+fi
+
 #Git- und dummy-files löschen
 find . -name ".git*" -exec rm -rf {} \;
 find . -name ".dummy" -exec rm -rf {} \;
@@ -66,6 +87,6 @@ mv DEBIAN/1.tmp DEBIAN/control
 
 #Paket bauen:
 cd ..
-dpkg-deb --build lx-office-erp_$VER-$NR-all
+dpkg-deb --build lx-office-erp_$VER-$NR$1-all
 
 echo "Done"