View previous topic :: View next topic |
Author |
Message |
UberPinguin Guru
Joined: 20 Nov 2005 Posts: 510 Location: 2416.94 Miles From Home
|
Posted: Sun Dec 03, 2006 10:12 pm Post subject: |
|
|
To everyone suffering from broken e_modules:
This thread deals with some updates in automake and how to fix sources to work with them. Basically, it involves running 'gettextize' from the source directory, which will create the elusive config.rpath file. At completion, a few paragraphs of additional instructions are echoed gettextize wrote: | Please create po/Makevars from the template in po/Makevars.template.
You can then remove po/Makevars.template.
Please fill po/POTFILES.in as described in the documentation.
Please run 'aclocal -I m4' to regenerate the aclocal.m4 file.
You need aclocal from GNU automake 1.5 (or newer) to do this.
Then run 'autoconf' to regenerate the configure file.
You might also want to copy the convenience header file gettext.h
from the /usr/share/gettext directory into your package.
It is a wrapper around <libintl.h> that implements the configure --disable-nls
option.
Press Return to acknowledge the previous four paragraphs. | I didn't mess with Makevars or POTFILES, but after running 'aclocal -I m4' I was able to run autogen.sh on tclock without erroring out. If anyone here has a more intimate familiarity with EFL programming and would like to take a look to see if configuring those two files is really necessary I think we could get most of the modules back on-line.
I will also post this info on edevelop.org. _________________
aidanjt wrote: | You see, instead of arguing from ignorance, and fear, there is only one way to verify a theory. And that's not by clutching a black book and begging the sky fairy for deliverance from the mad scientists and their big machines. |
|
|
Back to top |
|
|
ppurka Advocate
Joined: 26 Dec 2004 Posts: 3256
|
Posted: Sun Dec 03, 2006 11:29 pm Post subject: |
|
|
Am I missing something? These modules have been working for me since a long time ago.
Modules I have installed: screenshot1 screenshot2 |
|
Back to top |
|
|
UberPinguin Guru
Joined: 20 Nov 2005 Posts: 510 Location: 2416.94 Miles From Home
|
Posted: Sun Dec 03, 2006 11:30 pm Post subject: |
|
|
What versions of automake and automake-wrapper are you running? _________________
aidanjt wrote: | You see, instead of arguing from ignorance, and fear, there is only one way to verify a theory. And that's not by clutching a black book and begging the sky fairy for deliverance from the mad scientists and their big machines. |
|
|
Back to top |
|
|
ppurka Advocate
Joined: 26 Dec 2004 Posts: 3256
|
Posted: Mon Dec 04, 2006 5:09 am Post subject: |
|
|
Code: | ~> eix automake
[I] sys-devel/automake
Available versions:
(1.4) 1.4_p6
(1.5) 1.5
(1.6) 1.6.3
(1.7) 1.7.9-r1
(1.8) 1.8.5-r3
(1.9) 1.9.6-r2
(1.10) ~1.10
Installed: 1.4_p6(1.4)(05:10:11 PM 09/03/2006) 1.5(1.5)(05:10:20 PM 09/03/2006) 1.6.3(1.6)(05:09:58 PM 09/03/2006) 1.7.9-r1(1.7)(05:10:05 PM 09/03/2006) 1.8.5-r3(1.8)(05:09:42 PM 09/03/2006) 1.9.6-r2(1.9)(05:09:50 PM 09/03/2006)
Homepage: http://sources.redhat.com/automake/
Description: Used to generate Makefile.in from Makefile.am
[I] sys-devel/automake-wrapper
Available versions: 1-r1 2-r1 ~3-r1
Installed: 2-r1(03:18:28 PM 11/11/2006)
Homepage: http://www.gentoo.org/
Description: wrapper for automake to manage multiple automake versions
Found 2 matches.
|
|
|
Back to top |
|
|
UberPinguin Guru
Joined: 20 Nov 2005 Posts: 510 Location: 2416.94 Miles From Home
|
Posted: Mon Dec 04, 2006 5:36 am Post subject: |
|
|
Hmmm.. I've got automake 1.10, 1.9.6-r2, 1.8.5-r3 1.7.9-r1, 1.6.3, 1.5, 1.4_p6
automake-wrapper-3-r1
autoconf-2.61
autoconf-wrapper-4-r3
m4-1.4.8 USE="nls" But most of the modules return Code: | Running automake...
configure.in:25: required file `./config.rpath' not found
configure.in:10: installing `./missing'
configure.in:10: installing `./install-sh'
po/Makefile.am:6: addsuffix .mo,$(ALL_LINGUAS: non-POSIX variable name
po/Makefile.am:6: (probably a GNU make extension)
po/Makefile.am:8: addsuffix .po,$(ALL_LINGUAS: non-POSIX variable name
po/Makefile.am:8: (probably a GNU make extension)
po/Makefile.am:10: `%'-style pattern rules are a GNU make extension
Makefile.am:37: `%'-style pattern rules are a GNU make extension
Makefile.am: installing `./depcomp' |
This specific error is addressed in the above-mentioned thread, and has popped up on this topic several times. The general response is 'downgrade your automake/automake-wrapper,' but I think this is a remarkably short-sighted workaround.
I tried patching in the changes created by running 'gettextize -f' and following the subsequent instructions, but it broke winselector and possibly others On the plus side, it got tclock to compile
I guess I just need to spend some more time debugging and double-checking. If anyone who can reproduce this problem wants to divide the labor, I'd appreciate some assistance.
EDIT: Apparently I stand corrected. From edevlop.org:
dj2 wrote: | There are no current plans to support automake 1.10. If you want to run autogen, then downgrade your automake. We don't track every auto* change as they make incompatble changes with pretty much every release.
Use the version the developers specify if you want it to work. |
Perhaps downgrading is a valid solution _________________
aidanjt wrote: | You see, instead of arguing from ignorance, and fear, there is only one way to verify a theory. And that's not by clutching a black book and begging the sky fairy for deliverance from the mad scientists and their big machines. |
|
|
Back to top |
|
|
ppurka Advocate
Joined: 26 Dec 2004 Posts: 3256
|
Posted: Mon Dec 04, 2006 3:48 pm Post subject: |
|
|
I wonder why you have 1.10 installed. It is masked as testing apparently for some reason |
|
Back to top |
|
|
UberPinguin Guru
Joined: 20 Nov 2005 Posts: 510 Location: 2416.94 Miles From Home
|
Posted: Mon Dec 04, 2006 3:50 pm Post subject: |
|
|
Silly ~x86 keyword. _________________
aidanjt wrote: | You see, instead of arguing from ignorance, and fear, there is only one way to verify a theory. And that's not by clutching a black book and begging the sky fairy for deliverance from the mad scientists and their big machines. |
|
|
Back to top |
|
|
mwplinux n00b
Joined: 25 Feb 2004 Posts: 39 Location: Copenhagen, Denmark
|
Posted: Mon Dec 04, 2006 6:27 pm Post subject: |
|
|
I've made a fresh install of gentoo and e17, and suddenly I can't get any locales. The messages I get from e17 is:
Code: | The translation files for the locale you
have chosen (da_DK.UTF-8) can not be found in your
'messages' path. |
When I run enlightenment_remote -lang-list there are no locales:
Code: | mwp1 ~ # enlightenment_remote -lang-list
REPLY <- BEGIN
REPLY <- END |
Can anyone tell me what I have done wrong, plz? _________________ From the John F. Kennedy Moon Speech:
We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard. |
|
Back to top |
|
|
lateralus__ Tux's lil' helper
Joined: 19 May 2006 Posts: 100 Location: Belgium
|
Posted: Tue Dec 05, 2006 12:14 am Post subject: |
|
|
mwplinux wrote: | I've made a fresh install of gentoo and e17, and suddenly I can't get any locales. The messages I get from e17 is:
Code: | The translation files for the locale you
have chosen (da_DK.UTF-8) can not be found in your
'messages' path. |
When I run enlightenment_remote -lang-list there are no locales:
Code: | mwp1 ~ # enlightenment_remote -lang-list
REPLY <- BEGIN
REPLY <- END |
Can anyone tell me what I have done wrong, plz? |
It seems that a lot of .po's files are broken, including your language
The only solution is to wait until someone (maybe you, who knows) rapair them ... _________________ There are a lot of lies going around.... and half of them are true.
-- Winston Churchill |
|
Back to top |
|
|
Disparu Tux's lil' helper
Joined: 07 Jun 2006 Posts: 149
|
Posted: Tue Dec 05, 2006 3:09 am Post subject: |
|
|
Seems everytime I change my theme Enlightenment crashes to the command line and all it says is
"EEEK using shared already!!"
"Sending term signal to /usr/bin/enlightenment_thumbs"
Last edited by Disparu on Thu Dec 07, 2006 9:24 pm; edited 1 time in total |
|
Back to top |
|
|
samveen n00b
Joined: 05 Dec 2006 Posts: 2
|
Posted: Tue Dec 05, 2006 7:15 am Post subject: |
|
|
another one of the help cries!!!!
e_utils not emerging
Code: | i686-pc-linux-gnu-gcc -O2 -march=pentium4 -pipe -o eap_edit eapp_edit_main.o -L/usr/lib /usr/lib/libewl.so -L/usr/X11R6/lib /usr/lib/libepsilon.so /usr/lib/libImlib2.so /usr/lib/libepeg.so /usr/lib/libedje.so /usr/lib/libembryo.so /usr/lib/libpng12.so /usr/lib/libengrave.so -lfl /usr/lib/libecore_evas.so /usr/lib/libecore_x.so /usr/lib/libecore_job.so /usr/lib/libecore_directfb.so /usr/lib/libdirectfb.so /usr/lib/libfusion.so /usr/lib/libdirect.so /usr/lib/libecore_txt.so /usr/lib/libecore_fb.so /usr/lib/libecore_config.so /usr/lib/libecore_ipc.so /usr/lib/libecore_desktop.so /usr/lib/libecore_file.so /usr/lib/libecore_dbus.so /usr/lib/libecore_con.so /usr/lib/libecore.so -lssl -lcrypto /usr/lib/libXcursor.so /usr/lib/libXp.so /usr/lib/libXinerama.so /usr/lib/libXrandr.so /usr/lib/libXrender.so /usr/lib/libXdamage.so /usr/lib/libXfixes.so /usr/lib/libXss.so /usr/lib/libX11.so /usr/lib/libXext.so /usr/lib/libXau.so /usr/lib/libXdmcp.so /usr/lib/libevas.so -lpthread -ldl /usr/lib/libeet.so /usr/lib/libjpeg.so /usr/lib/libfontconfig.so /usr/lib/libfreetype.so -lz /usr/lib/libexpat.so -lm
eapp_edit_main.o: In function `main':
eapp_edit_main.c:(.text+0xb5d): undefined reference to `ewl_button_stock_type_set'
eapp_edit_main.c:(.text+0xbf6): undefined reference to `ewl_button_stock_type_set'
collect2: ld returned 1 exit status
make[4]: *** [eap_edit] Error 1
make[4]: Leaving directory `/var/tmp/portage/e_utils-9999/work/e17/apps/e_utils/src/bin/eapp_edit'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/var/tmp/portage/e_utils-9999/work/e17/apps/e_utils/src/bin'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/e_utils-9999/work/e17/apps/e_utils/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/e_utils-9999/work/e17/apps/e_utils'
make: *** [all] Error 2
|
an explaination would suffice |
|
Back to top |
|
|
gimpel Advocate
Joined: 15 Oct 2004 Posts: 2720 Location: Munich, Bavaria
|
Posted: Tue Dec 05, 2006 9:30 am Post subject: |
|
|
@ samveen: seems you need to update ewl
@ mwplinux: what does spit out? _________________ http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
|
|
Back to top |
|
|
mwplinux n00b
Joined: 25 Feb 2004 Posts: 39 Location: Copenhagen, Denmark
|
Posted: Tue Dec 05, 2006 10:17 am Post subject: |
|
|
gimpel wrote: | @ mwplinux: what does spit out? |
It gives me:
Code: | # locale
LANG=da_DK.UTF-8
LC_CTYPE="da_DK.UTF-8"
LC_NUMERIC="da_DK.UTF-8"
LC_TIME="da_DK.UTF-8"
LC_COLLATE="da_DK.UTF-8"
LC_MONETARY="da_DK.UTF-8"
LC_MESSAGES="da_DK.UTF-8"
LC_PAPER="da_DK.UTF-8"
LC_NAME="da_DK.UTF-8"
LC_ADDRESS="da_DK.UTF-8"
LC_TELEPHONE="da_DK.UTF-8"
LC_MEASUREMENT="da_DK.UTF-8"
LC_IDENTIFICATION="da_DK.UTF-8"
LC_ALL=da_DK.UTF-8
|
BTW, all gtk apps e.g, uses my locale.
Edit:
Locale -a looks like this:
Code: | # locale -a
C
da_DK
da_DK.utf8
en_US
en_US.utf8
POSIX
|
And env | grep -i LC_:
Code: | # env | grep -i LC_
LC_ALL=da_DK.UTF-8
LC_MESSAGES=da_DK.UTF-8
|
_________________ From the John F. Kennedy Moon Speech:
We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard. |
|
Back to top |
|
|
samveen n00b
Joined: 05 Dec 2006 Posts: 2
|
Posted: Fri Dec 08, 2006 3:07 am Post subject: |
|
|
gimpel wrote: | @ samveen: seems you need to update ewl
|
@gimpel:
seems they had removed a couple of functions from ewl and not updated the e_utils. fixed now. thanks again |
|
Back to top |
|
|
gimpel Advocate
Joined: 15 Oct 2004 Posts: 2720 Location: Munich, Bavaria
|
Posted: Fri Dec 08, 2006 8:48 am Post subject: |
|
|
@ mwplinux: well then it's clearly like lateralus__ said: your locale's .po is out-of-date, same with de_DE here.
@ Disparu That's because the ebuild for e is broken. It simply renames the binary from enlightenment to enlightenment-0.17, but on restart/theme change (which does a restart), E wants to load enlightenment, which is not there, so it exits.
You have to do
Code: | ln -s /usr/bin/enlightenment-0.17 /usr/bin/enlightenment |
Note that this will break coexistance with e16 < e16.8
@ samveen: Ah, OK. _________________ http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
|
|
Back to top |
|
|
Disparu Tux's lil' helper
Joined: 07 Jun 2006 Posts: 149
|
Posted: Fri Dec 08, 2006 1:36 pm Post subject: |
|
|
gimpel wrote: | @ mwplinux: well then it's clearly like lateralus__ said: your locale's .po is out-of-date, same with de_DE here.
@ Disparu That's because the ebuild for e is broken. It simply renames the binary from enlightenment to enlightenment-0.17, but on restart/theme change (which does a restart), E wants to load enlightenment, which is not there, so it exits.
You have to do
Code: | ln -s /usr/bin/enlightenment-0.17 /usr/bin/enlightenment |
Note that this will break coexistance with e16 < e16.8
@ samveen: Ah, OK. |
I <3 you, thanks! |
|
Back to top |
|
|
ppurka Advocate
Joined: 26 Dec 2004 Posts: 3256
|
Posted: Fri Dec 08, 2006 2:57 pm Post subject: |
|
|
Disparu wrote: | I <3 you, thanks! | Watch out, gimpel! |
|
Back to top |
|
|
VanDan Guru
Joined: 30 Sep 2002 Posts: 586 Location: Australia
|
Posted: Sat Dec 09, 2006 12:35 am Post subject: etk and automake |
|
|
I haven't been able to compile etk for quite some time now. Apparently it's a problem with the latest version of automake. I've tried some suggestions I found around the place about specifying an older automake:
Code: | export WANT_AUTOMAKE=1.7
emerge etk |
but I get:
Code: | am-wrapper: warning: invalid WANT_AUTOMAKE 'latest'; ignoring. |
... and then the build fails as in the report a couple of posts above. I would copy and paste, but my damned 3-button emulation seems to have bitten the dust. Anyway, how am I supposed to request automake 1.7? _________________ David Hicks' plea. Was it:
a) I plead guilty, or
b) Please let me out of here and end the torture |
|
Back to top |
|
|
gimpel Advocate
Joined: 15 Oct 2004 Posts: 2720 Location: Munich, Bavaria
|
Posted: Sat Dec 09, 2006 9:01 am Post subject: |
|
|
ppurka wrote: | Disparu wrote: | I <3 you, thanks! | Watch out, gimpel! |
lmao! _________________ http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
|
|
Back to top |
|
|
Narius n00b
Joined: 12 Jan 2006 Posts: 47 Location: Exeter
|
Posted: Sat Dec 09, 2006 1:25 pm Post subject: |
|
|
Does anybody have trouble running videos in VLC on fullscreen? When the video finishes it doesn't want to relequinsh it's full screen window (i.e. it stays down in my taskbar) and does one of those things that stores what's put on top of it so when you move a window over it you end up with a blurred version of it as your background. Sorry for the lack of lack of info, I'm not sure if this an e17 bug or a VLC bug, but out of the WMs I have it only happens in e17.
Thanks |
|
Back to top |
|
|
gimpel Advocate
Joined: 15 Oct 2004 Posts: 2720 Location: Munich, Bavaria
|
Posted: Sat Dec 09, 2006 2:36 pm Post subject: |
|
|
Narius wrote: | Does anybody have trouble running videos in VLC on fullscreen? When the video finishes it doesn't want to relequinsh it's full screen window (i.e. it stays down in my taskbar) and does one of those things that stores what's put on top of it so when you move a window over it you end up with a blurred version of it as your background. Sorry for the lack of lack of info, I'm not sure if this an e17 bug or a VLC bug, but out of the WMs I have it only happens in e17.
Thanks |
yup.. that problem exists with e17 since ever. I'd say it's a wx/VLC bug that is ignored and not fixed by e17. e17(-devs) refuse to play mom&dad for badly behaving windows.. anyays too poor.. VLC rocks. _________________ http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
|
|
Back to top |
|
|
luther n00b
Joined: 03 Dec 2006 Posts: 22 Location: Warsaw, Poland
|
Posted: Sat Dec 09, 2006 2:40 pm Post subject: |
|
|
Narius wrote: | Does anybody have trouble running videos in VLC on fullscreen? When the video finishes it doesn't want to relequinsh it's full screen window (i.e. it stays down in my taskbar) and does one of those things that stores what's put on top of it so when you move a window over it you end up with a blurred version of it as your background. Sorry for the lack of lack of info, I'm not sure if this an e17 bug or a VLC bug, but out of the WMs I have it only happens in e17.
Thanks |
I have a simillar problem. when I play movie in fuulscreen mode with vlc and movie finishes, the screen stays black, and I can't work on this desktop anymore. when I try to move window on it, it moves, but screen doesn't refresh. mouse buttons don't work, I could switch desktop only using keyboard. _________________ greetings
luther |
|
Back to top |
|
|
nost4r Apprentice
Joined: 08 Oct 2006 Posts: 164 Location: Bordeaux
|
Posted: Sun Dec 10, 2006 2:02 pm Post subject: |
|
|
Hello
I have this error when I want emerging etk-9999 :
Code: | >>> Emerging (1 of 28) x11-libs/etk-9999 to /
* checking ebuild checksums ;-) ... [ ok ]
* checking auxfile checksums ;-) ... [ ok ]
* checking miscfile checksums ;-) ... [ ok ]
* This is a LIVE CVS ebuild.
* That means there are NO promises it will work.
* If it fails to build, FIX THE CODE YOURSELF
* before reporting any issues.
>>> Unpacking source...
* Fetching CVS module e17/proto/etk into /usr/portage/distfiles/cvs-src ...
* Running cvs -q -f -z4 -d ":pserver:anonymous:@anoncvs.enlightenment.org:/var/cvs/e" login
Logging in to :pserver:anonymous@anoncvs.enlightenment.org:2401/var/cvs/e
* Running cvs -q -f -z4 -d ":pserver:anonymous@anoncvs.enlightenment.org:/var/cvs/e" update -dP e17/proto/etk
* Copying e17/proto/etk from /usr/portage/distfiles/cvs-src ...
* CVS module e17/proto/etk is now in /var/tmp/portage/x11-libs/etk-9999/work
>>> Source unpacked.
>>> Compiling source in /var/tmp/portage/x11-libs/etk-9999/work/e17/proto/etk ...
Running aclocal...
Running autoheader...
Running autoconf...
Running libtoolize...
Running automake...
configure.in:236: required file `./config.rpath' not found
configure.in:8: installing `./missing'
configure.in:8: installing `./install-sh'
po/Makefile.am:6: addsuffix .mo,$(ALL_LINGUAS: non-POSIX variable name
po/Makefile.am:6: (probably a GNU make extension)
po/Makefile.am:8: addsuffix .po,$(ALL_LINGUAS: non-POSIX variable name
po/Makefile.am:8: (probably a GNU make extension)
po/Makefile.am:10: `%'-style pattern rules are a GNU make extension
src/bin/Makefile.am: installing `./depcomp'
Makefile.am:3: `intl' should not be in SUBDIRS when AM_GNU_GETTEXT([external]) is used
* This is a LIVE CVS ebuild.
* That means there are NO promises it will work.
* If it fails to build, FIX THE CODE YOURSELF
* before reporting any issues.
!!! ERROR: x11-libs/etk-9999 failed.
Call stack:
ebuild.sh, line 1576: Called dyn_compile
ebuild.sh, line 945: Called src_compile
etk-9999.ebuild, line 20: Called enlightenment_src_compile
enlightenment.eclass, line 142: Called enlightenment_die 'autogen failed'
enlightenment.eclass, line 106: Called die
!!! autogen failed
!!! SEND BUG REPORTS TO vapier@gentoo.org NOT THE E TEAM
!!! If you need support, post the topmost build error, and the call stack if relevant. |
|
|
Back to top |
|
|
Disparu Tux's lil' helper
Joined: 07 Jun 2006 Posts: 149
|
Posted: Sat Dec 16, 2006 7:39 am Post subject: Bling and other modules |
|
|
configure:2880: $? = 0
configure:2887: gcc -V >&5
gcc: '-V' option must have argument
configure:2890: $? = 1
configure:2913: checking for C compiler default output file name
configure:2940: gcc < your CFLAGS go here > conftest.c >&5
gcc: <: No such file or directory
gcc: your: No such file or directory
gcc: CFLAGS: No such file or directory
gcc: go: No such file or directory
gcc: here: No such file or directory
gcc: >: No such file or directory
configure:2943: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "bling"
| #define VERSION "0.0.1"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:2982: error: C compiler cannot create executables
See `config.log' for more details. |
|
Back to top |
|
|
JoKo Tux's lil' helper
Joined: 16 May 2004 Posts: 141 Location: Xanthi, Greece
|
Posted: Sat Dec 16, 2006 10:42 am Post subject: |
|
|
Hi,
I've recently installed e17-cvs and I have a question: Is it possible to have gadgets out of shelves? I'm asking this because I can't change the size of the gadgets inside a shelf, I can only alter the length... |
|
Back to top |
|
|
|