* [gentoo-dev] cups extras
@ 2001-09-12 19:39 Collins Richey
2001-09-12 20:35 ` Daniel Robbins
0 siblings, 1 reply; 5+ messages in thread
From: Collins Richey @ 2001-09-12 19:39 UTC (permalink / raw
To: gentoo
The cups support appears to be incomplete
1) There is no cups startup script i t can be real simple cupsd & did
it for me.
2) The extra printer definition files that make cups actually usable
seem to be missing.
Any plans to correct this?
--
Collins Richey
Denver Area
gentoo_rc6 xfce+sylpheed
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] cups extras
2001-09-12 19:39 [gentoo-dev] cups extras Collins Richey
@ 2001-09-12 20:35 ` Daniel Robbins
2001-09-12 21:51 ` Collins Richey
0 siblings, 1 reply; 5+ messages in thread
From: Daniel Robbins @ 2001-09-12 20:35 UTC (permalink / raw
To: gentoo-dev
On Wed, Sep 12, 2001 at 07:50:27PM -0600, Collins Richey wrote:
> The cups support appears to be incomplete
>
> 1) There is no cups startup script i t can be real simple cupsd & did
> it for me.
>
> 2) The extra printer definition files that make cups actually usable
> seem to be missing.
>
> Any plans to correct this?
Collins,
How about fixing these things as you find them and submitting patches
or corrected ebuilds? This is a community project.
Best Regards,
--
Daniel Robbins <drobbins@gentoo.org>
Chief Architect/President http://www.gentoo.org
Gentoo Technologies, Inc.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] cups extras
2001-09-12 20:35 ` Daniel Robbins
@ 2001-09-12 21:51 ` Collins Richey
2001-10-22 5:20 ` Collins Richey
0 siblings, 1 reply; 5+ messages in thread
From: Collins Richey @ 2001-09-12 21:51 UTC (permalink / raw
To: gentoo-dev
On Wed, 12 Sep 2001 20:34:34 -0600 Daniel Robbins
<drobbins@gentoo.org> wrote:
> On Wed, Sep 12, 2001 at 07:50:27PM -0600, Collins Richey wrote:
> > The cups support appears to be incomplete
> >
> > 1) There is no cups startup script i t can be real simple cupsd &
> did
> > it for me.
> >
> > 2) The extra printer definition files that make cups actually
> usable
> > seem to be missing.
> >
> > Any plans to correct this?
>
> Collins,
>
> How about fixing these things as you find them and submitting
> patches
> or corrected ebuilds? This is a community project.
>
> Best Regards,
>
Will try.
--
Collins Richey
Denver Area
gentoo_rc6 xfce+sylpheed
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] cups extras
@ 2001-09-13 8:06 Peter Kadau
0 siblings, 0 replies; 5+ messages in thread
From: Peter Kadau @ 2001-09-13 8:06 UTC (permalink / raw
To: gentoo-dev
hi !
> > > The cups support appears to be incomplete
> > >
> > > 2) The extra printer definition files that make cups actually
> > usable
> > > seem to be missing.
ahem, maybe i misunderstood you completely,
but what about emergeing
net-print/gimp-print-cups as well (e.g.) ??
works fine for me. (hp inkjet)
after all, cups is intended as infrastructure only...
ciao
peter
-----------------------------------------------------------------
Peter Kadau <peterdotkadauatwebdotde>
"Why program by hand in five days what you can
spend five years of your life automating ?"
-----------------------------------------------------------------
______________________________________________________________________________
Flug.de - 570.000 Nutzer, ein Ziel: der optimale Flug
http://flug.de/sb/?PP=0-5-100-105-12
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] cups extras
2001-09-12 21:51 ` Collins Richey
@ 2001-10-22 5:20 ` Collins Richey
0 siblings, 0 replies; 5+ messages in thread
From: Collins Richey @ 2001-10-22 5:20 UTC (permalink / raw
To: gentoo-dev
On Wed, 12 Sep 2001 22:02:11 -0600 Collins Richey <erichey2@home.com>
wrote:
> On Wed, 12 Sep 2001 20:34:34 -0600 Daniel Robbins
> <drobbins@gentoo.org> wrote:
>
> > On Wed, Sep 12, 2001 at 07:50:27PM -0600, Collins Richey wrote:
> > > The cups support appears to be incomplete
> > >
> > > 1) There is no cups startup script i t can be real simple cupsd
> &
> > did
> > > it for me.
> > >
> > > 2) The extra printer definition files that make cups actually
> > usable
> > > seem to be missing.
> > >
> > > Any plans to correct this?
> >
> > Collins,
> >
> > How about fixing these things as you find them and submitting
> > patches
> > or corrected ebuilds? This is a community project.
> >
> > Best Regards,
> >
>
> Will try.
>
Just checking some old mails. If you haven't already corrected this,
here is the /etc/cupsd script that I created.
----------start /etc/init.d/cupsd
#!/sbin/runscript
depend() {
need xinetd
}
autoconfig() {
if [ ! -e /etc/cups/cupsd.conf ] ; then
eerror "You need an /etc/cups/cupsd.conf file to run cupsd"
return 1
fi
}
start() {
autoconfig || return 1
ebegin "Starting cupsd"
start-stop-daemon --start --quiet --exec /usr/sbin/cupsd 1>&2
eend $?
}
stop() {
ebegin "Stopping cupsd"
start-stop-daemon --stop --quiet -u root -n cupsd 1>&2
# long explanation removed; basically: keep things sane
if [ $? -ne 0 ] ; then
if [ -e /dev/shm/.init.d/started/cupsd ] ; then
eend 0
fi
fi
eend $?
}
----------end /etc/init.d/cupsd
--
Collins Richey
Denver Area
gentoo_rc6 xfce+sylpheed
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2001-10-22 11:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-12 19:39 [gentoo-dev] cups extras Collins Richey
2001-09-12 20:35 ` Daniel Robbins
2001-09-12 21:51 ` Collins Richey
2001-10-22 5:20 ` Collins Richey
-- strict thread matches above, loose matches on Subject: below --
2001-09-13 8:06 Peter Kadau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox