I'm on a different system (ubuntu), but I used the yorba gexiv2 and the dev exiv2 in addition to the yorba shotwell, which means my system package manager doesn't need to worry about too much. Maybe it's worth trying that instead of using all system packages?
-Joe

Here's the script that keeps my shotwell (and dependencies) current:

#!/bin/bash
update-alternatives --set valac /usr/bin/valac-0.18
export valac=/usr/bin/valac-0.18
mkdir -p /root/shotwell
cd /root/shotwell

# first do exiv2
mkdir -p exiv2 && cd exiv2
svn checkout svn://dev.exiv2.org/svn/trunk > /dev/null
svn update > /dev/null
cd trunk
./bootstrap.linux > /dev/null
cd build
cmake .. > /dev/null || exit
make -j 9 > /dev/null || exit
make -j 9 install > /dev/null || exit
cd /root/shotwell

# then do gexiv
cd gexiv2 || git clone git://git.yorba.org/gexiv2
git pull > /dev/null
cd /root/shotwell/gexiv2
./configure > /dev/null || exit
make -j 9  || exit
make -j 9 install  || exit
cd /root/shotwell

# then do shotwell
cd shotwell || git clone git://yorba.org/shotwell && cd shotwell
cd /root/shotwell/shotwell
git pull > /dev/null
./configure /dev/null || exit
make -j 9 >/dev/null || exit
make -j 9 install  || exit


On 03/25/2013 12:17 PM, Dougie Nisbet wrote:
On 25 March 2013 15:14, Rolf Steinort <[email protected]> wrote:
On 25.03.2013 08:45, Dougie Nisbet wrote:
     deb http:///ftp.uk.debian.org/debian/  experimental main

to my sources.list and trying to manually install some of the dependencies
from:

http://packages.debian.org/experimental/amd64/shotwell/download

but the results look similar.

Interestingly I've not gone from running 0.13.1 to 0.12.3 (the default
version for Wheezy) and not missing anything essential yet.

I installed 0.14 from experimental, it's there already compiled.
http://packages.debian.org/experimental/gnome/shotwell

um, yes it was the experimental package I tried, except that it was
the 64 bit version. Could try the 32bit I guess but doubt it'd make
any difference. Are you on Debian Testing?

Dougie
_______________________________________________
Shotwell mailing list
[email protected]
http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell

_______________________________________________
Shotwell mailing list
[email protected]
http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell

Reply via email to