Page 1 of 1

[REPO] Picasa 3.0

Posted: 10. Sep 2009, 16:42
by maximus

Re: Picasa 3.0

Posted: 10. Sep 2009, 21:23
by gapan
The etc/gconf/schemas/picasa.schemas file should not be .new. You'd better add 'noautodotnew' in your options.

Also, since there are gconf schemas involved, you should do the gconf schema dance!

Code: Select all

        # gconf stuff
        export GCONF_CONFIG_SOURCE="xml::$startdir/pkg/etc/gconf/gconf.xml.defaults"
        if [ -d $startdir/pkg/etc/gconf/schemas ]; then
            install -v -d -m755 $startdir/pkg/etc/gconf/gconf.xml.defaults
            SCHEMAS=$startdir/pkg/etc/gconf/schemas
            for schema in $SCHEMAS/*.schemas; do
                gconftool-2 --makefile-install-rule $schema
            done
            # Reset / Verify correct permissions
            ( cd $startdir/pkg/etc/gconf ; find . -type d -exec chmod 755 {} \; )
            ( cd $startdir/pkg/etc/gconf ; find . -type f -exec chmod 644 {} \; )
        fi

Re: Picasa 3.0

Posted: 11. Sep 2009, 00:46
by maximus
Package updated, I think rsync is going to make life a lot easier!

Re: Picasa 3.0

Posted: 11. Sep 2009, 09:35
by gapan
The

Code: Select all

ln -s /usr/share/picasa-3.0/bin/picasa /usr/bin/picasa
ln -s /usr/share/picasa-3.0/bin/picasafontcfg /usr/bin/picasafontcfg
ln -s /usr/share/picasa-3.0/lib/npPicasa3.so /usr/lib/mozilla/plugins/npPicasa3.so
part uses direct paths which is not allowed. And you'd better do that in build, doinst will pick it up.

Re: Picasa 3.0

Posted: 11. Sep 2009, 16:52
by maximus
OK - I think I figured it out. Package updated.