prompt
stringlengths
1
64.2k
completion
stringlengths
1
62.6k
'ere we go: Code: make[2]: Entering directory `/var/tmp/portage/wine-20031016/work/wine-20031016/dlls/winmm/winearts' ../../../tools/makedep -I. -I. -I../../../include -I../../../include -I/usr/kde/3.2/include/artsc -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -C. arts.c audio.c Unknown option '-pthread...
Great - it works fine now. Here's the correct line, maybe it's of some help for anyone: /var/tmp/portage/wine-20031016/work/wine-20031016/dlls/winmm/winearts/Makefile Code: EXTRAINCL = -I/usr/kde/3.2/include/artsc -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include Cheers, Chris
note - i would really appreciate any feedback on this, i am totally stuck. the following code illustrates my problem (if you want to run it just drop the lot into a php file with a name of your choosing): Code: <? // start session session_start(); // if the "test link" was followed, then if ($_GET['test']) { // set tes...
just in case anyone runs into a similar problem... i was under the impression that: Code: header("Location:".$_SERVER[PHP_SELF]); would redirect the page without executing the rest of the script. however, this is not the case, the header is sent but the rest of the php is executed even though it is not displayed! what ...
What's up with this? I thought deps were resolved by emerge? Code: >>> emerge (36 of 81) net-mail/maildrop-1.5.3 to / >>> Downloading http://gentoo.oregonstate.edu/distfiles/maildrop-1.5.3.tar.bz2 --02:22:22-- http://gentoo.oregonstate.edu/distfiles/maildrop-1.5.3.tar.bz2 => `/usr/portage/distfiles/maildrop-1.5.3.tar.b...
Found this on bugs.gentoo.org ... https://bugs.gentoo.org/show_bug.cgi?id=30449 ------------------------------------------------------------------------------ ------- Additional Comment #1 From Vlad Berditchevskiy 2003-10-06 08:56 PST ------- BTW, if compiled with USE="-mysql -ldap -gdbm -berkdb", everything compiles f...
I cannot build quanta-3.2.0_beta1 with the following compilation error: Code: /bin/sh ../../libtool --silent --mode=compile --tag=CXX g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/include/libxml2 -I/usr/kde/3.1/include -I/usr/qt/3/include -I/usr/X11R6/include -DQT_THREAD_SUPPORT -D_REENTRANT -DKOMMANDER -DDESIGNER -DQT_NO...
Confirmed, I have quanta 3.2.0_beta1 working. I've noticed at least one minor bug right at startup but so far didn't find any other.
Hello after emerge prelink all goes very fast, without problem, but today i got a problem - probabily related to prelink. I was compiling a C program, with GCC; statically, as usual. The program is quite simple, and GCC return no errors. But on execution: bash-2.05b$ ./program bash: ./program: Permission denied The pro...
The problem was that i mounted the partition where the executable was with the option 'user', which inclues the 'noexec' option thanks bsolar bye
Hi, I'm having trouble with emerge. I've tried to emerge single packages as well as update world and am getting similar errors each time. if I run emerge -UD world I get the following: Code: root@tbird portage # emerge -UD world >>> --upgradeonly implies --update... adding --update to options. Calculating world depende...
Try a different kernel, I just had another bug report about that and it was apparently caused by the 2.4.22-xfs kernel.
i just installed openoffice 1.1.0 on my mothers gentoo computer, and as she has a P4 the compile time was only 10 hours or so. but what i forgot to do was creat a binary package of it so i can install it easyly on my computer without haveing to do that damn huge compile on my P3 is it possible:?: kim
emerge -b openoffice
Hi, I've been getting the following for past couple of days. Waited to see if there are any posts about it, but since there wasn't, I decided to take the initiative Code: (cd .libs && rm -f posix.la && ln -s ../posix.la posix.la) file_gnomevfs.c: In function `backend_get_info': file_gnomevfs.c:248: error: `MIME_DK_TYPE...
hell, no package whatsoever depends on evidence. I didn't know that it's a useless file manager. How it got installed on my system at first place amazes me. Oh and the resolution: Code: emerge -C --deep evidence ; emerge -C --deep evidence Shane
-> gcc 3.2.3-r2 + linux-headers-2.4.19-r1 Is it a source code problem? /bin/sh ../../../../libtool-nofpic --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../../.. -I../../../.. -I../../../../include -I../../../../include -I../../../../src -I../../../../src/xine-engine -I../../../../src/xine-engine -I../../../../src/xin...
The same result with gcc-3.3.2-r2 and linux-headers-2.4.22. Does anyone else run into this problem? rm: cannot remove `': Invalid argument In file included from postprocess.c:394: postprocess_template.c: In function `postProcess_C': postprocess_template.c:2813: warning: unused variable `mbWidth' In file included from p...
From an 'emerge -u vim'. Anyone else seeing this? Code: creating auto/config.status creating auto/config.mk creating auto/config.h make: Entering directory `/var/tmp/portage/vim-6.2-r5/work/vim62/src' CC="gcc -Iproto -DHAVE_CONFIG_H -march=i686 -O3 -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib/perl5/5.8.1...
I had the same problem and noticed the lone -I on the gcc line where it should have been -I/usr/lib/ruby/1.8/i686-linux-gnu I also noticed that the ./configure step complained about ruby versions and it turned out I had not properly upgraded ruby. do Code: emerge -C ruby ruby-cvs && emerge ruby vim It your problem is n...
Hi when I run emerge it only get's so far: Quote: bash-2.05b# emerge dctc Calculating dependencies ...done! >>> emerge (1 of 2) sys-libs/db-3.2.9-r9 to / >>> Downloading http://gentoo.oregonstate.edu/distfiles/db-3.2.9.tar.gz --13:20:47-- http://gentoo.oregonstate.edu/distfiles/db-3.2.9.tar.gz => `/usr/portage/distfile...
Did you add your proxy in /etc/wget/wgetrc ? Sébastien
I'm currently writing a little tiny game, and I need the time in milliseconds to perform some move calculations. How do I get it? It can either be from midnight or from some fixed date (1.1.1970 anyone?). time_t only holds the time in seconds, which is not exact enough, of course Thanks
Awwwww, nevermind. Code: #include <stdio.h> #include <stdlib.h> #include <sys/time.h> int main() { struct timeval tv; gettimeofday(&tv,NULL); tv.tv_usec=(tv.tv_usec+500)/1000; printf ("%U%03U ", tv.tv_sec, tv.tv_usec); exit(0); }
Subject says it all really. After emerging gcc-3.2.3-r2 on my server box libstdc++ was gone. After working out how to get around THAT one (see below) I tried remerging gcc-3.2.3-r2, to no avail... the Code: /usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.3 is still complete devoid of any libstdc++.* files. I have verified that ...
OK. I'm about 86% sure I've solved this. Some orbital mind control laser<tm> must've caused me to include the "build" USE-flag, which probably causes this behaviour. From the ebuild: Code: if [ -z "`use build`" ] then myconf="${myconf} --enable-shared" gcc_lang="c,c++,f77,objc" else gcc_lang="c" fi where -z means "is t...
EDIT: SOLVED: I had a zero length file in /etc/env.c/java. Deleting it fixed the problem. I have no idea where the file came from. I have also checked with 1.1.2 and it's the same. I'm trying to use java-config 1.1.1 to get my java setup so I can build db (see other threads) but it dies. Code: bash-2.05b# java-config -...
Did you run "env-update" ?
It seems (after reading about a million posts) that everyone is having problems with portage today. I also had problems after upgrading to the new r10. My research on the forums revealed that portage r10 was unmasked today. It seems to have a bug though. It borked my system and made it impossible to emerge anything. I ...
Are you certain it was -r10 and not -r12? -r12 WAS ~arch, package.mask'd, and broken. It's been fixed for a long while now. Nothing is wrong with -r10 as far as I'm aware. If you installed the broken -r12, then you probably have quite a few .py's in /etc/.... Delete them.
I'd like to replace my customised Apache2 configs with the ones that were there right after I emerged it (read here if you want to know why, although it shouldn't make a difference). Is there an easy way to do this?
Never mind, found them in /usr/portage/net-www/apache/files/2.0.40/
Hi I guess there are many people like me, who have most packages on the stable release (ie not ~x86 in make.conf) but still a few number of packages emerged with ~x86. (like I have Anjuta 1.1.97 since the stable version doesn't use GTK2) When updating my system, I can easily update it with the standard 'emerge -UD worl...
portage-2.0.50 will have a way to do that in a convenient way, see bug 13616 for details.
I recently updated portage on one of my Gentoo systems. This process updated a number of packages that I will list below. Update of the package "gawk" failed. At this point I can no longer emerge anything without getting the following error: Code: shoebox portage # emerge rsync python2.2: error while loading shared lib...
Strange, I hope this does not occur anymore...
Hi folks, I'd like to start programming ( C++) and searched several programming websites ..... but can somone explain me which tools I need under Gentoo ? I'd like to combine graphical interface with my progs ( I know it's a little too much to start but I downloaded C++ ebooks). Can you explain me what's the difference...
you already have all the essential tools you need to compile C and C++ application on your system, already, undoubtedly ... the compiler is "gcc" (or you can use "g++" for C++ ...) ... so, all you really need is a text editor ... some people like GUI based ones, i'm a vi guy personally, and some people like emacs (vi a...
I'd like to completely get rid of a package, and want to make sure I get rid of all the other junk it installed. Is ther a portage Log file? Or is there a way to "emerge -C" a package and "emerge -C" all packages it installed/depends on (that are not used by other programs)?
Nope. Portage does not have a way to emerge -C all dependent packages ("reverse dependencies"). This is my most wanted feature, and also the reason I test out new versions of software on my FreeBSD slice, not Gentoo. Other people will tell you to use emerge depclean or qpkg -q, but none of those has worked for me. The ...
Today i made a Code: emerge sync i got the following output Quote: >>> Updating Portage cache... ...done! * An update to portage is available. It is _highly_ recommended * that you update portage now, before any other packages are updated. * Please do so and then update ALL of your configuration files. so i did an Code...
thx UPDATE: WORKING AGAIN
I am taking a very basic intro to CS class hear at school. The languege we use is c++, which I am fairly familar with when using windows but kinda lost when it comes to linux. I am starting to do some work with some very basic class that i have made. But I keep getting a very strang error. The work I am doing is much m...
Hi, should be Code: void Person::run() // No semicolon here. { cout<<"running"<<endl; } My taste of code-style would be: Code: void Person::run() { cout << "running" << endl; } If you write a semicolon after the declaration, it's only a declaration and no definition. the block ({ ... }) will not be associated with the ...
Hi, I hope this forum is the correct one, it seems, for me, to be more an ebuild problem than a network one even if related to iptables. When I do an emerge iptables, everything seems to be correct till the line : Making dependencies: please wait... . At that point, the emerge seems to enter into a never-ending loop. V...
After a crash disk, I've been obliged to re-install my Gentoo. And then no problem emerging iptables anymore. So, I close this one. Thanks for your help Fred
(Wish we had a 'Kernel Forum". I guess this is the proper place.) I'm in a maze of twisty tiny passages all alike. Earlier this week I decided to try out some new kernels when I got the time. I emerged a couple (including mm-sources) but DID NOT COMPILE OR USE THEM. Still, portage seems to be somewhat confused about wh...
The only kernel shown in /var/cache/edb/world at the moment is sys-kernel/ck-sources. This is the correct one. Maybe the path of least resistance is to write it off as "portage borkage" and leave mm-sources installed for now (even though I'm running ck-sources). Will this lead to further grief?
I need to install Win4Lin and trying to compile the kernel "gs-sources" for it. After emerge, I went into the directory of the source (/usr/src/linux-2.4.22_pre2-gss) and did a: Code: make menuconfig make dep make clean make kernel-2.4.22-win4lin Immeditately I get the following error: Code: make: *** No rule to make t...
sounds like you dident get all the files when emerge'ing. try emerge win4lin-sources again.
Hi all I'm currently programming a piece of software which reads data in from a pipe (byte by byte). What I've done, cut short: Code: char buf; read(filedes1, &buf, 1); printf("<%x> ", buf); What is really strange, is that sometimes this read function prints out some 4-byte characters (?!) and not a single one-byte cha...
geta wrote: Hi all I'm currently programming a piece of software which reads data in from a pipe (byte by byte). What I've done, cut short: Code: char buf; read(filedes1, &buf, 1); printf("<%x> ", buf); What is really strange, is that sometimes this read function prints out some 4-byte characters (?!) and not a single ...
How to keep emerge from updating/reemerging packages I have already manually installed from source? Or emerging as new same.
Try injecting the ebuild that is going to cause you problems during an emerge. for example: Code: # emerge -i sys-libs/pam_mysql-0.5 >>> Injected sys-libs/pam_mysql-0.5. This will "fool" portage into believing this specifc version of that ebuild is installed, and will assume that it has the dependancies that come with ...
When I do an emerge sync or portage otherwise updates the Portage cache, I keep seeing these messages: .... /Generating cache entry(0) for: /usr/portage/net-www/galeon/galeon-1.3.9.ebuild /Generating cache entry(0) for: /usr/portage/net-www/jboss/jboss-3.2.1.ebuild /Generating cache entry(0) for: /usr/portage/net-www/k...
In /usr/lib/python2.2/site-packages/portage.py, search for this line: Code: def aux_get(self,mycpv,mylist,strict=0,metacachedir=None,debug=1): and turn to 0 the default debug value: Code: def aux_get(self,mycpv,mylist,strict=0,metacachedir=None,debug=0):
Upgraded to the new Qt along with KDE 3.1.4 and now when I want to start a new Qt project I can't select new C++ files (ie. *.cpp and *.h ). Furthermore, when I want to compile an existing Qt project from the previous version, Qt informs me that I have no C++ support in Qt. Code: emerge -pv qt These are the packages th...
Ok, what fixes this problem is if you first do an : Code: emerge -B qt followed by a : Code: emerge -K qt Tesed this on two computers and it worked on both. Don't ask why though, it's just plain silly /edit : This doesn't resolve the problem I have with compiling Arson or K3B. gues we'll have to wait for new version wr...
Hello, I am installing Gnome 2.4 and keep getting this error: Code: make[2]: Leaving directory `/var/tmp/portage/e2fsprogs-1.34/work/e2fsprogs-1.34/tests/progs' making all in po make[2]: Entering directory `/var/tmp/portage/e2fsprogs-1.34/work/e2fsprogs-1.34/po' /usr/bin/msgmerge --update cs.po e2fsprogs.pot .............
Found my answer: here
I want to do an update world but there is a problem with qt ist blocking kdelibs. I have an ~x86 system and would like to update to the kde-alpha. Code: basser root # emerge -up world These are the packages that I would merge, in order: Calculating world dependencies \ !!! all ebuilds that could satisfy ">=x11-libs/qt-...
See also some code-snippets here in the german forum: https://forums.gentoo.org/viewtopic.php?p=517580#517580 It seems like the dependency-problem is like a circle. As you can see the update to kdebase needs an update to kdelibs, that again needs an arts-update and finally this one needs a qt-update, but qt ist lock kd...
Hi, I've got this error when emerging gnome, while compiling libempeg2-0.3.1: gcc -march=athlon-xp -pipe -Wall -O3 -fomit-frame-pointer -o .libs/sample1 sample1.o ../libmpeg2/.libs/libmpeg2.so creating sample1 gcc -march=athlon-xp -pipe -Wall -O3 -fomit-frame-pointer -o .libs/sample2 sample2.o -Wl,-rpath -Wl,/usr/lib ....
Allright, solved. I re-emerged sdl and it installed svgalib then the libmpeg2 build fine. This is so intuitive.....
greeting folk im having this problem when i try emerge net-snmp (part of nagios) gcc -march=athlon-xp -O3 -pipe -Dlinux -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -c mibII/system_mib.c -fPIC -DPIC -o mibII/.libs/system_mib.lo mibII/system_mib.c: In function `init_system_mib'...
well when i untar archiv manualy and then i used ./configure --with-out-mib-modules="mibII agentx agent" i can compile and install it ... but no way to get it work from ebuild any tip ? any it did work on other machine im somehow confused
Hello everybody, I recently updated portage. I know my system contains some outdated packages, but when I run Code: emerge -up world I get: Code: bash-2.05b# emerge -up world These are the packages that I would merge, in order: Calculating world dependencies ...done! bash-2.05b# What can I do about this?? Greetz, Souf.
First check the contents of your world file to make sure that it is not messed up. Also take a look at what 'emerge -p depclean' puts out. Chances are that you find that depclean wants to uninstall some packages that you want to keep. Possibly you need to correct your world file, you might consider using 'regenworld' t...
i dont know if this is the right place for this but after tar crashed my console is nreadable. just random ascii signs. after reset everything looks fine again. but the login prompts are unreadable and i actually dont want to do reset everytime i log in. anyone had that before?
Have you tried switching terminals? (i.e. pressing alt+f2 or alt+f3, etc) and gotten the same garbling? Have you rebooted the machine and the problem persisted? I've seen one terminal get garbled, but a restart usually takes care of the problem. It rarely happens to me though.
I'm aware of a similar thread in which cyfred created a small script to rebuild the dir structure (as I'm trying to understand it)... but I've a slightly different problem: I had a file corruption ( /var/db/pkg/metacity-2.4.34/CONTENTS ) so after a forced fsck this file was a little bit screwed up. So any emerge -C on ...
You can't re-create this file since it contains the list of the files that have been merged for a given package. Their is no way to know this files list without re-emerging the package. That said, you don't need to go through an installation of the previous version: simply delete the /var/db/pkg/category/package-versio...
something happened, and i've no idea what could have caused it.. libtool seems totally broken and unable to link anything now.. i get: Code: libtool: compile: cannot determine name of library object from `' on every package now.. anyone have a clue on how to fix this?
seems configure is causing this.... i get: Quote: checking host system type... config.sub: missing argument Try `config.sub --help' for more information. checking build system type... config.sub: missing argument Try `config.sub --help' for more information. when emerging.. so this is causing libtool to fail.. hmm... w...
hi all, an hour ago or so my gentoo freezed (this is never happened before, for months) and now after reboot, most of the shared libraries cannot be loaded. eg: "startx" xauth: error while loading shared libraries: libXmuu.so.1 cannot open shared object file. "emerge ..." phyton 2.2: error while loading shared librarie...
yes, just run Code: ldconfig from the command line. this is for anyone that is having trouble loading shared libraries after a freeze.
I have been trying to install the beta gnome 2.4 ebuild, but when I emerge it, it gives me the following error: root@euclid# ACCEPT_KEYWORDS="~x86" emerge -U gnome-base-... ... Calculating Dependencies \ All ebuilds matching >=dev-libs/libxml2-2.5.10 are masked ... And I can't emerge. dev-libs/libxml2-2.5.10 is NOT in ...
ask the www.breakmygentoo.net people ? Honestly that would be the first place to ask as they should have the most experience with that ebuild.
I recently got an idea (somewhat sick and twisted) to create a prompt that would change colour depending on the user and computer that I am using. It does not quite work as I planned. Here is my prompt: Code: PS1="\[\033[01;33m\]\! \[\033[01;$(if [ `whoami` = 'boy' ]; then echo '34'; elif [ `whoami` = 'root' ]; then ec...
does `whoami` after su return root or boy ?
I've been using gentoo for months and never had a problem like this , yesteray when i just finished emerge something emerge told me that there was a new version of portage so as usual I emerged portage it told me to update several files as usual (which i din't , as usual) next reboot and emerge is gone , portage tree i...
you can download portage from the ibiblio mirror... ftp://ibiblio.org It would be in the gentoo/distfiles folder Are you download stable stuff or unstable? I have unstable stuff on mine and I have never had a problem like you are having
Hi! I'm writting a script.. I have a little problem tho, I want to make a directory that is called the same as current date, or output from: Code: date +%Y%%d As I' far from bash guru, I have no idea how to do it.. Somebody please help me... Thanks
Or, even better, I'd like to put the output of 'date %Y%m%d' in a variable called $date or something. Any sugestions?
I'm getting a md5sum error when trying to emerge portage (right after an emerge sync). Here's the full output: Code: root@null erik # emerge -u portage Calculating dependencies ...done! >>> emerge (1 of 1) sys-apps/portage-2.0.49 to / >>> Downloading http://ftp.sunet.se/pub/Linux/distributions/gentoo/distfiles/por tage...
rm the distfile and try again.
Hi, I hope I don't bother the programmers among us with this feature proposal for emerge sync: Similar to the use flags shouldn't it be possible to exclude (deselect) some packages from the package list which is synch'ed with emerge sync every time? I think rsync has some exclude options. I myself have never cared for ...
From /etc/make.conf: # RSYNC_EXCLUDEFROM is a file that portage will pass to rsync when it updates # the portage tree. Specific chucks of the tree may be excluded from # consideration. This may cause dependency failures if you are not careful. # The file format is one pattern per line, blanks and ';' or '#' lines are #...
Alright, I've been running this system for over a week now, doing an "emerge sync" almost every day. However, "emerge -up" world doesn't see any packages that need updating. Let's take gentoo-sources for example, I have verified it with other users, and their newest version of it is 2.4.20-r6, while mine continues to s...
They are trying the unstable version. You can too with: Code: ACCEPT_KEYWORDS="~x86" emerge gentoo-sources They probably have ~ set in /etc/make.conf Try: Code: etcat -v gentoo-sources to see which are available and which are masked. Emerge gentoolkit if you don't have etcat.
So when I'm logged in as a normal user, vim performance on text files that have extremely long lines is slooooow. Like molasses, uphill in the winter with a headwind slow But magically, when I log in as root *poof* back to normal happy speedy vim. I recompiled xfree today and etc-update said there there were several fi...
As far as the pty stuff goes, I have that happen myself every once in a while. Kinda one of the first things I'll check for if my computer is going *really* slow and I'm not compiling something. Regarding vim env's, nope. Both root and my normal account are using the global vimrc file. Neither has a local ~/.vimrc Pety...
I've got a problem emerging the update for smartmontools. First portage tries some mirrors, all 404, then tries on sourceforge and downloads the file. But why does it want to resume the download directly after that (and getting read errors all the time portage breaks up)? In /usr/portage/disfiles the .tar.gz is complet...
Thanks a lot, that worked for me, too.
Hi all, I have gentoo almost uptodate with ~x86, living on the edge But when I try to emerge clean it fails at cleaning db 3.2.9-r1. I have been able to clean other packages and even other db version (db-3.2-9-r5) Here is the error message: Code: --- !mtime obj /usr/lib/libdb-3.2.la Traceback (most recent call last): F...
After filing a bug report, the answer came very quickly: I had to remove manually /usr/lib/libdb-3.2.a, then I could emerge -C db-3.2.9-r1 and that was it. Thanks to the bug team Ben
I recently emerged glibc-2.3.2-r1 and gcc-3.2.3-r2. After this I tried emerging gaim and then I tried php. Both of these emerges resulted in a: Code: libtool: link: cannot find the library `/usr/lib/gcc-lib/i586-pc-linux-gnu/3.2.2/libstdc++.la' Notice that it says gcc-lib version 3.2.2 its looking for. I have gcc 3.2.3...
nate wrote: I recently emerged glibc-2.3.2-r1 and gcc-3.2.3-r2. After this I tried emerging gaim and then I tried php. Both of these emerges resulted in a: Code: libtool: link: cannot find the library `/usr/lib/gcc-lib/i586-pc-linux-gnu/3.2.2/libstdc++.la' Notice that it says gcc-lib version 3.2.2 its looking for. I ha...
i had asmall tread about it in the desktop environment section but it definetively belongs to the portage section... I have some problems while emerging kde: Quote: bash-2.05b# emerge kde Calculating dependencies ...done! >>> emerge (1 of 61) dev-java/java-sdk-docs-1.4.1 to / >>> Unpacking source... !!! ERROR: dev-java...
tried all the other qt ebuilds but its always the same.
Hi, I've got xft-2.0.1-r2 but (as there is no recent ebuild for fvwm-2.5.x) ./configure from fvwm-2.5.7 explicitly says that I couldn't find xft on my system. Where is xft situated? Isn't it at its standard place on gentoo? Thanks
xfree provides xft since xfree-4.3.0-r2. If you have that revision or higher, you should not have xft installed separately. emerge -C xft; try your ./configure again; if it doesn't work, re-emerge xfree.
Whats going on here? I have -gnome and -gtk in my make.conf, so i know its not that. i just did a emerge -u world and it did not install gnome. ???
jerome187 wrote: Whats going on here? I have -gnome and -gtk in my make.conf, so i know its not that. i just did a emerge -u world and it did not install gnome. ??? XMMS uses gtk for its interface, so it needs some parts of Gnome to be installed to run. If you compare Code: emerge -p xmms to emerge -p gnome I would gue...
Holy crap! I went to update my system. In the past day there have been 2 updates to Portage. It also wanted to update fileutils. It went to clean it up, and failed. It removed all of my basic commands like mkdir and rm! So now emerge does not work. I go to reemerge fileutils and get: Code: root@jlee jlee # emerge fileu...
Well since all of my basic commands are gone, I can't copy anything with the console, so thank God for Nautilus. I'm using Nautilus to copy the files that emerge says it needs from the stage tarball. Then I am reemerging the stuff that I need. I guess I should have thought about it more before I posted.
I recently upgraded my processor to a p4 Nortwood with Hypertreading. Now setiathome doesnt seem to do any work anymore if started by the init script /etc/init.d/setiathome. If I start the appication by hand it works just fine. When the init script is running it seems, using top, to be running perfectly (it comsumes 50...
Not that this is related to your CPU, but you might check that /opt/setiathome and it's files are writable by the setiathome process. I've seen this cause the problems you are talking about. (CPU churns, but state.sah never gets updated)
emerge evolution breaks on gnome-vfs with the following error message... I dont know what to do! Can anyone suggest how I can get evolution emerged? Code: gcc -O2 -mcpu=i686 -pipe -o .libs/test-async-cancel test-async-cancel.o -rdynamic -rdynamic ../libgnomevfs/.libs/libgnomevfs.so -L/usr/lib -ldl /usr/lib/libgthread.s...
GnomeKing wrote: my nick has nothing to do with the gnome that you all known and love Ah, so its the desktop thing and not a little creature with a big nose.
Hi, I can't get my HelloWorldApp.class (java) to run - even though I followed the Gentoo Java Doc. So, let me explain what happens: (1) This is my java programm / class: Code: class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); //Display the string. } } I've compiled it su...
cool! Thanks
Hi I have some (for me) strange issues with portage: (1) As I mentioned in another thread already, when trying to emerge anjuta with '~x86' as ACCEPT_KEYWORDS, it insists on installing version 1.0.2, although there is a 1.1.1 version in portage since quite a while. (marked as ~x86) Does anyone know what might be wrong ...
Sargon wrote: when trying to emerge anjuta with '~x86' as ACCEPT_KEYWORDS, it insists on installing version 1.0.2, although there is a 1.1.1 version in portage since quite a while. (marked as ~x86) That version is masked in package.mask, check '/usr/portage/profiles/package.mask', the comment will explain why. You can ...
Today i updated my system during the short period when glibc 2.3.2-r1 was marked stable. To make things even worse a new (though stable) baselayout was emerged too. On the next bootup neither my network card nor the usb mouse, etc, were found - those entries aren't in the /dev directory. I emerged the "old" glibc 2.3.1...
DrZoidberg wrote: Why did portage emerge a new glibc yesterday and now today it wants to downgrade back to the old one again? I emerged, did etc-update, and everything seems fine except for a few error messages about missing /dev/rtc. Everything seems ok, though. Should I allow portage to downgrade? No, do not downgrad...
I thought of a solution as I was reading my own post after hitting submit. If anyone has this problem, you must emerge postgresql again AFTER emerging pgaccess to get the libpgtcl.so shared object file. I think this only happened to me because I had no tcltk stuff before emerging pgaccess, which I did after postgresql....
thanks for posting that - it just helped me get pgaccess up and working.
Code: {standard input}:782: Error: symbol `__result' is already defined {standard input}:782: Warning: rest of line ignored; first ignored character is `,' {standard input}:783: Error: symbol `__result' is already defined {standard input}:783: Warning: rest of line ignored; first ignored character is `,' {standard inpu...
ok without gtk it compiles fine but without the gui i am trying re-emerge gtk2
Why do i keep getting these error messages? I just can't figure it out, it's only on my gentoo workstation i get them, on my both gentoo servers i dont get them. Code: root@universe code $ perl perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (uns...
I got this one now. Just delete /etc/env.d/*locale
First of all I apologized if this has already been covered but I have been unabled to find it if so. I'm wrote a small ebuild some weeks ago. It seems to work fine, but now I would like to enhance it. To do this I need to have a dedicated USE flag. I know that I'll have to ask for a new one, but before proceeding I wou...
I'm not exactly sure I understand your problem. Are you making an ebuild where you want people to be able to pass a value of a USE variable to it? As in: Code: USE="myown" emerge foo-0.0.1.ebuild And then from within your ebuild be able to tell if someone passed 'myown'? If so, you don't need an 'official' USE variable...
I am programming a little suid program that makes a call using execv, but this call is not succesful and the error I get is: Bad addres (errno is set to EFAULT). I don't know why this error is produced, I have correctly set the path to the program and the args vector (indeed I print them out to see if they are correctl...
ok.. i'm a noob C programmer so this is probably wrong.. but to me it looks like it should be: Code: if (!execv(purepw, args)) fprintf(stderr, strerror(errno));
i just noticed that dev-perl/DBD only has a handful of drivers - when u look at the CPAN directory there are tons. does someone know how to get the rest? CPAN shell - ebuild tweak - other??? thx
thx - did that meanwhile - unfortunately there seem to be some problems with one driver or the other - DBD::File fails the tests and using the ebuild for ::File works and installs to the correct directory - which is in perls @INC - however it cant be loaded... Code: # include: use strict; use DBI_File; gives Code: Can'...
Hello. Today UFED 0.3 was released on the testing tree so I emerged it and ran it. It did not start and gave error below. Code: Nested quantifiers in regex; marked by <-- HERE in m/ -?* <-- HERE / at /usr/sbin/ufed line 489, <FILE> line 1. My cflags are as below. Code: CFLAGS="-march=pentium4 -O3 -pipe -fomit-frame-poi...
This problem has now been solved. It seems that having -* in your USE flags to negate all default use flags causes ufed to throw the error. It's a relief to know that it isn't due to the processor.
I was trying to write a php program but I have faced a stupid problem and I cannot continue. When I pass variables through a form to a php (ACTION='myphp.php') , it doesn't see the variables, doesn't matter whether I use POST or GET. The code is right (I have written lots of php files!), because I have tested it in ano...
which versions are the two php installations? how does the script look like (explain the structure of the script if you want to keep it secret). Quote: Note: The default value for the PHP directive register_globals changed from on to off in PHP 4.2.0. http://www.php.net/manual/en/configuration.directives.php#ini.regist...
hi, well after a mate convinced me to use my uni network connection to run gentoo on my main box - a great move!! - i decided to give it a go on my little router. Now, my friends set everything up but didn't emerge system or anything (as it was going to take forever and he asked me if i wanted to leave the computer on ...
gulp wrote: Code: Configuration i586-pc-none not supported That line makes me believe that you could have screwed things up in your make.conf file. what's your CHOST setting there?
I had a problem with gentoo eating itself (see sticky in this board), and I just did the stage 2 tarball from the livecd, but when I emerged world, it failed on cracklib. The computer beeps 3 times then spits out an access violation error. You can see the error here: https://forums.gentoo.org/viewtopic.php?t=45259&high...
I try your suggestion: emerge shadow. But it start with emerging xfree. This emerge complain about "security/pam_appl.h: No such file... Do u have an alternative for resolving my problem?
this is the end, processor? nv.c /usr/include/asm/hw_irq.h: In function `x86_do_profile': /usr/include/asm/hw_irq.h:201: structure has no member named `processor' nv.c: In function `nvos_malloc': nv.c:500: request for member `flags' in something not a structure or union nv.c:513: request for member `flags' in something...
hello springfield ! which kernel do you run ? are sources in /usr/src/linux ?
I have an ati radeon video card w/ xfree 4.3.0-r1 and xfree-drm merged. I am trying to emerge wxGTK but this is the error I get: checking for TIFFError in -ltiff... yes checking for GTK+ version... checking for gtk-config... /usr/bin/gtk-config checking for GTK - version >= 1.2.7... yes checking for poll... yes checkin...
Hello, Did you check to see if the file Code: GL/gl.h is there. On my system it's a symlink to Code: /usr/lib/opengl/xfree/include/gl.h I haven't got xfree-drm installed and I can't say what changes it makes to the opengl librairies so I can't say more about this. But I would check to see if that file is there and if i...
I emerged ufed thinking it would be a nice way to edit my USE flags. The only problem is, and this is completely reproduceable, it DOESN'T WORK! What I mean by that is, I had about 25 USE variables in make.conf. When I selected some new ones using ufed, it erased my whole USE line from make.conf and replaced it with a ...
Thanks for clarifying that for me. So the way I understand it now, the USE flags in make.defaults are used always, and I should only add or subtract USE flags in make.conf to the ones that are already in make.defaults. Thanks again.
After the swapping out of various innards of my computers at home, I finally have my dual p2-400 server up and running again. I have a fresh, clean install, and so - on reboot into the new system, after an emerge sync, i emerge samba. there were 5 dependencies, including cups, that installed fine, and samba appeared to...
I would try by commenting out the MAKEOPTS="-j3" line in your make.conf. It looks like you have two parallell processes in a deadlock, so just running a single make might solve your problem.
all i want is that a tar is unpacked in /usr/share, so that's my ebuild: DESCRIPTION="SMB browser" HOMEPAGE="http://www.public.iastate.edu/~chadspen/xsmbrowser.html" LICENSE="GPL" RDEPEND="dev-tcltk/expect" KEYWORDS="x86 -ppc -sparc -alpha" SLOT="0" TAR="xsmbrowser-3.4.0.tar.gz" SRC_URI="http://www.public.iastate.edu/~...
Qubax wrote: so why is it possible to use this? Code: tar -xzf ${DISTDIR}/${TAR} -C /tmp/ because this works (though it's not that what i want) additional: why doesn't it delete the directory while unmerging I don't think it is because tmp is world writeable, but because SANDBOX allows ebuilds to write to /tmp.
Well, while i tried to to emerge giflib-4.1.0-r3, i get this error Quote: linuxdog media-libs # emerge giflib Calculating dependencies ...done! >>> emerge (1 of 1) media-libs/giflib-4.1.0-r3 to / /usr/sbin/ebuild.sh: /usr/portage/media-libs/giflib/giflib-4.1.0-r3.ebuild: line 69: syntax error: unexpected end of file !!...
I'am having the same problem right now... if someone has an solution to this problem it would be great... Thx..
Hello, I just discovered the 'at' command last nite and thought of a few different ways that this would be useful... So I tried 'emerge at'... Didn't work. This is the error I get: Code: --- [snip] --- gcc -c -O2 -mcpu=i686 -pipe -DHAVE_CONFIG_H -DVERSION=\"3.1.8\" -DETCDIR=\"/etc/at\" -DLOADAVG_MX=0.8 -DDAEMON_USERNAM...
I can't offer a solution, but I can say that I have had the "at" utility emerged (same version as you are trying) for some time now. It works just fine. Give me a second and I will re-emerge it and see if it still goes ok (I hope i don't bork my "at"... I love that little utility )
Hi folks, as I was unable to find any resources on the internet, i'm still wondering howto declare a friend operator virtual??? for example: t.h Code: #include <iostream> using namesapce std; class T { public: T(); ~T(); virtual int overrideme(); fiend ostream& operator << (ostream&,T&); } The problem is howto make "op...
Quote: The problem is howto make "operator <<" virtual, as i'm only able to define that in subclasses from T!!! I believe the whole purpose of having virtual functions is to allow generic member function calls through an inheritance hierarchy. Virtual functions only have a scope within their own class/subclasses. I'm n...
HI folks, when using templates with g++-3.2.1 i get the following strange error: Code: main.o(.text+0x18): In function `main':: undefined reference to test<int>::test[in-charge]()' main.o(.text+0x27): In function `main':: undefined reference to test<int>::~test [in-charge]()' collect2: ld returned 1 exit status for the...
When templates is involved you should always have all your definitions in your header file. If remeber correctly it is because the templates is implemented as macros.
In what ebuild do I find the file "libglade-config"? I have emerged glade, glademm, libglade, libglademm. I know I can find it in a RPM....
I know I can find it in the rpm package: libglade-devel But I rather stay away from the rpm program, if I can. Help appreciated. EDIT: i installed the packed with rpm -i --nodeps
the docu tells me that it is usefull to show all the dependences for a program including a --pretend. but what happens if i really make a Code: emerge -e world without a --pretend? i had some problems with X, so i deleted some files and dirs - emerge xfree ... remerged some x11-libs and hoped that i have put everything...
Qubax wrote: what happens if i really make a Code: emerge -e world without a --pretend? All software on your system will be recompiled with the exception of glibc. Quote: i want to remerge the whole system. can it be done with the command from above? if so, do i get tons of etc-update-files? Yes (except you would have ...
Hi! The USE flag in /etc/make.profile/make.defaults has pretty much stuff in it. Do I have to disable every single thing I don't want using -foo -bar -baz etc. in /etc/make.conf, or is there something like -* so that I only have to have to add the things I really need afterwards? It's a bit annoying to be on the watch ...
Peha wrote: Hi! The USE flag in /etc/make.profile/make.defaults has pretty much stuff in it. Do I have to disable every single thing I don't want using -foo -bar -baz etc. in /etc/make.conf, or is there something like -* so that I only have to have to add the things I really need afterwards? I think you could put USE="...