You are not logged in.
Hi
I builded and installed OpenOffice package (polish version) with this PKGBUILD file:
pkgname=openoffice2-uxpl
pkgver=2.0.1
_uxver=2.0.1-1
pkgrel=1
pkgdesc="Polish version of OpenOffice.org prepared and improved by ux.pl"
url="http://www.ux.pl"
depends=('x-server' 'libart-lgpl' 'j2re')
makedepends=('gzip' 'cpio' 'rpmunpack')
source=(ftp://sunsite.icm.edu.pl/packages/OpenOffice/ux/OOo-${_uxver}-rpm-linux-ux.pl.tar.bz2)
md5sums=('35a16e6f63d7fb33cf01d829b7376e3e')
build() {
    cd $startdir/src/RPMS
    for rpmfile in *.rpm
    do
        rpmunpack $rpmfile
        rm -f $rpmfile
    done
    for gzfile in *.gz
    do
        gzip -d $gzfile
    done
    for cpiofile in *.cpio
    do
        cpio -id < $cpiofile
        rm $cpiofile
    done
    mv opt $startdir/pkg
} the software has installed, but i don't have access to it since /opt/ is now blocked for user account. KDE doesn't start either... what is the problem? :cry:
Offline

Probably the permissions of /opt were messed up. As root:
# chmod 755  /opt
should fix it.
Adding:
chmod 755  $startdir/pkg/opt
at the end of PKGBUILD will probably fix it.
Offline
that was it, thank you very much
Offline