buknoy
>
http://sme.braunstein.de/update/smeplus.shUsing that script will most likely cause you upgrade problems later when new OS is released. You now have a very non standard box and it's causing you problems already.
> # rpm -Uvh zlib-1.2.2-1.i386.rpm
> error: failed dependencies:
> zlib = 1.2.1.1 is needed by zlib-devel-.2.1.1-4
Use rpm -Uvh as preference, it will update or install as required.
That's saying that zlib-devel-.2.1.1-4 needs zlib-1.2.1.1
You are trying to instal a newer zlib-1.2.2-1 which then creates dependency issues with zlib-devel.2.1.1-4
At a guess you need to update zlib-devel to a compatible version or use --force or --nodeps (which is not always a good thing to do as you may upset something else).
You could try
rpm -Uvh --nodeps rpm -Uvh zlib-1.2.2-1.i386.rpm
but don't blame me if it creates other issues.