[REPO] Picasa 3.0

Old stuff that should not bother anyone anymore
Locked
User avatar
gapan
Salix Wizard
Posts: 6236
Joined: 6. Jun 2009, 17:40

Re: Picasa 3.0

Post 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
Image
Image
User avatar
maximus
Posts: 141
Joined: 2. Sep 2009, 01:41

Re: Picasa 3.0

Post by maximus »

Package updated, I think rsync is going to make life a lot easier!
User avatar
gapan
Salix Wizard
Posts: 6236
Joined: 6. Jun 2009, 17:40

Re: Picasa 3.0

Post 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.
Image
Image
User avatar
maximus
Posts: 141
Joined: 2. Sep 2009, 01:41

Re: Picasa 3.0

Post by maximus »

OK - I think I figured it out. Package updated.
Locked