Gentoo Forums
Gentoo Forums
Quick Search: in
Howto get rid of kde-3.5.10?
View unanswered posts
View posts from last 24 hours

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
cz0
Apprentice
Apprentice


Joined: 13 Jun 2005
Posts: 171
Location: /earth/russia/moscow

PostPosted: Thu Nov 05, 2009 1:55 pm    Post subject: Howto get rid of kde-3.5.10? Reply with quote

Hi, folks!
Looks like I'm mostly updated to kde-4.3.1 and feel happy with it, but now I have another problem. I want to remove kde-3.5.10 and all the stuff it depends/needs (like third-party libs and apps). So, is there is a clear way to remove all that unneeded crap?
Back to top
View user's profile Send private message
audiodef
Advocate
Advocate


Joined: 06 Jul 2005
Posts: 4178

PostPosted: Thu Nov 05, 2009 7:04 pm    Post subject: Reply with quote

Well, make sure you aren't using kdeprefix in your use flags and use sets. But I think if you don't have the kdeprefix flag set, it should have unmerged KDE3 already. If you still have 3, check your use flags. Post emerge --info so we can see what's going on.

Also, keep in mind that some packages will still use old KDE3 libs for a while, so make sure you equery depends any old libs before unmerging them.
_________________
Abused Men: http://abusedmen.org
Seeds Mirror: http://kernel-seeds.audiodef.com
Postfix/Cyrus Howto: http://bit.ly/dGHQ2E
Pro-Audio on Gentoo: http://audiodef.com/projects.php?project_id=1
Back to top
View user's profile Send private message
Veldrin
Veteran
Veteran


Joined: 27 Jul 2004
Posts: 1586
Location: Zurich, Switzerland

PostPosted: Thu Nov 05, 2009 7:39 pm    Post subject: Reply with quote

NO: kde3 and kde4 can be installed at the same time - regardless of the kdeprefix flag

to remove kde3 completely - run the following command
Code:
emerge -aC $(qlist kde-base/ | grep 3.5)


I am not sure about the dependencies...
The following supposedly works - but I am not sure. (note the missing -C, and the added --depclean)
Code:
emerge -av $(qlist kde-base/ | grep 3.5) --depclean

warning! I am quite sure, that the second command cannot be run, if the first one already has...

Also you have to take care of any kde3 dependent package emerge -pvDut world helps a lot in identifying those packages....

cheers
V.
Back to top
View user's profile Send private message
gigel
Guru
Guru


Joined: 14 Jan 2003
Posts: 334
Location: .RO

PostPosted: Thu Nov 05, 2009 7:41 pm    Post subject: Reply with quote

i would propose unmerging kde3 packages, and for every program that you cannot start, re-emerge it. that way you woun't have unnecesary libraries on your system.
but, first of all I would still make binary packages for every app in kde-base qith quickpkg --include-config=y
_________________
$emerge sux
:D
Back to top
View user's profile Send private message
audiodef
Advocate
Advocate


Joined: 06 Jul 2005
Posts: 4178

PostPosted: Thu Nov 05, 2009 8:23 pm    Post subject: Reply with quote

I would equery depends those packages first. If you have an older machine, re-emerging a bunch of packages could be a pain in the ass.

mortix wrote:
i would propose unmerging kde3 packages, and for every program that you cannot start, re-emerge it. that way you woun't have unnecesary libraries on your system.
but, first of all I would still make binary packages for every app in kde-base qith quickpkg --include-config=y

_________________
Abused Men: http://abusedmen.org
Seeds Mirror: http://kernel-seeds.audiodef.com
Postfix/Cyrus Howto: http://bit.ly/dGHQ2E
Pro-Audio on Gentoo: http://audiodef.com/projects.php?project_id=1
Back to top
View user's profile Send private message
ssuominen
Developer
Developer


Joined: 30 Sep 2005
Posts: 1266
Location: Finland

PostPosted: Thu Nov 05, 2009 8:31 pm    Post subject: Reply with quote

I would simply stop all running emerge's and edit /var/lib/portage/world by hand (vim) and remove all kde related entries, except "kde-base/kde-meta" and run emerge --depclean -av.

1. Stop running emerges
2.a. Open /var/lib/portage/world
2.b. Delete all kde-base/ and kde-misc/ entries except kde-base/kde-meta (or kdebase-meta or kdebase-startkde, depends on what you use)
3. emerge --depclean -av
4. emerge -avDNut world (for good measure)
5. revdep-rebuild

That should get rid of most. And if you want to be hardcore,

6. Mask =kde-base/kdelibs-3* in /etc/portage/package.mask and check emerge -avDNut world again if there's still pkgs wanting it.

At your own risk. 8)
Back to top
View user's profile Send private message
audiodef
Advocate
Advocate


Joined: 06 Jul 2005
Posts: 4178

PostPosted: Thu Nov 05, 2009 8:38 pm    Post subject: Reply with quote

++ to ssuominen!
_________________
Abused Men: http://abusedmen.org
Seeds Mirror: http://kernel-seeds.audiodef.com
Postfix/Cyrus Howto: http://bit.ly/dGHQ2E
Pro-Audio on Gentoo: http://audiodef.com/projects.php?project_id=1
Back to top
View user's profile Send private message
gigel
Guru
Guru


Joined: 14 Jan 2003
Posts: 334
Location: .RO

PostPosted: Thu Nov 05, 2009 8:43 pm    Post subject: Reply with quote

audiodef wrote:
I would equery depends those packages first. If you have an older machine, re-emerging a bunch of packages could be a pain in the ass.

not really, re-emerging them would mean only unzipping the binary packages made earlier with quickpkg.
_________________
$emerge sux
:D
Back to top
View user's profile Send private message
Veldrin
Veteran
Veteran


Joined: 27 Jul 2004
Posts: 1586
Location: Zurich, Switzerland

PostPosted: Thu Nov 05, 2009 9:34 pm    Post subject: Reply with quote

Quote:
At your own risk. 8)
I wonder why the sledgehammer methods always come from developers.... ;)

and this reminds me of a saying about the Swiss Military (loosely translated):
brute force is not a solution, but a damn good starting point.
Back to top
View user's profile Send private message
cz0
Apprentice
Apprentice


Joined: 13 Jun 2005
Posts: 171
Location: /earth/russia/moscow

PostPosted: Sat Nov 07, 2009 7:05 pm    Post subject: Reply with quote

kde-3* masked now..
But I'm not sure that all the above methods will help to remove all of old libs and apps kde-3 depends on, but kde-3 itself.
emerge --depclean actually try to remove some needed stuff (X was unable to start after it couse font-mis-misc was unmergered).
Back to top
View user's profile Send private message
wrc1944
Advocate
Advocate


Joined: 15 Aug 2002
Posts: 2612
Location: Gainesville, Florida

PostPosted: Mon Nov 09, 2009 5:59 pm    Post subject: Reply with quote

I removed kde-3.5.10, but when I was trying to run emerge --depclean -pv after I had done an emerge -upDN @world, I got this. Any advice?
Code:
emerge --depclean -pv

 * Always study the list of packages to be cleaned for any obvious
 * mistakes. Packages that are part of the world set will always
 * be kept.  They can be manually added to this set with
 * `emerge --noreplace <atom>`.  Packages that are listed in
 * package.provided (see portage(5)) will be removed by
 * depclean, even if they are part of the world set.
 *
 * As a safety measure, depclean will not remove any packages
 * unless *all* required dependencies have been resolved.  As a
 * consequence, it is often necessary to run `emerge --update
 * --newuse --deep @world` prior to depclean.

Calculating dependencies... done!
 * Dependencies could not be completely resolved due to
 * the following required packages not being installed:
 *
 *   dev-perl/XML-LibXML pulled in by:
 *     dev-perl/XML-Simple-2.18
 *
 *   virtual/perl-Package-Constants pulled in by:
 *     perl-core/Archive-Tar-1.52
 *
 * Have you forgotten to run `emerge --update --newuse --deep @world` prior
 * to depclean? It may be necessary to manually uninstall paExclamationckages that no longer
 * exist in the portage tree since it may not be possible to satisfy their
 * dependencies.  Also, be aware of the --with-bdeps option that is documented
 * in `man emerge`.
In my world file, I have:
Quote:
dev-perl/IO-Socket-SSL
dev-perl/Net-SSLeay
dev-perl/XML-LibXML-Common
dev-perl/XML-NamespaceSupport
dev-perl/XML-Parser
perl-core/Test-Harness

but NOT dev-perl/XML-Simple-2.18 and perl-core/Archive-Tar-1.52, which it says is what's trying to pull in the packages preventing emerge --depclean from running.
Should I remove dev-perl/XML-Simple-2.18 and perl-core/Archive-Tar-1.52, run --depclean -pv and carefully select what to remove, and finish up with a revdep-rebuild? Seems like a safe procedure to me.
_________________
Main box- ASRock 880GM-LE AM3
Phenom II x6 1090T, 3.2 GHz, 8GB GSkill DDR3 1333mhz
Samsung SATA 500GB, Radeon HD 4670 1GB DDR3
Gentoo ~x86, ~amd64, glibc-2.14-r2, gcc-4.6.2, kernels 3.1.9, 3.2.1 w/auto-cgroups
Back to top
View user's profile Send private message
ssuominen
Developer
Developer


Joined: 30 Sep 2005
Posts: 1266
Location: Finland

PostPosted: Mon Nov 09, 2009 7:43 pm    Post subject: Reply with quote

erl/IO-Socket-SSL
dev-perl/Net-SSLeay
dev-perl/XML-LibXML-Common
dev-perl/XML-NamespaceSupport
dev-perl/XML-Parser
perl-core/Test-Harness

Why do you have these in world file? Have you explicitely wanted them? If they are just deps of some program, remove the entries.

As for the missing pkgs, just emerge -1 them.
Back to top
View user's profile Send private message
wrc1944
Advocate
Advocate


Joined: 15 Aug 2002
Posts: 2612
Location: Gainesville, Florida

PostPosted: Mon Nov 09, 2009 8:03 pm    Post subject: Reply with quote

ssuominen,
Thanks for the reply! :)
I have no idea of why they are there, or when they got there. This is an old Gentoo installation kept up over several years, in which I have cleaned out my world file from time to time. Since I hadn't specifically emerged these packages, I assumed they had been placed there by portage during an -uD world in the past, and were supposed to be there. :roll:

I'll comment them out, and emerge the "missing" packages with -1, as you suggest.
_________________
Main box- ASRock 880GM-LE AM3
Phenom II x6 1090T, 3.2 GHz, 8GB GSkill DDR3 1333mhz
Samsung SATA 500GB, Radeon HD 4670 1GB DDR3
Gentoo ~x86, ~amd64, glibc-2.14-r2, gcc-4.6.2, kernels 3.1.9, 3.2.1 w/auto-cgroups
Back to top
View user's profile Send private message
transsib
Guru
Guru


Joined: 26 Jul 2003
Posts: 528

PostPosted: Tue Nov 10, 2009 1:08 pm    Post subject: Reply with quote

Quote:
1. Stop running emerges
2.a. Open /var/lib/portage/world
2.b. Delete all kde-base/ and kde-misc/ entries except kde-base/kde-meta (or kdebase-meta or kdebase-startkde, depends on what you use)
3. emerge --depclean -av
4. emerge -avDNut world (for good measure)
5. revdep-rebuild

That should get rid of most. And if you want to be hardcore,

6. Mask =kde-base/kdelibs-3* in /etc/portage/package.mask and check emerge -avDNut world again if there's still pkgs wanting it.

At your own risk. 8)


Advice taken and no regrets :D
Back to top
View user's profile Send private message
wrc1944
Advocate
Advocate


Joined: 15 Aug 2002
Posts: 2612
Location: Gainesville, Florida

PostPosted: Tue Nov 10, 2009 1:36 pm    Post subject: Reply with quote

I still have some 3.5 stuff left over in /usr/kde.

/usr/kde/3.5 (27.3 MB)
/usr/kde/3.5/share, containing apps, config, icons, and service directories (27.2 MB total)
Most of the total is icons- (futuresoft, and sparkling, which IIRC I installed years ago)

Only app is kdm (faces and themes directories).
Also, in /usr/kde/3.5/lib/kde3 there are some .la files (95kb total)

Is it OK to manually remove this stuff (the entire 3.5 directory)?
_________________
Main box- ASRock 880GM-LE AM3
Phenom II x6 1090T, 3.2 GHz, 8GB GSkill DDR3 1333mhz
Samsung SATA 500GB, Radeon HD 4670 1GB DDR3
Gentoo ~x86, ~amd64, glibc-2.14-r2, gcc-4.6.2, kernels 3.1.9, 3.2.1 w/auto-cgroups
Back to top
View user's profile Send private message
cz0
Apprentice
Apprentice


Joined: 13 Jun 2005
Posts: 171
Location: /earth/russia/moscow

PostPosted: Wed Dec 02, 2009 6:17 pm    Post subject: Reply with quote

Have right same stuff in there.
Any ideas? Can I just simply and safely remove /usr/kde ?
Back to top
View user's profile Send private message
cz0
Apprentice
Apprentice


Joined: 13 Jun 2005
Posts: 171
Location: /earth/russia/moscow

PostPosted: Wed Dec 02, 2009 6:19 pm    Post subject: Reply with quote

Code:

equery b /usr/kde/3.5
[ Searching for file(s) /usr/kde/3.5 in *... ]
app-emulation/emul-linux-x86-qtlibs-20081109 (/usr/kde/3.5)
app-emulation/emul-linux-x86-soundlibs-20081109 (/usr/kde/3.5)
Back to top
View user's profile Send private message
gary
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 110
Location: Auburn, CA

PostPosted: Sat Jan 09, 2010 10:37 pm    Post subject: Halp! Reply with quote

Well, I got down to step 4 in ssuominen's process (at my own risk, of course) and got about eighteen packages which needed to be compiled. Unfortunately, the compile failed on the first package and I got this error:
Code:
gcc-config: error: could not run/locate 'x86_64-pc-linux-gnu-gcc'

and the same result on the succeeding package using --skipfirst .

I also notice this:
Code:
basl gsc #  eix gcc
eix: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

with the same result when asking eix about any package.

Halp :!:
Back to top
View user's profile Send private message
IRQsRFun
Apprentice
Apprentice


Joined: 02 May 2003
Posts: 194
Location: Somewhere between .3 and .7 Vdd

PostPosted: Sat Jan 09, 2010 11:35 pm    Post subject: Reply with quote

Hello Gary,

I think a problem I had is similar to yours.

Check out:
http://forums.gentoo.org/viewtopic-t-809419.html

(edit)
I completely lost gcc. If you get the following at the command line, you still have gcc:
Code:

#gcc
gcc: no input files
Back to top
View user's profile Send private message
gary
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 110
Location: Auburn, CA

PostPosted: Sun Jan 10, 2010 12:30 am    Post subject: Reply with quote

Thanks for the very useful reply, IRQsRFun!

Indeed, both gcc and gcc --info (as indicated in your other topic) indicate that gcc is gonzo.

I have downloaded and un-tar'ed the gcc from tinderbox, as you did, and attempted to emerge gcc. However, I do not know how to tell emerge to use the tinderbox gcc, so I get the same error. gcc-config shows that the only listed gcc profile (4.3.4) is invalid. How does one invoke the new/temporary gcc for emerge?

Thanks again! :D
Back to top
View user's profile Send private message
d2_racing
Moderator
Moderator


Joined: 25 Apr 2005
Posts: 12849
Location: Ste-Foy,Canada

PostPosted: Sun Jan 10, 2010 1:59 am    Post subject: Reply with quote

Veldrin wrote:
Quote:
At your own risk. 8)
I wonder why the sledgehammer methods always come from developers.... ;)

and this reminds me of a saying about the Swiss Military (loosely translated):
brute force is not a solution, but a damn good starting point.


In fact, that a great trick but you need to know what you are doing at least :P
_________________
Sysadmin of Funtoo-Québec.org
Wiki
Signature
IRC on Freenode : #funtoo-quebec
Back to top
View user's profile Send private message
ssuominen
Developer
Developer


Joined: 30 Sep 2005
Posts: 1266
Location: Finland

PostPosted: Sun Jan 10, 2010 8:57 am    Post subject: Reply with quote

d2_racing wrote:
Veldrin wrote:
Quote:
At your own risk. 8)
I wonder why the sledgehammer methods always come from developers.... ;)

and this reminds me of a saying about the Swiss Military (loosely translated):
brute force is not a solution, but a damn good starting point.


In fact, that a great trick but you need to know what you are doing at least :P


yeah, I never wanted anyone to wipe their toolchain (gcc) with it, that's why the "at your own risk" :D
Back to top
View user's profile Send private message
gary
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 110
Location: Auburn, CA

PostPosted: Sun Jan 10, 2010 10:23 am    Post subject: Reply with quote

Ah, well, as you said, ssuominen, at our own risk!

I have mostly recovered my toolchain, but I notice that even after I emerged gcc, only the tinderbox gcc will work. Selecting the i686-pc-linux-gnu-4.3.4 profile causes the compiles to break and complain about not being able to create executables, whereas the x86_64-pc-linux-gnu-4.3.4 profile works fine.
Doing a revdep-rebuild works generally, but shows these errors:
Code:
* Found some broken files that weren't associated with known packages
 * The broken files are:
 *   /usr/libexec/gcc/i686-pc-linux-gnu/4.3.4/cc1
 *   /usr/libexec/gcc/i686-pc-linux-gnu/4.3.4/cc1plus
 *   /usr/libexec/gcc/i686-pc-linux-gnu/4.3.4/f951
 *   /usr/libexec/gcc/i686-pc-linux-gnu/4.3.4/tree1


'preciate any thoughts!

Cheers.
Back to top
View user's profile Send private message
d2_racing
Moderator
Moderator


Joined: 25 Apr 2005
Posts: 12849
Location: Ste-Foy,Canada

PostPosted: Sun Jan 10, 2010 4:55 pm    Post subject: Reply with quote

@gary, can you post this :

Code:

# emerge --info

_________________
Sysadmin of Funtoo-Québec.org
Wiki
Signature
IRC on Freenode : #funtoo-quebec
Back to top
View user's profile Send private message
gary
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 110
Location: Auburn, CA

PostPosted: Sun Jan 10, 2010 8:42 pm    Post subject: Reply with quote

Yeahsure, d2. Here we go.

Code:
basl gsc # emerge --info         
Portage 2.1.6.13 (default/linux/amd64/10.0, gcc-4.3.4, glibc-2.9_p20081201-r2, 2.6.30-gentoo-r5 x86_64)
=================================================================                                     
System uname: Linux-2.6.30-gentoo-r5-x86_64-Intel-R-_Xeon-R-_CPU_E5430_@_2.66GHz-with-gentoo-1.12.13   
Timestamp of tree: Sat, 09 Jan 2010 21:15:03 +0000                                                     
distcc 3.1 x86_64-pc-linux-gnu [disabled]                                                             
app-shells/bash:     4.0_p35                                                                           
dev-java/java-config: 2.1.9-r2                                                                         
dev-lang/python:     2.6.4                                                                             
dev-util/cmake:      2.6.4-r3                                                                         
sys-apps/baselayout: 1.12.13                                                                           
sys-apps/sandbox:    1.6-r2                                                                           
sys-devel/autoconf:  2.13, 2.63-r1                                                                     
sys-devel/automake:  1.8.5-r3, 1.9.6-r2, 1.10.2                                                       
sys-devel/binutils:  2.18-r3                                                                           
sys-devel/gcc-config: 1.4.1                                                                           
sys-devel/libtool:   2.2.6b                                                                           
virtual/os-headers:  2.6.27-r2                                                                         
ABI="amd64"                                                                                           
ACCEPT_KEYWORDS="amd64"                                                                               
ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci"                                                                                                                   
ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol"                                                                                                                                 
ANT_HOME="/usr/share/ant"                                                                                                                                   
APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias"                                                 
ARCH="amd64"                                                                                                                                                 
ASFLAGS_x86="--32"                                                                                                                                           
AUTOCLEAN="yes"                                                                                                                                             
CBUILD="x86_64-pc-linux-gnu"                                                                                                                                 
CDEFINE_amd64="__x86_64__"                                                                                                                                   
CDEFINE_x86="__i386__"                                                                                                                                       
CFLAGS="-march=nocona -O2 -pipe -fomit-frame-pointer"                                                                                                       
CFLAGS_x86="-m32"                                                                                                                                           
CHOST="x86_64-pc-linux-gnu"                                                                                                                                 
CHOST_amd64="x86_64-pc-linux-gnu"                                                                                                                           
CHOST_x86="i686-pc-linux-gnu"                                                                                                                               
CLEAN_DELAY="5"                                                                                                                                             
COLLISION_IGNORE="/lib/modules"                                                                                                                             
COLORFGBG="15;0"                                                                                                                                             
CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/shutdown /usr/share/X11/xkb /usr/share/config /var/lib/hsqldb"                 
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/php/apache2-php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/udev/rules.d"                                             
CVS_RSH="ssh"                                                                                                                                               
CXXFLAGS="-march=nocona -O2 -pipe -fomit-frame-pointer"                                                                                                     
DBUS_SESSION_BUS_ADDRESS="unix:abstract=/tmp/dbus-fuk8TVjGB7,guid=1161e3c4c76a9889fa64e6584b4a3a94"                                                         
DCCC_PATH="/usr/lib64/distcc/bin"                                                                                                                           
DEFAULT_ABI="amd64"                                                                                                                                         
DESKTOP_STARTUP_ID=""                                                                                                                                       
DISPLAY=":0.0"                                                                                                                                               
DISTCC_DIR="/var/tmp/.distcc"                                                                                                                               
DISTCC_LOG=""                                                                                                                                               
DISTCC_VERBOSE="0"                                                                                                                                           
DISTDIR="/usr/portage/distfiles"                                                                                                                             
EDITOR="/bin/nano"                                                                                                                                           
ELIBC="glibc"                                                                                                                                               
EMERGE_DEFAULT_OPTS="--ask --verbose"                                                                                                                       
EMERGE_WARNING_DELAY="10"                                                                                                                                   
FEATURES="collision-protect distlocks fixpackages parallel-fetch protect-owned sandbox sfperms strict unmerge-orphans userfetch"                             
FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""                                                                       
GCC_SPECS=""                                                                                                                                                 
GDK_USE_XFT="1"                                                                                                                                             
GENTOO_MIRRORS="http://gentoo.chem.wisc.edu/gentoo"                                                                                                         
GS_LIB="/home/gsc/.fonts"                                                                                                                                   
GTK2_RC_FILES="/etc/gtk-2.0/gtkrc:/home/gsc/.gtkrc-2.0::/home/gsc/.kde4/share/config/gtkrc-2.0"                                                             
GTK_RC_FILES="/etc/gtk/gtkrc:/home/gsc/.gtkrc::/home/gsc/.kde4/share/config/gtkrc"                                                                           
HOME="/root"                                                                                                                                                 
HUSHLOGIN="FALSE"                                                                                                                                           
INFOPATH="/usr/share/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.18/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.3.4/info"                         
INPUT_DEVICES="keyboard mouse evdev"                                                                                                                         
INSTALL_MASK="INSTALL.gz TODO.gz"                                                                                                                           
JAVAC="/etc/java-config-2/current-system-vm/bin/javac"                                                                                                       
JAVACC_HOME="/usr/share/javacc/"                                                                                                                             
JAVA_HOME="/etc/java-config-2/current-system-vm"                                                                                                             
JDK_HOME="/etc/java-config-2/current-system-vm"                                                                                                             
KDE_FULL_SESSION="true"                                                                                                                                     
KDE_MULTIHEAD="false"                                                                                                                                       
KDE_SESSION_UID="1000"                                                                                                                                       
KDE_SESSION_VERSION="4"                                                                                                                                     
KERNEL="linux"                                                                                                                                               
KONSOLE_DBUS_SERVICE=":1.60"                                                                                                                                 
KONSOLE_DBUS_SESSION="/Sessions/1"                                                                                                                           
LANGUAGE=""                                                                                                                                                 
LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text"                                                                         
LDFLAGS="-Wl,-O1"                                                                                                                                           
LDFLAGS_x86="-m elf_i386"                                                                                                                                   
LESS="-R -M --shift 5"                                                                                                                                       
LESSOPEN="|lesspipe.sh %s"                                                                                                                                   
LIBDIR_amd64="lib64"                                                                                                                                         
LIBDIR_amd64_fbsd="lib64"                                                                                                                                   
LIBDIR_ppc="lib32"                                                                                                                                           
LIBDIR_ppc64="lib64"                                                                                                                                         
LIBDIR_sparc32="lib32"                                                                                                                                       
LIBDIR_sparc64="lib64"                                                                                                                                       
LIBDIR_x86="lib32"                                                                                                                                           
LIBDIR_x86_fbsd="lib32"                                                                                                                                     
LOGNAME="root"                                                                                                                                               
LS_COLORS="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.pdf=00;32:*.ps=00;32:*.txt=00;32:*.patch=00;32:*.diff=00;32:*.log=00;32:*.tex=00;32:*.doc=00;32:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:"                                                                   
MAKEOPTS="-j8"                                                                                                                                               
MANPATH="/etc/java-config-2/current-system-vm/man:/usr/local/share/man:/usr/share/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.18/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.3.4/man:/etc/java-config/system-vm/man/:/usr/lib64/php5/man/:/usr/kde/3.5/share/man:/usr/qt/3/doc/man"                             
MULTILIB_ABIS="amd64 x86"                                                                                                                                   
MULTILIB_STRICT_DENY="64-bit.*shared object"                                                                                                                 
MULTILIB_STRICT_DIRS="/lib32 /lib /usr/lib32 /usr/lib /usr/kde/*/lib32 /usr/kde/*/lib /usr/qt/*/lib32 /usr/qt/*/lib /usr/X11R6/lib32 /usr/X11R6/lib"         
MULTILIB_STRICT_EXEMPT="(perl5|gcc|gcc-lib|binutils|eclipse-3|debug|portage)"                                                                               
NETBEANS="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml"                       
OPENGL_PROFILE="nvidia"                                                                                                                                     
PAGER="/usr/bin/less"                                                                                                                                       
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.3.4:/usr/kde/3.5/sbin:/usr/kde/3.5/bin:/usr/qt/3/bin"                                                                                                                                                     
PKGDIR="/usr/portage/packages"                                                                                                                               
PORTAGE_ARCHLIST="ppc x86-openbsd ppc-openbsd ppc64 x86-winnt x86-fbsd ppc-aix alpha arm x86-freebsd s390 amd64 arm-linux x86-macos x64-openbsd ia64-hpux hppa x86-netbsd amd64-linux ia64-linux x86 sparc-solaris x64-freebsd sparc64-solaris x86-linux x64-macos sparc m68k-mint ia64 mips ppc-macos x86-interix hppa-hpux amd64-fbsd x64-solaris mips-irix m68k sh x86-solaris sparc-fbsd"                                                                                         
PORTAGE_BINHOST_CHUNKSIZE="3000"                                                                                                                             
PORTAGE_BIN_PATH="/usr/lib64/portage/bin"                                                                                                                   
PORTAGE_COMPRESS_EXCLUDE_SUFFIXES="css gif htm[l]? jp[e]?g js pdf png"                                                                                       
PORTAGE_CONFIGROOT="/"                                                                                                                                       
PORTAGE_DEBUG="0"                                                                                                                                           
PORTAGE_DEPCACHEDIR="/var/cache/edb/dep"                                                                                                                     
PORTAGE_ELOG_CLASSES="warn error"                                                                                                                           
PORTAGE_ELOG_MAILFROM="portage@localhost"                                                                                                                   
PORTAGE_ELOG_MAILSUBJECT="[portage] ebuild log for ${PACKAGE} on ${HOST}"                                                                                   
PORTAGE_ELOG_MAILURI="root"                                                                                                                                 
PORTAGE_ELOG_SYSTEM="save_summary echo"                                                                                                                     
PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5"                                                                                                                       
PORTAGE_FETCH_RESUME_MIN_SIZE="350K"                                                                                                                         
PORTAGE_GID="250"                                                                                                                                           
PORTAGE_INST_GID="0"                                                                                                                                         
PORTAGE_INST_UID="0"                                                                                                                                         
PORTAGE_PYM_PATH="/usr/lib64/portage/pym"                                                                                                                   
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"                                                                                                                           
PORTAGE_RSYNC_RETRIES="3"                                                                                                                                   
PORTAGE_TMPDIR="/var/tmp"                                                                                                                                   
PORTAGE_TMPFS="/dev/shm"                                                                                                                                     
PORTAGE_VERBOSE="1"                                                                                                                                         
PORTAGE_WORKDIR_MODE="0700"                                                                                                                                 
PORTDIR="/usr/portage"                                                                                                                                       
PORTDIR_OVERLAY="/usr/local/portage"                                                                                                                         
PROFILEHOME=""                                                                                                                                               
PROFILE_ONLY_VARIABLES="ARCH ELIBC KERNEL USERLAND"                                                                                                         
PWD="/home/gsc"
QMAKESPEC="linux-g++"
QTDIR="/usr/qt/3"
QT_PLUGIN_PATH="/home/gsc/.kde4/lib64/kde4/plugins/:/usr/lib64/kde4/plugins/"
RESUMECOMMAND="/usr/bin/wget -c -t 5 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""
ROOT="/"
ROOTPATH="/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.3.4:/usr/kde/3.5/sbin:/usr/kde/3.5/bin:/usr/qt/3/bin"
RPMDIR="/usr/portage/rpm"
RUBY_TARGETS="ruby18"
SANE_CONFIG_DIR="/etc/sane.d"
SESSION_MANAGER="local/basl:@/tmp/.ICE-unix/5004,unix/basl:/tmp/.ICE-unix/5004"
SHELL="/bin/bash"
SHLVL="5"
SSH_AGENT_PID="5160"
SSH_AUTH_SOCK="/tmp/ssh-egGoTQ5159/agent.5159"
STAGE1_USE="multilib nptl nptlonly unicode"
STRIGI_PLUGIN_PATH="/usr/lib64/strigi:"
SYMLINK_LIB="yes"
SYNC="rsync://rsync.namerica.gentoo.org/gentoo-portage"
TERM="xterm"
USB_DEVFS_PATH="/dev/bus/usb"
USE="X a52 aac acl acpi alsa amd64 aspell audacious autoreplace background bash-completion berkdb bzip2 cairo cdda cddb cdio cdparanoia cdr cli colordiff cracklib crypt css cups curl cxx dbus dri dvd dvdr dvdread encode expat fbcon ffmpeg firefox flac fontconfig foomaticdb fortran gd gdbm gif gimp glut gphoto2 gpm gstreamer gtk hal hddtemp htmlhandbook iconv ieee1394 imagemagick imlib ipv6 java java6 javascript jpeg kde kipi mad mmx mng modules mp3 mpeg mplayer mudflap multilib multitarget musicbrainz mysql ncurses npp nptl nptlonly nsplugin nvidia ofx ogg openal opengl openmp pam pcre pdf perl php png posix ppds pppd python qt3 qt3support qt4 qtdesigner quicktime readline realmedia reflection scanner session spell spl sql srt sse sse2 ssh ssl ssse3 svg sysfs tcpd theora threads tiff timidity unicode usb vcd video vim vim-with-x vnc vorbis wavpack webkit wma wmf wmp xine xml xmlreader xmlwriter xmp xorg xosd xplanet xpm xulrunner xv xvid xvmc zlib" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" ELIBC="glibc" INPUT_DEVICES="keyboard mouse evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" RUBY_TARGETS="ruby18" USERLAND="GNU" VIDEO_CARDS="nvidia"
USER="root"
USERLAND="GNU"
USE_EXPAND="ALSA_CARDS ALSA_PCM_PLUGINS APACHE2_MODULES APACHE2_MPMS CAMERAS CROSSCOMPILE_OPTS DVB_CARDS ELIBC FCDSL_CARDS FOO2ZJS_DEVICES FRITZCAPI_CARDS INPUT_DEVICES KERNEL LCD_DEVICES LINGUAS LIRC_DEVICES MISDN_CARDS NETBEANS_MODULES QEMU_SOFTMMU_TARGETS QEMU_USER_TARGETS RUBY_TARGETS SANE_BACKENDS USERLAND VIDEO_CARDS"
USE_EXPAND_HIDDEN="CROSSCOMPILE_OPTS ELIBC KERNEL USERLAND"
USE_ORDER="env:pkg:conf:defaults:pkginternal:env.d"
VIDEO_CARDS="nvidia"
WINDOWID="29360157"
WINDOWPATH="7"
XAUTHORITY="/root/.xauthxhVVHy"
XCURSOR_THEME="Oxygen_Blue"
XDG_CONFIG_DIRS="/etc/xdg"
XDG_DATA_DIRS="/usr/local/share:/usr/kde/3.5/share:/usr/share"
_="/usr/bin/emerge"
bash4="4.0.35(2)-release"
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum