Re: [gentoo-user] Kernel 2.6.26 and iwl3945

2008-11-17 Thread Sebastian Günther
* Florian Philipp ([EMAIL PROTECTED]) [16.11.08 12:03]:
 
 Can anyone say: Yeah, I use the iwl3945 driver with 2.6.26 and it works
 flawlessly for me. If so, could you please post your exact kernel
 version (for example gentoo-sources-2.6.26-r2) and your kernel config?
 

Well, I use the iwl3945 without any problem:

tuxonice-sources-2.6.26 (config attached.)

But as you see I use tuxonice, and there are no problems with 
sleeping/waking since tuxonice unloads the module.

Sebastian

-- 
  Religion ist das Opium des Volkes.   Karl Marx

 [EMAIL PROTECTED]@N GÜNTHER mailto:[EMAIL PROTECTED]


config.gz
Description: Binary data


pgpdbFPommPGr.pgp
Description: PGP signature


Re: [gentoo-user] How to stop mouse motion

2008-11-17 Thread Allan Arguelles
I have this problem with my pc too. I have a razer copperhead, so its
not a cheap/crappy mouse problem for me. Best *quick* solution I found
was to turn the mouse over when I'm not using it.

Jorge Peixoto de Morais Neto wrote:
 Hi. I have a crappy mouse made in China. One of its problems is that
 the mouse pointer sometimes moves even while the mouse is not moving.
 Usually this manifests by the pointer shaking, moving back and
 forward one or two pixels very fast (it looks like some 5 times per
 second).  The worst problem caused by this is that the monitor can
 wake up at seemingly random times.

 One solution would be to switch off the monitor every time I won't use
 it for a few minutes, but (AFAIK) this would waste energy and reduce
 lifetime. I want the DPMS modes of standby, suspend, off.

 Another solution would be to buy another mouse, but this would cost
 money and would not teach me the solution (this problem can manifest
 again in the future, with this or another computer).

 So I want a way to tell the kernel or X11 to ignore mouse motion.
 Either to shut down mouse motion completely, or to allow it but to
 ignore it for the effect considering the computer as idle. I have
 performed a quick read of kernel code and of the xorg.conf man page
 but I see no clue.

 Anybody knows?

   



Re: [gentoo-user] How to install ghhhostscript ?

2008-11-17 Thread john stampe
The point here is that there is more than one version of ghostscript. I use 
ghostscript-esp (emerge -av ghostscript-esp). There is also ghostscript-gpl and 
ghostscript-gnu available in portage. This is due to licensing issues. 
Ghostscript is a commercial company, the Linux versions are relicensed.

John





From: Iain Buchanan [EMAIL PROTECTED]
To: gentoo-user@lists.gentoo.org
Sent: Monday, November 17, 2008 1:25:16 PM
Subject: Re: [gentoo-user] How to install ghhhostscript ?

Andrey Vul wrote:

 If you have eix installed, run the following:
 # eix ghostscript -I -C app-text --only-names | xargs emerge -pv
 and then
 # eix ghostscript -I -C app-text --only-names | xargs emerge

better to do it just once:
# eix ghostscript -I -C app-text --only-names | xargs emerge -va

-- Iain Buchanan iaindb at netspace dot net dot au

If you can't learn to do it well, learn to enjoy doing it badly.


  

Re: [gentoo-user] Headless gentoo install

2008-11-17 Thread KH
Momesso Andrea schrieb:
   

 Probably the easiest way wold be to edit a livecd iso and remaster it...
 Systemrescuecd wold be perfect. Any hints of where to look for
 documentation about that?

   

Hi,

try those:

http://www.gentoo-wiki.info/HOWTO_build_a_LiveCD_with_Catalyst_for_newbies
http://www.gentoo-wiki.info/HOWTO_build_a_LiveCD_with_Catalyst

kh



Re: [gentoo-user] How to install ghhhostscript ?

2008-11-17 Thread Daniel Pielmeier
2008/11/17 john stampe [EMAIL PROTECTED]:
 The point here is that there is more than one version of ghostscript. I use
 ghostscript-esp (emerge -av ghostscript-esp). There is also ghostscript-gpl
 and ghostscript-gnu available in portage. This is due to licensing issues.
 Ghostscript is a commercial company, the Linux versions are relicensed.

There is no need for using ghostscript-esp anymore as GPL Ghostcript
8.57 and ESP Ghostscript 8.15.4 have been combined to GPL Ghostscript
8.60 in August 2007.
So there is only ghostscript-gpl and probably ghostscript-gnu.

-- 
Regards,
Daniel



Re: [gentoo-user] How to install ghhhostscript ?

2008-11-17 Thread john stampe
Daniel,

Thanks for the info. I am only using ghostscript-esp as it was pulled in as a 
dependency by cups. Looks like I need to upgrade.

Best regards,

John





From: Daniel Pielmeier [EMAIL PROTECTED]
To: gentoo-user@lists.gentoo.org
Sent: Monday, November 17, 2008 4:29:00 PM
Subject: Re: [gentoo-user] How to install ghhhostscript ?

2008/11/17 john stampe [EMAIL PROTECTED]:
 The point here is that there is more than one version of ghostscript. I use
 ghostscript-esp (emerge -av ghostscript-esp). There is also ghostscript-gpl
 and ghostscript-gnu available in portage. This is due to licensing issues.
 Ghostscript is a commercial company, the Linux versions are relicensed.

There is no need for using ghostscript-esp anymore as GPL Ghostcript
8.57 and ESP Ghostscript 8.15.4 have been combined to GPL Ghostscript
8.60 in August 2007.
So there is only ghostscript-gpl and probably ghostscript-gnu.

-- 
Regards,
Daniel


  

Re: [gentoo-user] Nots and bolts of creating an ebuild

2008-11-17 Thread Daniel Pielmeier
2008/11/17 Harry Putnam [EMAIL PROTECTED]:
 I really just want to add an epatch line to an existing ebuild but it
 appears some protocols need to be followed to generate the manifest
 and probably lots of other stuff.

 Can anyone point me to something?

Create an overlay and within that use the same structure as in the
portage tree like /path/to/overlay/category/yourpackage/

Make the overlay known to portage by editing /etc/make.conf
PORTDIR_OVERLAY=${PORTDIR_OVERLAY} /path/to/overlay

Copy the ebuild you want to patch to the created directory. Create a
files directory within that directory and put your patch there. Note
that if the previous ebuild already needed this directory because of
other patches and files you need to copy them to that files directory
too.

Edit the ebuild by adding the epatch line to src_unpack (patches go to
src_unpack and not src_install) or add the src_unpack function if it
is not already there like below.

src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/your.patch
}

Then execute ebuild yourpackage.ebuild manifest. Now you can try
ebuild yourpackage.ebuild unpack to run the unpack phase of the
ebuild to see if everything works.

-- 
Regards,
Daniel



[gentoo-user] Another error when emerging kdelibs-4.1.3-r1

2008-11-17 Thread Rafael Barrera Oro
Not to long ago i started a thread about an ACCESS ERROR VIOLATION that
happened any time i tried to emerge kde-meta (i ended up submiting a bug).
Now the problem has changed, for some reason. What happens now is that the
emerge process dies when it reaches the point where it builds the nepomuk
target. This happens at 50% which is weird since the other error happened at
the 90% or later.

Here is some of the outcome:

[ 50%] Building CXX object
nepomuk/core/CMakeFiles/nepomuk.dir/nepomuk_automoc.o
Linking CXX shared library ../../lib/libnepomuk.so
[ 50%] Built target nepomuk
make: *** [all] Error 2
 *
 * ERROR: kde-base/kdelibs-4.1.3-r1 failed.
 * Call stack:
 *   ebuild.sh, line   49:  Called src_compile
 * environment, line 3119:  Called kde4-base_src_compile
 * environment, line 2361:  Called kde4-base_src_make
 * environment, line 2396:  Called cmake-utils_src_make
 * environment, line  851:  Called die
 * The specific snippet of code:
 *   emake $@ || die Make failed!;
 *  The die message:
 *   Make failed!
 *
 * If you need support, post the topmost build error, and the call stack if
relevant.
 * A complete build log is located at
'/var/tmp/portage/kde-base/kdelibs-4.1.3-r1/temp/build.log'.
 * The ebuild environment file is located at
'/var/tmp/portage/kde-base/kdelibs-4.1.3-r1/temp/environment'.
 *

 Failed to emerge kde-base/kdelibs-4.1.3-r1, Log file:

  '/var/tmp/portage/kde-base/kdelibs-4.1.3-r1/temp/build.log'

 * Messages for package kde-base/kdelibs-4.1.3-r1:

 *
 * ERROR: kde-base/kdelibs-4.1.3-r1 failed.
 * Call stack:
 *   ebuild.sh, line   49:  Called src_compile
 * environment, line 3119:  Called kde4-base_src_compile
 * environment, line 2361:  Called kde4-base_src_make
 * environment, line 2396:  Called cmake-utils_src_make
 * environment, line  851:  Called die
 * The specific snippet of code:
 *   emake $@ || die Make failed!;
 *  The die message:
 *   Make failed!
 *
 * If you need support, post the topmost build error, and the call stack if
relevant.
 * A complete build log is located at
'/var/tmp/portage/kde-base/kdelibs-4.1.3-r1/temp/build.log'.
 * The ebuild environment file is located at
'/var/tmp/portage/kde-base/kdelibs-4.1.3-r1/temp/environment'.
 *

As usual, thanks in advance people

take care

Rafael


[gentoo-user] apache +php +time limits

2008-11-17 Thread Marcin Niśkiewicz
Hello
I set max_execution_time to 30 in php.ini file (i also checked in phpinfo).
max_input_time is set to 45.

But when I use in script something like that:

while ( 1 == 1 )
or
for ( $i=0; $i  1; $i++)

{
  echo \n.$i;
}


it doesn't work - execution of script lasts for unlimited time.

of course I executed it via apache (I read that this limit doesn't work
while executing in console)

is it bug or am i doing something wrong?

regards
nichu


[gentoo-user] download gentoo

2008-11-17 Thread chloe K
Hi
   
  how and where I can dowload 
   
  64 bit gentoo (intel and amd)
   
  thanks
   
   

   
 
  
-

   
Yahoo! Canada Toolbar : Search from anywhere on the web and 
bookmark your favourite sites. Download it now!  


Re: [gentoo-user] download gentoo

2008-11-17 Thread KH
chloe K schrieb:
 Hi
  
 how and where I can dowload
  
 64 bit gentoo (intel and amd)
  
 thanks
  
  

 

 *Yahoo! Canada Toolbar :* Search from anywhere on the web and bookmark
 your favourite sites. Download it now! http://ca.toolbar.yahoo.com/

the handbook will help you!

http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=1chap=2

kh



Re: [gentoo-user] download gentoo

2008-11-17 Thread Alan McKinnon
On Monday 17 November 2008 17:12:56 chloe K wrote:
 Hi

   how and where I can dowload

   64 bit gentoo (intel and amd)

   thanks

Your mail is worded in such a way as to make me beleive you are not familiar 
with how gentoo works.

You do not download and install gentoo as such, it works a different way.

Read here, it contains everything you need to know:

http://www.gentoo.org/doc/en/handbook/index.xml


-- 
alan dot mckinnon at gmail dot com




Re: [gentoo-user] download gentoo

2008-11-17 Thread Qian Qiao
On Mon, Nov 17, 2008 at 15:12, chloe K [EMAIL PROTECTED] wrote:
 Hi

 how and where I can dowload

 64 bit gentoo (intel and amd)

 thanks

Take a look at the handbook[1], you don't download prebuilt gentoo
like other binary distributions, you boot your system up with a
livecd/usb - download the stage and portage tarballs, then build your
system.

HTH.

Joe

[1] http://www.gentoo.org/doc/en/handbook/index.xml

-- 
There are 3 kinds of people in the world: those who can count, and
those who can't.



[gentoo-user] No video on vlc-0.9.6

2008-11-17 Thread Markos Chandras
Hello,

Since I installed vlc-0.9.6 I cant see any videos. I get sound but no video. I 
tried xv,x11,opengl as video outputs but I couldnt make it work

These are the use flags that I have enabled for vlc

X a52 aac aalib alsa dbus directfb dts dvb dvd esd ffmpeg flac gnutls hal 
id3tag libass libcaca libgcrypt libnotify matroska mmx mp3 mpeg ncurses 
nsplugin ogg opengl png qt4 sdl skins sse svg svga truetype v4l v4l2 vorbis 
win32codecs x264 xml xv

I tried to re-compile xvid and ffmpeg but I still cant see videos

Any possible ideas? Thanks
-- 
Markos Chandras



Re: [gentoo-user] download gentoo

2008-11-17 Thread Paul Hartman
On Mon, Nov 17, 2008 at 9:12 AM, chloe K [EMAIL PROTECTED] wrote:
 Hi

 how and where I can dowload

 64 bit gentoo (intel and amd)

 thanks

Click Get Gentoo! on the top menu at http://www.gentoo.org/



Re: [gentoo-user] Back up a server in real-time

2008-11-17 Thread Joerg Schilling
William Kenworthy [EMAIL PROTECTED] wrote:

 dirvish is in portage.

 tar/rsync/cp are not really backups but manual copies.  If you want true
 backup you need scripts to handle the extra functionality for things
 like versioning, archive management and the all important restore.

star has everything you need for backups and it is based on the standard 
archive format.

Jörg

-- 
 EMail:[EMAIL PROTECTED] (home) Jörg Schilling D-13353 Berlin
   [EMAIL PROTECTED](uni)  
   [EMAIL PROTECTED] (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



[gentoo-user] Ripping a CD to mp3 formate (sound-juicer)

2008-11-17 Thread Allan Gottlieb
I have used gentoo for a while, but am new to audio.

Sound-juicer successfully rips CDs to .ogg files, which are successfully
played by totem.

I would like to produce .mp3 audio for some instead of .ogg.

SJ (sound-juicer) lists mp3 in its edit profiles... option but does
not include it in the Output Format drop down list.

The SJ ebuild says

  If ${PN} does not rip to some music format, please check your
  USE flags on media-plugins/gst-plugins-meta

I did check and the ones I don't have set seem unrelated to mp3.

  allan ~ # eix --nocolor gst-plugins-meta
  [I] media-plugins/gst-plugins-meta
   Available versions:  (0.10)  0.10 ~0.10-r1 0.10-r2
{X a52 alsa dvb dvd esd ffmpeg flac mad mpeg mythtv ogg oss theora 
vorbis xv}
   Installed versions:  0.10-r2(0.10)(12:26:39 11/17/08)(X alsa dvd esd 
ffmpeg mad mpeg ogg vorbis xv -a52 -dvb -flac -mythtv -oss -theora)
   Homepage:http://www.gentoo.org
   Description: Meta ebuild to pull in gst plugins for apps

Any help would be appreciated.

thanks,
allan



[gentoo-user] fake printers

2008-11-17 Thread Andrew Gaydenko
Hi!

At KDE3 days I have usee three additional (wrt real printer - Kyocera at my 
case) instances: one with turned off duplexing and rest ones with (pstops 
based) filters.

Those happy KDE3 days have gone, and new goal is arised: to configure such 
three additional fake printers which would be visible by KDE4, Gnome, OOo... 

Can anybody 

- approve such configuration is possible,
- point me at appropriate infromation to dig in?


Andrew 



[gentoo-user] Re: Nots and bolts of creating an ebuild

2008-11-17 Thread Harry Putnam
Daniel Pielmeier [EMAIL PROTECTED] writes:

[...]

 Create an overlay and within that use the same structure as in the
 portage tree like /path/to/overlay/category/yourpackage/

[...]

Nice walkthru... and just what I needed...
Thanks to you and other posters who have provide some of the details.




[gentoo-user] Foundation Membership Announcement and Application Information

2008-11-17 Thread quantumsummers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

= Official Foundation Announcement =

All Gentoo community members please take note that the Foundation Bylaws
have been changed by unanimous vote of the Trustees. You can find them
at the link below for your reading pleasure.
http://www.gentoo.org/foundation/en/BylawsAdopted.xml

= Developers =

All Gentoo Developers not currently members of the Gentoo Foundation are
strongly encouraged to join before 11 January 2009 to be eligible to
nominate, vote, and/or stand in the upcoming trustees election.

For developers that desire to join the foundation, we have all the
necessary info available internally, so please simply email
[EMAIL PROTECTED] stating you wish to join.

= Community =

Recent changes to the Foundation Bylaws have expanded foundation
membership to include individuals from the entire Gentoo community. In
the endeavor to facilitate greater community and communication between
the developers and the users of Gentoo and open source software in
general, the Trustees are very pleased to extend an invitation to all
interested individuals to apply for foundation membership.  All
applications will be considered on the basis of merit and the extent of
contribution to Gentoo and/or the Open Source ecosystem. Everyone is
encouraged to apply. Please join us in making Gentoo better than ever!


= Community Foundation Membership Application =

Instructions: Please email [EMAIL PROTECTED] with the following
information, and please place Foundation Membership Application in the
subject line of the email.

1. Full name

2. Nickname**

3. Valid email  pgp key fingerprint and key ID for the email you provide.

4. Birthday** (MM/DD)

5. Provide a verifiable description of the work you have undertaken to
further the aims of the Gentoo Foundation Inc. All contributions will
be validated, help us to process your application quickly by including
how we can validate it.

**denotes optional field

Best Regards
- --
quantumsummers | Gentoo Foundation Secretary


-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEARECAAYFAkkh5zQACgkQRe5dwAh4nUbS9QCfY9yAwREDmwvs8niYFAcghr9R
7CIAnRNqUDBRNcbIy656Ot64jpF3vbf1
=lieo
-END PGP SIGNATURE-



Re: [gentoo-user] Another error when emerging kdelibs-4.1.3-r1

2008-11-17 Thread Espen Hustad
2008/11/17 Rafael Barrera Oro borafael at gmail.com:
 Not to long ago i started a thread about an ACCESS ERROR VIOLATION that
 happened any time i tried to emerge kde-meta (i ended up submiting a bug).
 Now the problem has changed, for some reason. What happens now is that the
 emerge process dies when it reaches the point where it builds the nepomuk
 target. This happens at 50% which is weird since the other error happened at
 the 90% or later.

 Here is some of the outcome:

 [ 50%] Building CXX object
 nepomuk/core/CMakeFiles/nepomuk.dir/nepomuk_automoc.o
 Linking CXX shared library ../../lib/libnepomuk.so
 [ 50%] Built target nepomuk
 make: *** [all] Error 2
  *
 Snip!

Hi!

Please post the complete build log, the lines you have posted tells
that an error occured, not what caused it.

Espen



[gentoo-user] Unable to build sys-kernel/hardened-sources-2.6.25-r9

2008-11-17 Thread Chris Lieb
I am attempting to switch a VM over to the hardened profile and the
hardened kernel.  I have rebuilt almost all of the packages on my
computer after switching to th hardened profile, save for a few kernel
modules.  I have emerged hardened-sources-2.6.25-r9 and am trying to
build it.  I tried copying the .config that I had used with
gentoo-sources-2.6.25-r9 to /usr/src/linux (symlinked to
/usr/src/linux-2.6.25-hardened-r9) and doing a `make menuconfig`
followed by a `make  make modules_install`, but received an error
almost right out of the gate.  The error concerns some part of the frame
buffer driver.  Here is the output I get from make:

  CHK include/linux/version.h
  CHK include/linux/utsrelease.h
  CALLscripts/checksyscalls.sh
  CHK include/linux/compile.h
dnsdomainname: Host name lookup failure
  CC  drivers/video/uvesafb.o
drivers/video/uvesafb.c: In function `uvesafb_vbe_getpmi':
drivers/video/uvesafb.c:593: error: `pmi_code' undeclared (first use in
this function)
drivers/video/uvesafb.c:593: error: (Each undeclared identifier is
reported only once
drivers/video/uvesafb.c:593: error: for each function it appears in.)
make[2]: *** [drivers/video/uvesafb.o] Error 1
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2
  INSTALL drivers/crypto/geode-aes.ko
  INSTALL drivers/scsi/scsi_wait_scan.ko
  INSTALL drivers/usb/core/usbcore.ko
  INSTALL drivers/usb/host/ehci-hcd.ko
  INSTALL drivers/usb/host/uhci-hcd.ko
  INSTALL drivers/usb/storage/usb-storage.ko
  DEPMOD  2.6.25-hardened-r9

The only way I can get rid of the error is to disable frame buffer
entirely (Device drivers - Graphics support - Support for frame buffer
devices), which is not optimal.

Does anyone know what is causing this?

Thanks,
Chris

Attached: `emerge --info` and .config being used
Portage 2.1.4.5 (hardened/x86/2.6, gcc-3.4.6, glibc-2.6.1-r0, 
2.6.25-hardened-r9 i686)
=
System uname: 2.6.25-hardened-r9 i686 Intel(R) Pentium(R) D CPU 3.40GHz
Timestamp of tree: Mon, 17 Nov 2008 03:31:01 +
ccache version 2.4 [enabled]
app-shells/bash: 3.2_p33
dev-java/java-config: 1.3.7, 2.1.6
dev-lang/python: 2.5.2-r7
dev-util/ccache: 2.4-r7
sys-apps/baselayout: 1.12.11.1
sys-apps/sandbox:1.2.18.1-r2
sys-devel/autoconf:  2.13, 2.61-r2
sys-devel/automake:  1.5, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10.1-r1
sys-devel/binutils:  2.18-r3
sys-devel/gcc-config: 1.4.0-r4
sys-devel/libtool:   1.5.26
virtual/os-headers:  2.6.23-r3
ACCEPT_KEYWORDS=x86
CBUILD=i686-pc-linux-gnu
CFLAGS=-O2 -march=i686 -pipe
CHOST=i686-pc-linux-gnu
CONFIG_PROTECT=/etc /opt/openjms/config
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/terminfo /etc/texmf/web2c /etc/udev/rules.d
CXXFLAGS=-O2 -march=i686 -pipe
DISTDIR=/usr/portage/distfiles
FEATURES=buildpkg ccache colision-protect distlocks fixpackages 
metadata-transfer sandbox sfperms strict unmerge-orphans userfetch usersandbox
GENTOO_MIRRORS=http://distfiles.gentoo.org 
http://distro.ibiblio.org/pub/linux/distributions/gentoo;
LINGUAS=en
MAKEOPTS=-j4
PKGDIR=/usr/portage/packages
PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times --compress 
--force --whole-file --delete --stats --timeout=180 --exclude=/distfiles 
--exclude=/local --exclude=/packages
PORTAGE_TMPDIR=/var/tmp
PORTDIR=/usr/portage
PORTDIR_OVERLAY=/usr/portage/local/layman/java-overlay
SYNC=rsync://rsync.gentoo.org/gentoo-portage
USE=acpi apache2 bash-completion berkdb cracklib crypt gpm hardened 
imagemagick imap ipv6 ldap logrotate logwatch maildir mcal midi mysql ncurses 
nls nptl nptlonly pam pcre perl php pic python qmail readline samba sasl snmp 
spamassassin sse ssl tcpd unicode urandom x86 xml2 xorg zlib 
ALSA_CARDS=ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1 
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 asis auth_basic 
auth_digest authn_alias authn_anon authn_dbd authn_dbm authn_default authn_file 
authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user 
autoindex cache cern_meta dav dav_fs dav_lock dbd deflate dir disk_cache dumpio 
env expires ext_filter file_cache filter headers include info log_config 
log_forensic logio mem_cache mime mime_magic negotiation proxy proxy_ajp 
proxy_balancer proxy_connect proxy_ftp proxy_http rewrite setenvif speling 
status unique_id userdir usertrack version vhost_alias ELIBC=glibc 
INPUT_DEVICES=mouse keyboard evdev KERNEL=linux LCD_DEVICES=bayrad cfontz 
cfontz633 glk 

Re: [gentoo-user] syslog-ng Vs rsyslog

2008-11-17 Thread Mick
On Monday 17 November 2008, ThaUnderDog wrote:
  Have you experience perhaps of rsyslog and how does it compare with
  gentoo's default syslog-ng?

 The native/internal modules of db writes and alerting of rsyslog sound
 promising. There's a comparison here:
 http://www.rsyslog.com/doc-rsyslog_ng_comparison.html

 Portage isn't in sync with rsyslogs development tree yet. Latest in
 v3-stable is 3.20.0, which appears to build OK. I don't know if there
 are any gentoo specific gotchas, not much experience with it
 yeteverything seems fine...

Thanks!  Useful link and feedback.
-- 
Regards,
Mick


signature.asc
Description: This is a digitally signed message part.


Re: [gentoo-user] Ripping a CD to mp3 formate (sound-juicer) SOLVED

2008-11-17 Thread Allan Gottlieb
At Mon, 17 Nov 2008 12:35:33 -0500 Allan Gottlieb [EMAIL PROTECTED] wrote:

 Sound-juicer successfully rips CDs to .ogg files, which are successfully
 played by totem.

 I would like to produce .mp3 audio for some instead of .ogg.

 SJ (sound-juicer) lists mp3 in its edit profiles... option but does
 not include it in the Output Format drop down list.

 The SJ ebuild says

   If ${PN} does not rip to some music format, please check your
   USE flags on media-plugins/gst-plugins-meta

 I did check and the ones I don't have set seem unrelated to mp3.

   allan ~ # eix --nocolor gst-plugins-meta
   [I] media-plugins/gst-plugins-meta
Available versions:  (0.10)  0.10 ~0.10-r1 0.10-r2
   {X a52 alsa dvb dvd esd ffmpeg flac mad mpeg mythtv ogg oss theora 
 vorbis xv}
Installed versions:  0.10-r2(0.10)(12:26:39 11/17/08)(X alsa dvd esd 
 ffmpeg mad mpeg ogg vorbis xv -a52 -dvb -flac -mythtv -oss -theora)
Homepage:http://www.gentoo.org
Description: Meta ebuild to pull in gst plugins for apps

 Any help would be appreciated.

Maximilian Bräutigam suggested I use lame for the actual encoding.

Prowling around bugs.gentoo.org showed that my problem has occurred
before and indeed lame is part of the solution.  Apparently you have to
know that the right thing is to emerge both

gst-plugins-taglib and gst-plugins-lame

Now all is well.

allan



[gentoo-user] Java bad version number - what to up/downgrade?

2008-11-17 Thread Grant
I'm getting the following from dumphd:

bad version number in .class file

I gather that I may have the wrong version of something Java installed
but I don't know how that works.  Can anyone tell me what package I
should try upgrading or downgrading?

- Grant



[gentoo-user] MIME-type application/octet-stream missing on KDE 3

2008-11-17 Thread Francisco Ares
Hi, guys

Suddenly, after an update (sorry, no idea on which packages were updated /
upgraded / re-emerged) several (if not all) KDE 3.5 programs show a message
box saying that the MIME type application/octet-stream could not be found.

Any ideas on what happened and, most important, what can I do to correct
this?

Thanks a lot!!
Francisco
-- 
If you have an apple and I have an apple and we exchange apples then you
and I will still each have one apple. But if you have an idea and I have one
idea and we exchange these ideas, then each of us will have two ideas. -
George Bernard Shaw


Re: [gentoo-user] Java bad version number - what to up/downgrade?

2008-11-17 Thread Shawn Haggett
On Tue, 18 Nov 2008 12:04:53 pm Grant wrote:
 I'm getting the following from dumphd:

 bad version number in .class file

 I gather that I may have the wrong version of something Java installed
 but I don't know how that works.  Can anyone tell me what package I
 should try upgrading or downgrading?

This normally means the class file is from a new version of Java then the 
virtual machine trying to run it (i.e. class files compiled under Java 1.5, 
but your trying to run it in Java 1.4).

java-config -L (without quotes) will show you what virtual machines you have 
installed. On my machine it shows (the asterisk is the currently selected 
one, i.e. what will be used to run java applications):

[EMAIL PROTECTED] ~ $ java-config -L
The following VMs are available for generation-2:
1)  Blackdown JDK 1.4.2.03 [blackdown-jdk-1.4.2]
2)  Sun JDK 1.5.0.16 [sun-jdk-1.5]
*)  Sun JDK 1.6.0.07 [sun-jdk-1.6]
[EMAIL PROTECTED] ~ $

If the newest VM isn't selected as the default, read the man page for 
java-config and tell it to set the newest one as default (1.6 is the newest 
version).

Shawn



Re: [gentoo-user] How to install ghhhostscript ?

2008-11-17 Thread meino . cramer
While trying to install ghostscript-gpl I got this one:

Calculating dependencies... done!
[blocks B ] app-text/ghostscript-gpl (is blocking 
app-text/ghostscript-esp-8.15.4-r1)
[blocks B ] app-text/ghostscript-esp (is blocking 
app-text/ghostscript-gpl-8.62)

 * Error: The above package list contains packages which cannot be
 * installed at the same time on the same system.


It seems there is still a difference ?!?!

I want to use turboprint (propietary linux printer driver suit)
finally. What to choose?

Should I remove first both version, than install one (which one?) and
then reinstall cups and then reinstall turboprint and then finally
being able to print again (or not?) ? 

Before doing anything else which screws up my system even more I would
thank the experts here for any advice in advance ! :)

Kind regards
Meino Cramer


john stampe [EMAIL PROTECTED] [08-11-17 18:24]:
 Daniel,
 
 Thanks for the info. I am only using ghostscript-esp as it was pulled in as a 
 dependency by cups. Looks like I need to upgrade.
 
 Best regards,
 
 John
 
 
 
 
 
 From: Daniel Pielmeier [EMAIL PROTECTED]
 To: gentoo-user@lists.gentoo.org
 Sent: Monday, November 17, 2008 4:29:00 PM
 Subject: Re: [gentoo-user] How to install ghhhostscript ?
 
 2008/11/17 john stampe [EMAIL PROTECTED]:
  The point here is that there is more than one version of ghostscript. I use
  ghostscript-esp (emerge -av ghostscript-esp). There is also ghostscript-gpl
  and ghostscript-gnu available in portage. This is due to licensing issues.
  Ghostscript is a commercial company, the Linux versions are relicensed.
 
 There is no need for using ghostscript-esp anymore as GPL Ghostcript
 8.57 and ESP Ghostscript 8.15.4 have been combined to GPL Ghostscript
 8.60 in August 2007.
 So there is only ghostscript-gpl and probably ghostscript-gnu.
 
 -- 
 Regards,
 Daniel
 
 
   

-- 
Please don't send me any Word- or Powerpoint-Attachments
unless it's absolutely neccessary. - Send simply Text.
See http://www.gnu.org/philosophy/no-word-attachments.html
In a world without fences and walls nobody needs gates and windows.



Re: [gentoo-user] MIME-type application/octet-stream missing on KDE 3

2008-11-17 Thread Dale
Francisco Ares wrote:
 Hi, guys

 Suddenly, after an update (sorry, no idea on which packages were
 updated / upgraded / re-emerged) several (if not all) KDE 3.5 programs
 show a message box saying that the MIME type application/octet-stream
 could not be found.

 Any ideas on what happened and, most important, what can I do to
 correct this?

 Thanks a lot!!
 Francisco
 -- 
 If you have an apple and I have an apple and we exchange apples then
 you and I will still each have one apple. But if you have an idea and
 I have one idea and we exchange these ideas, then each of us will have
 two ideas. - George Bernard Shaw

Well, I found this somewhat old post: 

http://www.linuxquestions.org/questions/susenovell-60/error-could-not-find-mime-type-applicationoctet-stream-529525/
 


That said, I looked at the location described and I don't even have the
file that they are saying to edit.  Is it possible that you have this
file and it is no longer needed after the update?

Just a thought. 

Dale

:-)  :-)



Re: [gentoo-user] MIME-type application/octet-stream missing on KDE 3

2008-11-17 Thread Francisco Ares
On Tue, Nov 18, 2008 at 1:11 AM, Dale [EMAIL PROTECTED] wrote:

 Francisco Ares wrote:
  Hi, guys
 
  Suddenly, after an update (sorry, no idea on which packages were
  updated / upgraded / re-emerged) several (if not all) KDE 3.5 programs
  show a message box saying that the MIME type application/octet-stream
  could not be found.
 
  Any ideas on what happened and, most important, what can I do to
  correct this?
 
  Thanks a lot!!
  Francisco
  --
  If you have an apple and I have an apple and we exchange apples then
  you and I will still each have one apple. But if you have an idea and
  I have one idea and we exchange these ideas, then each of us will have
  two ideas. - George Bernard Shaw

 Well, I found this somewhat old post:


 http://www.linuxquestions.org/questions/susenovell-60/error-could-not-find-mime-type-applicationoctet-stream-529525/


 That said, I looked at the location described and I don't even have the
 file that they are saying to edit.  Is it possible that you have this
 file and it is no longer needed after the update?

 Just a thought.

 Dale

 :-)  :-)


Thanks, a lot, Dale, that was it.

That proves old ghosts use to get back to haunt us once in a while ;-)

Francisco


Re: [gentoo-user] Java bad version number - what to up/downgrade?

2008-11-17 Thread Grant
 I'm getting the following from dumphd:

 bad version number in .class file

 I gather that I may have the wrong version of something Java installed
 but I don't know how that works.  Can anyone tell me what package I
 should try upgrading or downgrading?

 This normally means the class file is from a new version of Java then the
 virtual machine trying to run it (i.e. class files compiled under Java 1.5,
 but your trying to run it in Java 1.4).

 java-config -L (without quotes) will show you what virtual machines you have
 installed. On my machine it shows (the asterisk is the currently selected
 one, i.e. what will be used to run java applications):

 [EMAIL PROTECTED] ~ $ java-config -L
 The following VMs are available for generation-2:
 1)  Blackdown JDK 1.4.2.03 [blackdown-jdk-1.4.2]
 2)  Sun JDK 1.5.0.16 [sun-jdk-1.5]
 *)  Sun JDK 1.6.0.07 [sun-jdk-1.6]
 [EMAIL PROTECTED] ~ $

 If the newest VM isn't selected as the default, read the man page for
 java-config and tell it to set the newest one as default (1.6 is the newest
 version).

 Shawn

Thank you very much.  Since I'm not a Java developer, do I want jre as
opposed to jdk?

- Grabt



Re: [gentoo-user] MIME-type application/octet-stream missing on KDE 3

2008-11-17 Thread Dale
Francisco Ares wrote:



 Thanks, a lot, Dale, that was it.

 That proves old ghosts use to get back to haunt us once in a while ;-)

 Francisco


What made me think it may not be needed is that I don't have it and I
have the latest KDE 3.5 installed.  I know sometimes files move or
something and emerge does not touch a users directory that I have ever
seen.  I'm not sure but I doubt emerge can.  Looks like KDE should have
fixed it but I'm sure they are busy on KDE 4.  ;-)

I don't like ghosts in my puter either.  At least with mine, it is
usually the idiot in the chair.

Dale

:-)  :-) 



[gentoo-user] Getting rid of all kde components

2008-11-17 Thread Harry Putnam
I've decided to stop using KDE after yrs of use... given that gentoo
compiles everything from scratch, its just getting to much time lost
jacking around with kde during upgrades.

But also I'd forgotten what the oldtime linux desktops were like.
fvwm was the main one in use when I started circa 1997.

I see blackbox is even a bit more stark... but since I am mainly
command line oriented it doesn't present a problem.

But cutting to the chase here, I'm getting rid of KDE but I see
kde-base/arts shows lots of dependencies.  Even now that I've changed
my USE flag `kde' to `-kde'

  qdepends  -C kde-base/arts|awk '{gsub(/ /,\n);print}'
  kde-base/arts-3.5.10:
  x11-libs/qt:3
  =dev-libs/glib-2
  media-libs/alsa-lib
  media-libs/libogg
  media-libs/libvorbis
  media-sound/esound
  media-libs/libmad
  media-libs/audiofile
  dev-util/pkgconfig
  =sys-devel/automake-1.9*
  =sys-devel/autoconf-2.61
  sys-devel/libtool
  sys-devel/make
  dev-util/pkgconfig
  dev-lang/perl

I'm pretty sure at least some of this doesn't actually depend on
kde-base/arts but not quite sure what to make of the output.

 




Re: [gentoo-user] How to install ghhhostscript ?

2008-11-17 Thread Daniel Pielmeier
2008/11/18  [EMAIL PROTECTED]:
 While trying to install ghostscript-gpl I got this one:

 Calculating dependencies... done!
 [blocks B ] app-text/ghostscript-gpl (is blocking 
 app-text/ghostscript-esp-8.15.4-r1)
 [blocks B ] app-text/ghostscript-esp (is blocking 
 app-text/ghostscript-gpl-8.62)

  * Error: The above package list contains packages which cannot be
  * installed at the same time on the same system.


 It seems there is still a difference ?!?!

 I want to use turboprint (propietary linux printer driver suit)
 finally. What to choose?

 Should I remove first both version, than install one (which one?) and
 then reinstall cups and then reinstall turboprint and then finally
 being able to print again (or not?) ?

 Before doing anything else which screws up my system even more I would
 thank the experts here for any advice in advance ! :)

Did you uninstall app-text/ghostscript-esp beforehand? If yes there is
the possibility that some app depends on app-text/ghostscript-esp
instead of the ghostscript virtual but I don't think this is the case.

-- 
Regards,
Daniel



Re: [gentoo-user] Getting rid of all kde components

2008-11-17 Thread Alan McKinnon
On Tuesday 18 November 2008 08:14:02 Harry Putnam wrote:
 I've decided to stop using KDE after yrs of use... given that gentoo
 compiles everything from scratch, its just getting to much time lost
 jacking around with kde during upgrades.

 But also I'd forgotten what the oldtime linux desktops were like.
 fvwm was the main one in use when I started circa 1997.

 I see blackbox is even a bit more stark... but since I am mainly
 command line oriented it doesn't present a problem.

 But cutting to the chase here, I'm getting rid of KDE but I see
 kde-base/arts shows lots of dependencies.  Even now that I've changed
 my USE flag `kde' to `-kde'

remove arts and any other kde-related flags from USE and package.use. Unmerge 
arts, continue

arts is only used in kde, it's a piece of utter trash and totally not needed - 
everything it ever did can now be done by alsa.

   qdepends  -C kde-base/arts|awk '{gsub(/ /,\n);print}'
   kde-base/arts-3.5.10:
   x11-libs/qt:3

   =dev-libs/glib-2

   media-libs/alsa-lib
   media-libs/libogg
   media-libs/libvorbis
   media-sound/esound
   media-libs/libmad
   media-libs/audiofile
   dev-util/pkgconfig
   =sys-devel/automake-1.9*

   =sys-devel/autoconf-2.61

   sys-devel/libtool
   sys-devel/make
   dev-util/pkgconfig
   dev-lang/perl

 I'm pretty sure at least some of this doesn't actually depend on
 kde-base/arts but not quite sure what to make of the output.

You have it the wrong way round. Those packages do not depend on arts, instead 
arts depends on them. They are needed to either run or to build arts.

Don't worry about it. portage knows how to build anything that's missing after 
you are done cleaning up

-- 
alan dot mckinnon at gmail dot com




[gentoo-user] Re: Getting rid of all kde components

2008-11-17 Thread Harry Putnam
Alan McKinnon [EMAIL PROTECTED] writes:

 I'm pretty sure at least some of this doesn't actually depend on
 kde-base/arts but not quite sure what to make of the output.

 You have it the wrong way round. Those packages do not depend on
 arts, instead arts depends on them. They are needed to either run or
 to build arts.

Egad, of course.  And I've used several of the depends commands for
quite some time now yet every once in a while I get to thinking
backwards with it.  

Thanks for the friendly nudge instead of a nasty whack with a 2x4.




Re: [gentoo-user] Getting rid of all kde components

2008-11-17 Thread Dirk Heinrichs
Am Dienstag 18 November 2008 07:14:02 schrieb ext Harry Putnam:

 I've decided to stop using KDE after yrs of use... given that gentoo
 compiles everything from scratch, its just getting to much time lost
 jacking around with kde during upgrades.

Hmm, you already complained about installation (or compile) time in the cfg-
update thread. Why did you choose Gentoo, if you don't like compiling stuff?

BTW: I run KDE updates in the night.

Bye...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Wanheimerstraße 68  | Web:  http://www.capgemini.com
D-40468 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: wwwkeys.pgp.net



signature.asc
Description: This is a digitally signed message part.


Re: [gentoo-user] Java bad version number - what to up/downgrade?

2008-11-17 Thread Shawn Haggett

On Tue, 18 Nov 2008 02:56:57 pm Grant wrote:

 I'm getting the following from dumphd:

 bad version number in .class file

 I gather that I may have the wrong version of something Java installed
 but I don't know how that works.  Can anyone tell me what package I
 should try upgrading or downgrading?

 This normally means the class file is from a new version of Java then the
 virtual machine trying to run it (i.e. class files compiled under Java
 1.5, but your trying to run it in Java 1.4).

 java-config -L (without quotes) will show you what virtual machines you
 have installed. On my machine it shows (the asterisk is the currently
 selected one, i.e. what will be used to run java applications):

 [EMAIL PROTECTED] ~ $ java-config -L
 The following VMs are available for generation-2:
 1)  Blackdown JDK 1.4.2.03 [blackdown-jdk-1.4.2]
 2)  Sun JDK 1.5.0.16 [sun-jdk-1.5]
 *)  Sun JDK 1.6.0.07 [sun-jdk-1.6]
 [EMAIL PROTECTED] ~ $

 If the newest VM isn't selected as the default, read the man page for
 java-config and tell it to set the newest one as default (1.6 is the
 newest version).

 Shawn

Thank you very much.  Since I'm not a Java developer, do I want jre as
opposed to jdk?

- Grabt


Yeah, the JRE will be fine. The important thing is just which version is 
active. I do Java development, hence the JDK.


Shawn