Re: [Cooker] Apache 2.0.40 is soon to be released (?)

2002-07-17 Thread Alexander Feigl

Am Mittwoch, 17. Juli 2002 12:32 schrieb Oden Eriksson:
> On Wednesday 17 July 2002 12.12, Svetoslav Slavtchev wrote:
> > > > is there a way to get PHP working with apache2,
> > > > may be that could bring more feedback :)
> > >
> > > Hi Svetljo, actually there is a way...
> > >
> > > I just made a simple howto + sources availible at my site, check at:
> > >
> > and hm ...
> > why there is no such package in cooker :)
>
> Because it's damn hard to figure out how to do it... How to make apache1
> and apache2 work with the same php?.. (mission impossible?)

I think that should be possible and I'll probably try it because I have to 
create a fresh mod_php for apache2 anyway. The only problem is:

if we compile a php which can be used for mod_php for apache2, we have to 
compile the whole php with code which is marked as experimental. But this 
should not be a problem for Cooker - as long as it stabilizes before the 
package should be in a stable distribution

Alexander




Re: [Cooker] Mozilla Java Plugin Still Broken

2002-05-29 Thread Alexander Feigl

Am Mittwoch, 29. Mai 2002 20:25 schrieb nDiScReEt:

> How is it that konqueror works still with java but not mozilla? What makes
> mozilla so differnet? Anybody know or have a clue?

AFAIK konqy calls the java binary and does not link the java plugin (as 
mozilla does)

Alexander




Re: [Cooker] Apache 2

2002-05-21 Thread Alexander Feigl

Am Dienstag, 21. Mai 2002 17:52 schrieb Oden Eriksson:
> On Tuesdayen den 21 May 2002 17.17, Alexander Feigl wrote:
> > Am Dienstag, 21. Mai 2002 07:25 schrieb Alexander Feigl:
> > > Am Dienstag, 21. Mai 2002 01:33 schrieb Oden Eriksson:
> > > > Hmm...
> > > >
> > > > I'm using the "mod_php.spec" file as a start point, but getting an
> > > > error I don't understand...
> > > >
> > > > php_functions.c: In function `zif_apache_lookup_uri':
> > > > php_functions.c:93: structure has no member named `boundary'
> > > > php_functions.c:93: structure has no member named `boundary'
> > > > apxs2:Error: Command failed with rc=65536
> > >
> > > Seems like apache changed their headers and made it incompatible. It
> > > compiles with 2.0.36 but not with the newer version cooker seems to
> > > use. You might want to try the apache2filter sources from a php
> > > snapshot
> >
> > As I see now , php 4.2.1 is available. The apache module probably
> > compiles with it. Otherwise you just can delete the offending code line.
> > The patch puts a conditional compile around it and ignores it for newer
> > apache versions
>
> Thanks Alexander!
>
> I have allready packed all the php 4.2.1 stuff but forgot to announce it...
> Which patch are you referring to?

I was referring to the patch which fixed php for recent apache. But it is 
included in 4.2.1.

>
> And, no... I didn't get the mod_php module to compile against apache2 just
> yet.
>
> I will announce my work on this in another mail to the list.
>
> BTW. I'm the (initial) maintainer of the apache2 rpm packages, so if you
> have some valuble feedback about this we all will jump for joy!

Here it comes:

First I changed php.spec. Manually linking libpthread is not needed any more 
and breaks the build process because it is added by configure automatically. 
The option --enable-experimential-zts seems to be needed for apache2 module. 
I hope it won't make php unstable - it is activated automatically if you 
compille the apache2 module with a configure option. If this option is 
enabled, libtsrm is included in libphp_common and you won't have to install 
it explicitly

--- /home/moondream/cvs/mdk/SPECS/php/php.spec  2002-05-20 23:52:05.0 
+0200
+++ php.spec2002-05-21 19:55:41.0 +0200
@@ -143,7 +140,7 @@
 #For eventual compatibility with RedHat
 #%{!?nokerberos:krb5libs="-L%{_prefix}/kerberos/lib -lgssapi_krb5 -lkrb5 
-lk5crypto -lcom_err"}
 
-LIBS="$LIBS -lpthread $krb5libs" 
+LIBS="$LIBS $krb5libs" 
 export LIBS
 
 EXTENSION_DIR="/usr/lib/php/extensions"
@@ -188,6 +185,7 @@
--with-openssl=%{_prefix} \
--without-aspell \
--without-kerberos \
+--enable-experimental-zts \
`for i in %{external_modules}; do echo --without-${i} --disable-${i}; done`
 
 ###This configuration makes a dependency on those libs:




/usr/src/php-devel/buildext libphp4 "-lapr  -lphp_common" \
"sapi_apache2.c php_functions.c apache_config.c" "-I/usr/include/apache2"

should build the module. I didn't test it but tested it with a changed 
include/lib path which was referring to my self-compiled apache2


Alexander Feigl




Re: [Cooker] Apache 2

2002-05-21 Thread Alexander Feigl

Am Dienstag, 21. Mai 2002 07:25 schrieb Alexander Feigl:
> Am Dienstag, 21. Mai 2002 01:33 schrieb Oden Eriksson:
> > Hmm...
> >
> > I'm using the "mod_php.spec" file as a start point, but getting an error
> > I don't understand...
> >
> > php_functions.c: In function `zif_apache_lookup_uri':
> > php_functions.c:93: structure has no member named `boundary'
> > php_functions.c:93: structure has no member named `boundary'
> > apxs2:Error: Command failed with rc=65536
>
> Seems like apache changed their headers and made it incompatible. It
> compiles with 2.0.36 but not with the newer version cooker seems to use.
> You might want to try the apache2filter sources from a php snapshot

As I see now , php 4.2.1 is available. The apache module probably compiles 
with it. Otherwise you just can delete the offending code line. The patch 
puts a conditional compile around it and ignores it for newer apache versions


> Alexander Feigl





Re: [Cooker] Apache 2

2002-05-20 Thread Alexander Feigl

Am Dienstag, 21. Mai 2002 01:33 schrieb Oden Eriksson:

> Hmm...
>
> I'm using the "mod_php.spec" file as a start point, but getting an error I
> don't understand...
>
> php_functions.c: In function `zif_apache_lookup_uri':
> php_functions.c:93: structure has no member named `boundary'
> php_functions.c:93: structure has no member named `boundary'
> apxs2:Error: Command failed with rc=65536

Seems like apache changed their headers and made it incompatible. It compiles 
with 2.0.36 but not with the newer version cooker seems to use. You might 
want to try the apache2filter sources from a php snapshot


>
> Here's my (simple) changes to the "mod_php.spec" file:
>
> /usr/sbin/apxs2 -c -I. -I -I./main -I. -I/usr/include/php \
> -I/usr/include/php/main \
> -I/usr/include/php/Zend \
> -I/usr/include/php/TSRM \
> -lphp_common -lpthread -lgdbm -ldb -lapr -laprutil \
> sapi_apache2.c apache_config.c php_functions.c -o libphp4.so
>
> Are you sure the tsrm library needs to be there? How should I make the php
> package provide it?

I tried it without it but got unresolved symbols. libtsrb should be created by 
standard make processs - but it might miss thread support because -lpthread 
is manually added by the spec file. You might want to try to install libtsrm 
manually and add it to the spec file

Alexander Feigl






Re: [Cooker] Apache 2

2002-05-20 Thread Alexander Feigl

Am Montag, 20. Mai 2002 23:39 schrieb Oden Eriksson:
> On Mondayen den 20 May 2002 21.43, Alexander Feigl wrote:
> > Am Montag, 20. Mai 2002 22:35 schrieb Oden Eriksson:
> > > On Mondayen den 20 May 2002 20.17, J.P. Pasnak wrote:
> > > > On May 20, 2002 03:15 am, Oden Eriksson wrote:
> > > > > On Mondayen den 20 May 2002 10.30, Lonnie Borntreger wrote:
> > > > > > What's the target for making Apache 2 the "default" server
> > > > > > instead of Apache 1?
> > > > >
> > > > > I think it's like this:
> > > > >
> > > > > 1. When apache2 is stable.
> > > > > 2. When the other softwares for apache1 works for apache2.
> > > >
> > > > Speaking of which, does anyone know the status of PHP and Apache2?
> > >
> > > No, but I was about to start trying to make a package.
> >
> > I got php support working after some experiments. Seems to work well here
>
> Would you mind sharing how you did it?

It was more or less a trial and error procedure. It don't remember it exactly 
but here is the rough procedure. If this does fail I'll try to compile it 
again as soon as I have time and give better instructions.

- I used the php-devel files as a base. The main problem was that libtsrm is 
needed by the module but it is not included in the package

- I started with php source and compiled a own php with mod_php included. This 
failed. I don't remember if it compiled but if it compiled  it crashed httpd. 

- I took the libtsrm of the building process, created a normal library archive 
from it (libtsrm.a)

- I used buildext to compile the apache2filter source files, linked it against 
libphp_common, libapr and libtsrm

This resulted in a libphp4.so that worked with apache2. I'm using it on my 
home network. It is constantly used to set the machine online and offline.

Alexander Feigl





[Cooker] ip-up script invoking sendmail

2002-04-30 Thread Alexander Feigl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

currently ip-up in /etc/ppp is invoking sendmail when the ppp connection is 
established. This leads to problems here. I use sendmail as mail server in my 
small home network (3 computers). Sendmail is sending the emails to our email 
providers but they don't accept this if the same IP didn't authenticate with 
POP before (SMTP after POP). One of them even completely rejects the email 
and it is returned to the sender.

Could you add an option somewhere in /etc/sysconfig to disable this behaviour. 
I'm handling email sending in ip-up.local anyway and want to turn off 
sendmail queue sending in ip-up. I removed the sendmail invocation for now 
but this is not a good solution because I might forget to remove it again 
after an upgrade

Alexander Feigl
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8zpihcXuZwiyBFvARAqItAKCmNrsfCGojLjxEPPWWiPjIJDFNUQCgkk9z
oHkey/6JiO49xEglgKQFt3I=
=tzOV
-END PGP SIGNATURE-





[Cooker] Fix for Canon BJC 6000 (gimp-print) in Cooker?

2002-03-10 Thread Alexander Feigl

Hi!

Some days ago gimp-print 4.2.1pre3 was released. According to the ChangeLog 
it includes a fix for the scaling problem with Canon printers. Is this fix 
included in Cooker packages? I didn't see it in the ChangeLog of the Cooker 
RPMs yet. 

The fix is very urgent. It makes printing unusable for Canon users. It should 
be possible to isolate the fix and put it in the 4.2.0 Cooker package as it 
probably not acceptable to put a pre-release into Cooker just before a 
release

Alexander





[Cooker] Still problems with gimp-print and Canon BJC 6000

2002-02-01 Thread Alexander Feigl

Hi!

I still have problems with Cookers gimpprint and my Canon BJC 6000 printer. I 
checked my configuration and I am sure that I use the correct printer 
driver.All my printouts are double sized in horizontal direction. I know that 
an older gimpprint package was ok (probably the one released with Mandrake 
8.1 - but I will check that soon). 

Should I try to compile gimpprint by myself from latest gimpprintCVS and/or 
should I report the bug to the gimpprint people?

Alexander




[Cooker] Problems with cups-gimpprint and Canon BJC 6000

2002-01-27 Thread Alexander Feigl

Hi!

I have problems with printing at the moment using cups-gimpprint from Cooker 
and a Canon BJC 6000 printer. I updated about Wednesday last week. 

The printout seems to have double width or even more - therefore only a part 
of the printout fits onto the paper. The height of the printout seems to be 
correct. 

This problem is specific to Cooker. Can anybody reproduce this?

Alexander




[Cooker] cdparanoia version mismatch

2001-11-03 Thread Alexander Feigl

Hi!

The cdparanoia RPM from yesterday's cooker claims to be version 9.8 but
it is only version 9.7. You can check this by reading the version output
of cdparanoia.

Could someone fix that?

Alexander







[Cooker] linuxconf-lang bad dependencies

2001-09-13 Thread Alexander Feigl

Hi!

There are bad dependencies in linuxconf-lang. Probably there are spaces 
missing in the .spec file. It requires a package like this

linuxconf-1.26-3mdk

and not linuxconf of version 1.26-3mdk

Alexander Feigl




Re: [Cooker] KreaceCD and one missing icons

2001-08-30 Thread Alexander Feigl

On Thursday, 30. August 2001 19:22, Claudio wrote:
> I found a very interesting thing yesterday: I installed Cooker and KreateCD
> from contribs, and now I have an entry "Create ISO image..." when I
> right-click on files or directory in Konqueror. It's wonderful, but I
> suppose it misses an icon because there's an horrible "?" behind that
> entry... is it possible to add an icon for that scope?
> C.

Thanks for the hint. I (the maintainer of kreatecd) will add icons for the 
next release - which is scheduled for this day. You can download the source 
from http://www.kreatecd.de as soon as it is ready. I might have to time to 
package for cooker too.

Alexander





Re: [Cooker] euro support in Mandrake

2001-08-29 Thread Alexander Feigl

On Wednesday, 29. August 2001 07:29, Alexander Skwar wrote:
> So sprach »Fabrice FACORAT« am 2001-08-29 um 03:17:13 +0200 :
> > As the Euro will be use by the EuroClub members at the end of the year,
> > and that people begins to move on it, is it possible that Mandrake 8.1
> > supports Euro by default ?
>
> Uh?  I've set my locale settings to de_DE, and at least on the console
> I already have Euro.  In X not, however.  But that may be because I
> didn't do a clean install for quite some time now.
>
> Alexander Skwar

I did a fresh install about 2 weeks ago. The current status:

Console : Euro works
Mozilla : Euro works without de_DE@euro
Koffice : Euro does not work - cannot get it to work with de_DE@euro
Gnumeric : Euro does not work - starts to work with de_DE@euro

most other X apps probably do not work with Euro


ALexander




[Cooker] Rebuild of packages with dead dependencies

2001-08-15 Thread Alexander Feigl

Hi!

Can someone at Cooker trigger a rebuild of packages which have dependencies 
on packages which don't seem to be in Cooker any more :

xdelta-2.0-0.Beta1.2mdk require [libdb-3.1.so] which
  is not available in any medium listed
HTML-Mason-1.03-1mdk require [HTML-Embperl] which
  is not available in any medium listed
php-4.0.6-3mdk require [libgdbm1] which
  is not available in any medium listed
apache-devel-1.3.20-1mdk require [libgdbm1-devel] which
  is not available in any medium listed
apache-source-1.3.20-1mdk require [libgdbm1-devel] which
  is not available in any medium listed
bronc-0.60-2mdk require [HTML-Embperl] which
  is not available in any medium listed
gated-3.5.11-6mdk require [libdb-3.1.so] which
  is not available in any medium listed
mars-nwe-0.99pl20-3mdk require [libgdbm1] which
  is not available in any medium listed
php-dba_gdbm_db3-4.0.6-2mdk require [libgdbm1] which
  is not available in any medium listed
phpgroupware-0.9.10-1mdk require [libgdbm1] which
  is not available in any medium listed
xdelta-devel-2.0-0.Beta1.2mdk require [libdb-3.1.so] which
  is not available in any medium listed

Alexander




Re: [Cooker] RPM database not properly updated when installing/ upgrading packages?!

2001-08-13 Thread Alexander Feigl

On Monday, 13. August 2001 02:22, Jose wrote:
> Here is a example...
>
> [root@cool rpms]# rpm -Uvh chromium-0.9.12-3mdk.i586.rpm
> Preparing...###
> [100%]
>1:chromium###
> [100%]
>
> now when i do a query nothing shows up, no version number, no error
> message
> telling me the package is not installed, it also does the same thing if
> i
> give rpm the -qil -v or -e flags (the actual files don't appear to be
> deleted
> by the -e flag).  'rpm -qa |grep chro' does not yield any results
> either.
> I can tell the package did install and the before/ after scripts appear
> to be
> running.
>

Same here with apache-common. I already filed a bug report at qa and I hope 
this will get fixed really soon as I won't touch my Cooker system and can't 
do further testing until this gets fixed. It's a very nasty bug - and RPM is 
one of the most important packages I think.

It would be great if someone could give me / us older RPM packages which do 
work. It would be even better if that bug could be fixed within the next 
days. 

Alexander




[Cooker] Strange RPM problems

2001-08-03 Thread Alexander Feigl

Hi!

I have some database problems since I upgraded to the latest RPM package of 
cooker.

When doing an upgrade of a package I get:

rpm --upgrade strace-4.3-2mdk.i586.rpm
rpmdb: Unable to allocate 8247 bytes from mpool shared region: Cannot 
allocate memory
error: cannot open Depends index using db3 - Cannot allocate memory (12)

At the same time I created a minimal boot system (which I might burn onto a 
CD-R as rescue system). At first everything was OK, but then I got some other 
errors from RPM

rpm -r /daten2/rescue --upgrade sh-utils-2.0.11-3mdk.i586.rpm  --force
Fehler: db3 error(-30985) from db->verify: DB_VERIFY_BAD: Database 
verification failed
Fehler: db3 error(-30985) from db->verify: DB_VERIFY_BAD: Database 
verification failed
Fehler: db3 error(-30985) from db->verify: DB_VERIFY_BAD: Database 
verification failed
Fehler: db3 error(-30985) from db->verify: DB_VERIFY_BAD: Database 
verification failed
Fehler: db3 error(-30985) from db->verify: DB_VERIFY_BAD: Database 
verification failed

Doing a rebuilddb doesn't help at all.

Is this a local problem or a bug in RPM? Is my rpm database corrupted? Is 
there any easy way to fix it?

Alexander




Re: [Cooker] libqt2-devel and php-mysql problems

2001-06-18 Thread Alexander Feigl

Sami Nieminen wrote:

>2. trying to use Apache + php + mysql makes apache non-startable. Removing
>php-mysql helps, but then I don't have mysql support anymore. Apache error
>log doesn't tell anything about the problem.
>
Same here. A simple recompile of the SRPMS of php, php-mysql ... and 
mod_php was enough.

Alexander Feigl







Re: [Cooker] netscape problems

2001-05-25 Thread Alexander Feigl

Could also be ECN which was enabled in 2.4.4 according to the ChangeLog 
of the kernel RPM. Some sites / servers don't work because their IP 
stack is broken.

Try to reach : www.gracenote.com , www.teleauskunft.de or 
www.hummingbird.com ( this is no advertising. :) )

If required I might find some more information about the ECN problems. I 
read it some time  ago in the internet and might find it again.

Alexander Feigl

OS wrote:

>Ah ha ! I thought it was just me ! 
>
>Doing a traceroute it appears that the latest 2.4.4 kernels (or at least the 
>Mandrake versions) appear to be screwing up either the DNS stuff or some 
>other part of the IP (you'd never guess I don't what I'm talking 
>about  :-)  ). Switching back to a 2.4.0 kernel and the problem goes away, 
>back to 2.4.4-1mdk or 2.4.4-5mdk and the problem reappears.
>
>Don't ask me, I only experience the problems !!!
>Owen
>
>
>On Wednesday 23 May 2001 23:12, you wrote:
>
>>Christopher Molnar <[EMAIL PROTECTED]> writes:
>>
>>>I am not sure what changed but netscape has been locking up way more
>>>today than it has done in ages. Any ideas on how to track this down? It
>>>is really bad. It locked up in imap mail updates a few times today as
>>>well.
>>>
>>try to change your fonts, dunno about mail but the netscape was
>>severly broken due of the latest XFree update.
>>
>
>


-- 
Linux is like a Wigwam : no Gates, no Windows but an Apache inside

My Homepage : http://www.moondream.de
KreateCD Homepage : http://www.kreatecd.de







[Cooker] Install doesn't find my SCSI CD-ROMs

2001-03-22 Thread Alexander Feigl

Hi. 

The current version of Cooker doesn't find my SCSI-CDROMs when booting
the CD-ROM created with mkcd . The harddrives which are on the same SCSI
controller got detected, but no CD-ROMs.

My configuration:

SCSI storage controller: Adaptec AHA-2940U2/W (rev 0). 
SCSI storage controller: Symbios Logic Inc. (formerly NCR) 53c815 (rev
4).

My CD-ROM is on the AHA-2940, the Symbios controller is mostly unused
(only a ZIP-drive connected at the moment)

My SCSI setup:

Host: scsi0 Channel: 00 Id: 00 Lun: 00
  Vendor: IBM  Model: DDRS-39130D  Rev: DC1B
  Type:   Direct-AccessANSI SCSI revision: 02
Host: scsi0 Channel: 00 Id: 01 Lun: 00
  Vendor: IBM  Model: DCAS-34330   Rev: S65A
  Type:   Direct-AccessANSI SCSI revision: 02
Host: scsi0 Channel: 00 Id: 02 Lun: 00
  Vendor: PLEXTOR  Model: CD-ROM PX-32TS   Rev: 1.02
  Type:   CD-ROM   ANSI SCSI revision: 02
Host: scsi0 Channel: 00 Id: 04 Lun: 00
  Vendor: TEAC Model: CD-R55S  Rev: 1.0R
  Type:   CD-ROM   ANSI SCSI revision: 02

I did attach an IDE-CDROM last Saturday and installed Cooker. After
booting it, it detected my CD-ROMs without problems. Only the installer
cannot detect them although all modules are loaded.

Does anybody know what goes wrong and what can I do to find the source
of the problem?

Alexander

-- 
Linux is like a Wigwam : no Gates, no Windows but an Apache inside

My Homepage : http://www.moondream.de
KreateCD Homepage : http://www.kreatecd.de





[Cooker] Install report of Cooker (17 Mar 2001)

2001-03-17 Thread Alexander Feigl

Hi!

I want to report problems with my clean install of Cooker (rsync from 17
Mar 2001):

- some of the packages are not in the rpmslist (e.g. libstc++2.10) - so
I added them to get a complete CD-R set. There are still some unresolved
dependencies (like scrollkeeper and an old libstdc++). I could give more
details on this if required.

- I booted from the first CD-R, it booted fine but it didn't find my
SCSI CD-ROMs. It detected my harddisks - which are connected to the same
SCSI adapter - but no CD-ROM and no CD-R burner. To procceed I repaired
and connected a IDE CD-ROM device. I booted - installed the base system
without any further problems. 

- When X was started after booting the system - my monitor reported that
sync is out of range. It worked with the X of the installation process.
This is a bug I read on this list recently. (I have a mga 200 graphics
adapter and use the XFree-4.0.2-11mdk)

- The backspace key (console) behaved not correctly. Is switched to US
keyboard layout and back to German. That seems to have fixed the
problem.

- As this was my first clean Cooker install I was rather impressed by
the changes of the installer since 7.2. For my taste it is almost too
Windows-like :)

I hope X and the SCSI installation problems will be fixed until next
week - I could do another install and test it again


Alexander





Re: [Cooker] Contribution

2001-03-03 Thread Alexander Feigl

On 02 Mar 2001 16:00:26 +0400, Guillaume Rousse wrote:
> 
> On 2001.03.02 12:40:12 +0400 r j wrote:
> > If you still have trouble, try [EMAIL PROTECTED]
> > If he is not the contribs manager, he knows who is. Ask him if this
> > weekend is too late to submit. I don't think it matters if the ap is
> > less than 1.0 rev. Once it's in, it can be updated to fix bugs/whatnot.
> Contrib manager is Lenny <[EMAIL PROTECTED]>. Code freeze affect just
> the main distribution, not contribs, unless the rule changed since last
> release.

I'm already in contact with Lenny. He had problems building kreatecd
because my configure script checks for the correct version of cdrecord
(I got many problem reports because users had a wrong version). To do
this check, cdrecord must be executable (or is there a better way).
cdrecord is not executable on Mandrake Linux unless you are in cdwriter
group. And it seems like Lenny isn't :). If this is not an acceptable
behaviour for Mdk we will have to find a solution. (e.g. hacking my
configure script). 

Alexander

> -- 
> Disaster will occur when visitors are in the room. 
>   -- Murphy's Laws of Teaching n°2
> 
> 



-- 
Linux is like a Wigwam : no Gates, no Windows but an Apache inside

My Homepage : http://www.moondream.de
KreateCD Homepage : http://www.kreatecd.de





[Cooker] Updated Package : kreatecd-0.9.1-2mdk

2001-03-02 Thread Alexander Feigl

Hi.

I just updated my package kreatecd and uploaded it into the incoming
directory. It fixes audio ripping and works now when cdparanoia has the
privileges to rip (which is unfortunately not the case for standard
installation and non-root users).

Greetings

Alexander Feigl





[Cooker] Cdparanoia as non-root

2001-03-01 Thread Alexander Feigl

Hi!

Is there any correct way to rip CDDA with cdparanoia in non-root mode?

cdparanoia cannot find the correct /dev/sg* device for /dev/scd* . It
seems like it only works with generic SCSI support. 

/dev/sg* can only be opened by root, but cdparanoia is not suid-root.
Shouldn't we make cdparanoia usable by cdwriter group like cdda2wav? Is
it save to suid-root cdparanoia?


Alexander

-- 

Linux is like a Wigwam : no Gates, no Windows but an Apache inside

My Homepage : http://www.moondream.de
KreateCD Homepage : http://www.kreatecd.de





Re: [Cooker] Contribution

2001-03-01 Thread Alexander Feigl

On 28 Feb 2001 11:37:40 -0800, r j wrote:
> Hi:
> 

SNIP


> I suggest to try sending to contibutions manager,
> [EMAIL PROTECTED] , again, and keep sending until you get
> response. They are very, very busy. 
> 

Ok, I'll do :)


> The feature freeze was suppose to be in effect already but it has been
> delayed a bit so I think you can still provide the app. - you must get
> it in very soon though. This week!
> 

Ok, that means I'll have to put 0.9.1 + bugfixing diff in. That is in
particular version 1.0.0 without doc and nl translation. 1.0.0 will
probably be released Saturday - which is too late.

> It sounds like very nice ap for MandrakeSoft!
> 

In my opinion it is a very nice app - especially beacuse it supports mp3
burning. :)

> Good Luck.
> 
> rj
> ==
> --- Alexander Feigl <[EMAIL PROTECTED]> wrote:
> > Hi!
> > 
> > I'd like to contribute my application (KreateCD - a CD-R recording
> > software for the K Desktop Environment) to cooker. 
> > 
> > Are the steps on the cooker page still accurate? I already mailed to
> > the
> > contributions manager Monday. (got no anwer yet)
> > 
> > Do I automatically get a @mandrakesoft.com email address or can I
> > ignore
> > the warnings of rpmlint while checking my RPM file?
> > 
> > 
> > Alexander Feigl
> > 
> > 
> > 
> 
> 
> __
> Do You Yahoo!?
> Get email at your own domain with Yahoo! Mail. 
> http://personal.mail.yahoo.com/
> 
> 



-- 
Linux is like a Wigwam : no Gates, no Windows but an Apache inside

My Homepage : http://www.moondream.de
KreateCD Homepage : http://www.kreatecd.de





[Cooker] Contribution

2001-02-28 Thread Alexander Feigl

Hi!

I'd like to contribute my application (KreateCD - a CD-R recording
software for the K Desktop Environment) to cooker. 

Are the steps on the cooker page still accurate? I already mailed to the
contributions manager Monday. (got no anwer yet)

Do I automatically get a @mandrakesoft.com email address or can I ignore
the warnings of rpmlint while checking my RPM file?


Alexander Feigl