public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] Help on f-spot-0.8 problem
@ 2010-10-01 18:14 Pacho Ramos
  2010-10-02 17:36 ` Peter Volkov
  0 siblings, 1 reply; 3+ messages in thread
From: Pacho Ramos @ 2010-10-01 18:14 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 2247 bytes --]

Hello

Since Calchan doesn't have much time for f-spot and dotnet team is 
conformed basically by me, I would welcome any help for trying to
bump f-spot to its 0.8 version. The problem is that eautoreconf doesn't
run, even running "autoreconf" on unpacked upstream sources fails with
the following error:
$ autoreconf
/usr/share/aclocal/sigc++.m4:8: warning: underquoted definition of
AM_PATH_SIGC
/usr/share/aclocal/sigc++.m4:8:   run info '(automake)Extending aclocal'
/usr/share/aclocal/sigc++.m4:8:   or see
http://sources.redhat.com/automake/automake.html#Extending-aclocal
help/Makefile.am:1: HAVE_GNOME_DOC_UTILS does not appear in
AM_CONDITIONAL
gnome-doc-utils.make:63: HAVE_GNOME_DOC_UTILS does not appear in
AM_CONDITIONAL
help/Makefile.am:2:   `gnome-doc-utils.make' included from here
gnome-doc-utils.make:143: ENABLE_SK does not appear in AM_CONDITIONAL
help/Makefile.am:2:   `gnome-doc-utils.make' included from here
gnome-doc-utils.make:192: ENABLE_SK does not appear in AM_CONDITIONAL
help/Makefile.am:2:   `gnome-doc-utils.make' included from here
build/build.rules.mk:32: ENABLE_TESTS does not appear in AM_CONDITIONAL
lib/Hyena/Hyena.Data.Sqlite/Makefile.am:29:   `build/build.mk' included
from
here
build/build.mk:2:   `build/build.rules.mk' included from here
build/build.rules.mk:37: ENABLE_ATK does not appear in AM_CONDITIONAL
lib/Hyena/Hyena.Data.Sqlite/Makefile.am:29:   `build/build.mk' included
from
here
build/build.mk:2:   `build/build.rules.mk' included from here
build/build.rules.mk:32: ENABLE_TESTS does not appear in AM_CONDITIONAL
lib/Hyena/Hyena.Gui/Makefile.am:121:   `build/build.mk' included from
here
build/build.mk:2:   `build/build.rules.mk' included from here
build/build.rules.mk:37: ENABLE_ATK does not appear in AM_CONDITIONAL
lib/Hyena/Hyena.Gui/Makefile.am:121:   `build/build.mk' included from
here
build/build.mk:2:   `build/build.rules.mk' included from here
...

I have already installed app-text/gnome-doc-utils-0.20.1, I have also 
verified /usr/share/gnome-doc-utils/gnome-doc-utils.make is the same as
f-spot provided one, and that sources doesn't seem to be shipping any 
gnome-doc-utils.m4 file

Thanks a lot for your help and ideas :-)


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [gentoo-dev] Help on f-spot-0.8 problem
  2010-10-01 18:14 [gentoo-dev] Help on f-spot-0.8 problem Pacho Ramos
@ 2010-10-02 17:36 ` Peter Volkov
  2010-10-02 21:58   ` Pacho Ramos
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Volkov @ 2010-10-02 17:36 UTC (permalink / raw
  To: gentoo-dev

Hi, Pacho.

В Птн, 01/10/2010 в 20:14 +0200, Pacho Ramos пишет:
> Since Calchan doesn't have much time for f-spot and dotnet team is 
> conformed basically by me, I would welcome any help for trying to
> bump f-spot to its 0.8 version. The problem is that eautoreconf doesn't
> run, even running "autoreconf" on unpacked upstream sources fails with
> the following error:
> $ autoreconf
> /usr/share/aclocal/sigc++.m4:8: warning: underquoted definition of
> AM_PATH_SIGC
> /usr/share/aclocal/sigc++.m4:8:   run info '(automake)Extending aclocal'
> /usr/share/aclocal/sigc++.m4:8:   or see
> http://sources.redhat.com/automake/automake.html#Extending-aclocal
> help/Makefile.am:1: HAVE_GNOME_DOC_UTILS does not appear in
> AM_CONDITIONAL

$ cd f-spot-0.8.0
$ grep -r HAVE_GNOME_DOC_UTILS . | grep m4

will help you to see that this conditional is defined
in  ./build/m4/shamrock/gnome-doc.m4.

> build/build.rules.mk:37: ENABLE_ATK does not appear in AM_CONDITIONAL

this on is defined in ./build/m4/f-spot/gtk-sharp.m4. This problem can
be fixed with correct include pathes:

autoreconf -f -I build/m4/shamrock/ -I build/m4/f-spot/

thus I think

AT_M4DIR="-I build/m4/shamrock/ -I build/m4/f-spot/" eautoreconf

should work.

> I have already installed app-text/gnome-doc-utils-0.20.1, I have also 
> verified /usr/share/gnome-doc-utils/gnome-doc-utils.make is the same as
> f-spot provided one, and that sources doesn't seem to be shipping any 
> gnome-doc-utils.m4 file
> 
> Thanks a lot for your help and ideas :-)

Thank you for taking care about this package! I really appreciate f-spot
version bump :)

-- 
Peter.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [gentoo-dev] Help on f-spot-0.8 problem
  2010-10-02 17:36 ` Peter Volkov
@ 2010-10-02 21:58   ` Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2010-10-02 21:58 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 1937 bytes --]

El sáb, 02-10-2010 a las 21:36 +0400, Peter Volkov escribió:
> Hi, Pacho.
> 
> В Птн, 01/10/2010 в 20:14 +0200, Pacho Ramos пишет:
> > Since Calchan doesn't have much time for f-spot and dotnet team is 
> > conformed basically by me, I would welcome any help for trying to
> > bump f-spot to its 0.8 version. The problem is that eautoreconf doesn't
> > run, even running "autoreconf" on unpacked upstream sources fails with
> > the following error:
> > $ autoreconf
> > /usr/share/aclocal/sigc++.m4:8: warning: underquoted definition of
> > AM_PATH_SIGC
> > /usr/share/aclocal/sigc++.m4:8:   run info '(automake)Extending aclocal'
> > /usr/share/aclocal/sigc++.m4:8:   or see
> > http://sources.redhat.com/automake/automake.html#Extending-aclocal
> > help/Makefile.am:1: HAVE_GNOME_DOC_UTILS does not appear in
> > AM_CONDITIONAL
> 
> $ cd f-spot-0.8.0
> $ grep -r HAVE_GNOME_DOC_UTILS . | grep m4
> 
> will help you to see that this conditional is defined
> in  ./build/m4/shamrock/gnome-doc.m4.
> 
> > build/build.rules.mk:37: ENABLE_ATK does not appear in AM_CONDITIONAL
> 
> this on is defined in ./build/m4/f-spot/gtk-sharp.m4. This problem can
> be fixed with correct include pathes:
> 
> autoreconf -f -I build/m4/shamrock/ -I build/m4/f-spot/
> 
> thus I think
> 
> AT_M4DIR="-I build/m4/shamrock/ -I build/m4/f-spot/" eautoreconf
> 
> should work.
> 
> > I have already installed app-text/gnome-doc-utils-0.20.1, I have also 
> > verified /usr/share/gnome-doc-utils/gnome-doc-utils.make is the same as
> > f-spot provided one, and that sources doesn't seem to be shipping any 
> > gnome-doc-utils.m4 file
> > 
> > Thanks a lot for your help and ideas :-)
> 
> Thank you for taking care about this package! I really appreciate f-spot
> version bump :)
> 

Thanks :-) I already bumped it following Samuli's suggestions for
running eautoreconf properly

Best regards

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-10-02 21:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 18:14 [gentoo-dev] Help on f-spot-0.8 problem Pacho Ramos
2010-10-02 17:36 ` Peter Volkov
2010-10-02 21:58   ` Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox