* [gentoo-dev] Newbie + e3? + keymap?
@ 2001-10-26 15:51 Sylvain OBEGI
2001-10-26 16:38 ` [gentoo-dev] s.q.u.e.l.c.h ebuild James M Long
2001-10-26 16:45 ` [gentoo-dev] Newbie + e3? + keymap? Daniel Robbins
0 siblings, 2 replies; 14+ messages in thread
From: Sylvain OBEGI @ 2001-10-26 15:51 UTC (permalink / raw
To: gentoo-dev
Hello
I'm new to Gentoo Linux, and it seems very interesting.
But I have a problem, I don't know if this is the right list for this
but..
I'm trying to install Gentoo with the latest iso image (-r10), but, it
seems that "e3" is not available. I followed the instruction on the
site, but didn't find any editor.. It was not very funny to create
resolv.conf with echo command, but, I don't really want to edit
make.conf that way..
Did I miss something? I guess I did, but don't know what.. Any clues?
Thanks in advance
By the way, is it possible to change keymap at this stage of
installation? I would like to have access to french keyb.
Thanks again
--
Sylvain OBEGI
Email : katios@nolabel.net
ICQ : 661913
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-dev] s.q.u.e.l.c.h ebuild
2001-10-26 15:51 [gentoo-dev] Newbie + e3? + keymap? Sylvain OBEGI
@ 2001-10-26 16:38 ` James M Long
2001-10-27 12:10 ` Martin Schlemmer
2001-10-26 16:45 ` [gentoo-dev] Newbie + e3? + keymap? Daniel Robbins
1 sibling, 1 reply; 14+ messages in thread
From: James M Long @ 2001-10-26 16:38 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 807 bytes --]
I have attached a new ebuild for an app called squelch. It is a ogg vorbis player. It has a wide number of ways to output the file, including arts, esd, oss and alsa. I have tried to make sure that all the dependencies have been included. The run time depends seem to be much larger than the compile ones... hopefully I have done the DEPEND, RDEPEND statements correctly. I have tested it on two different machines (Home and Work) and the only thing I seem not to have working correctly is the dodoc line... that doesn't seem to work at all. The good thing is that it doesn't put files in the wrong place. I would appreciate someone else taking a look at this ebuild.
thanks,
James...
--
James M Long jlong@fedworld.gov
Linux System Admin/Network Engineer semaj@semaj.org
NTIS http://semaj.org
[-- Attachment #2: squelch-1.0.1.ebuild --]
[-- Type: application/octet-stream, Size: 1208 bytes --]
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author James M Long <semaj@semaj.org>
S=${WORKDIR}/${P}
DESCRIPTION="s.q.u.e.l.c.h is an Ogg Vorbis audio player."
SRC_URI="http://www.geoid.clara.net/rik/arch/${P}.tar.gz"
HOMEPAGE="http://www.geoid.clara.net/rik/squelch.html"
DEPEND="virtual/x11 virtual/glibc
>=media-libs/libvorbis-1.0_rc1
>=media-libs/libao-0.8.0
>=x11-libs/qt-x11-2.3.1
>=media-libs/libogg-1.0_rc1"
# The runtime depends are a bit different than the compiling ones
# I created the runtime list from the output of ldd
RDEPEND="{$DEPEND}
>=media-libs/libpng-1.0.12
>=sys-libs/zlib-1.1.3
>=media-libs/jpeg-6b
>=media-libs/libmng-1.0.1
nas? ( >=media-sound/nas-1.4.1 )
>=media-libs/lcms-1.06"
src_compile() {
# this package does not have any info files
./configure \
--host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man || die
emake || die
}
src_install() {
make DESTDIR=${D}
install || die
# I seem to be having an issue with this part
# It doesn't install the files listed below.
dodoc AUTHORS COPYING Changelog INSTALL NEWS README THANKS
}
[-- Attachment #3: digest-squelch-1.0.1 --]
[-- Type: application/octet-stream, Size: 59 bytes --]
MD5 a660bc98bdad863b24578034d9f34ded squelch-1.0.1.tar.gz
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Newbie + e3? + keymap?
2001-10-26 15:51 [gentoo-dev] Newbie + e3? + keymap? Sylvain OBEGI
2001-10-26 16:38 ` [gentoo-dev] s.q.u.e.l.c.h ebuild James M Long
@ 2001-10-26 16:45 ` Daniel Robbins
2001-10-27 9:35 ` Sylvain OBEGI
1 sibling, 1 reply; 14+ messages in thread
From: Daniel Robbins @ 2001-10-26 16:45 UTC (permalink / raw
To: gentoo-dev
On Fri, Oct 26, 2001 at 11:50:44PM +0200, Sylvain OBEGI wrote:
> Hello I'm new to Gentoo Linux, and it seems very interesting. But I have a
> problem, I don't know if this is the right list for this but.. I'm trying to
> install Gentoo with the latest iso image (-r10), but, it seems that "e3" is
> not available. I followed the instruction on the site, but didn't find any
> editor.. It was not very funny to create resolv.conf with echo command, but,
> I don't really want to edit make.conf that way.. Did I miss something? I
> guess I did, but don't know what.. Any clues? Thanks in advance
I forgot to update the instructions... the new editor is now "nano" and is much
better.
> By the way, is it possible to change keymap at this stage of installation? I
> would like to have access to french keyb.
I will be adding international keyboard support most likely to the next ISO CD
release; sorry about the inconvenience!
Best Regards,
--
Daniel Robbins <drobbins@gentoo.org>
Chief Architect/President http://www.gentoo.org
Gentoo Technologies, Inc.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Newbie + e3? + keymap?
2001-10-26 16:45 ` [gentoo-dev] Newbie + e3? + keymap? Daniel Robbins
@ 2001-10-27 9:35 ` Sylvain OBEGI
2001-10-28 15:03 ` [gentoo-dev] Problem adding user + Internationalization Sylvain OBEGI
0 siblings, 1 reply; 14+ messages in thread
From: Sylvain OBEGI @ 2001-10-27 9:35 UTC (permalink / raw
To: gentoo-dev
le sam 27-10-2001 at 00:44 Daniel Robbins a écrit :
> On Fri, Oct 26, 2001 at 11:50:44PM +0200, Sylvain OBEGI wrote:
>
> > Hello I'm new to Gentoo Linux, and it seems very interesting. But I have a
> > problem, I don't know if this is the right list for this but.. I'm trying to
> > install Gentoo with the latest iso image (-r10), but, it seems that "e3" is
> > not available. I followed the instruction on the site, but didn't find any
> > editor.. It was not very funny to create resolv.conf with echo command, but,
> > I don't really want to edit make.conf that way.. Did I miss something? I
> > guess I did, but don't know what.. Any clues? Thanks in advance
>
> I forgot to update the instructions... the new editor is now "nano" and is much
> better.
Ohh.. Ok, thanks!
I think, the most important is to change it on the boot screen ;)
> > By the way, is it possible to change keymap at this stage of installation? I
> > would like to have access to french keyb.
>
> I will be adding international keyboard support most likely to the next ISO CD
> release; sorry about the inconvenience!
No problem, if it's planned..
> Best Regards,
>
> --
> Daniel Robbins <drobbins@gentoo.org>
> Chief Architect/President http://www.gentoo.org
> Gentoo Technologies, Inc.
>
> _______________________________________________
> gentoo-dev mailing list
> gentoo-dev@cvs.gentoo.org
> http://cvs.gentoo.org/mailman/listinfo/gentoo-dev
>
--
Sylvain OBEGI
Email : katios@nolabel.net
ICQ : 661913
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] s.q.u.e.l.c.h ebuild
2001-10-26 16:38 ` [gentoo-dev] s.q.u.e.l.c.h ebuild James M Long
@ 2001-10-27 12:10 ` Martin Schlemmer
0 siblings, 0 replies; 14+ messages in thread
From: Martin Schlemmer @ 2001-10-27 12:10 UTC (permalink / raw
To: gentoo-dev
[-- Attachment #1: Type: text/plain, Size: 1081 bytes --]
On Sat, 2001-10-27 at 01:45, James M Long wrote:
> I have attached a new ebuild for an app called squelch. It is a ogg vorbis player. It has a wide number of ways to output the file, including arts, esd, oss and alsa. I have tried to make sure that all the dependencies have been included. The run time depends seem to be much larger than the compile ones... hopefully I have done the DEPEND, RDEPEND statements correctly. I have tested it on two different machines (Home and Work) and the only thing I seem not to have working correctly is the dodoc line... that doesn't seem to work at all. The good thing is that it doesn't put files in the wrong place. I would appreciate someone else taking a look at this ebuild.
>
> thanks,
>
> James...
>
> --
>
> James M Long jlong@fedworld.gov
> Linux System Admin/Network Engineer semaj@semaj.org
> NTIS http://semaj.org
Hi
Please mail ebuilds to gentoo-ebuild@gentoo.org. Also dont add the
digest :)
--
Martin Schlemmer
Gentoo Linux Developer, Desktop Team Developer
Cape Town, South Africa
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-dev] Problem adding user + Internationalization
2001-10-27 9:35 ` Sylvain OBEGI
@ 2001-10-28 15:03 ` Sylvain OBEGI
2001-10-29 6:50 ` Dan Armak
2001-10-29 9:59 ` Damon M. Conway
0 siblings, 2 replies; 14+ messages in thread
From: Sylvain OBEGI @ 2001-10-28 15:03 UTC (permalink / raw
To: gentoo-dev
Hello
I tried to add an user, but ran into troubles. When doing a adduser
command, i got a message about problem with homedir or something like
that. Of course no home dir is created. And, I cannot log in with the
new user.
Any idea?
How to change add/change language in apps like kde?
Thanks in advance
--
Sylvain OBEGI
Email : katios@nolabel.net
ICQ : 661913
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-28 15:03 ` [gentoo-dev] Problem adding user + Internationalization Sylvain OBEGI
@ 2001-10-29 6:50 ` Dan Armak
2001-10-29 9:59 ` Damon M. Conway
1 sibling, 0 replies; 14+ messages in thread
From: Dan Armak @ 2001-10-29 6:50 UTC (permalink / raw
To: gentoo-dev
On Monday 29 October 2001 00:02, you wrote:
> How to change add/change language in apps like kde?
To install translations for a language, emerge
app-i18n/kde-i18n-<language-code> and, for koffice,
app-i18n/koffice-i18n-<language-code> as well.
To switch to a language, use the kcontrol module
Personalization->Country&Language.
--
Dan Armak
Gentoo Linux Developer, Desktop Team
Matan, Israel
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-28 15:03 ` [gentoo-dev] Problem adding user + Internationalization Sylvain OBEGI
2001-10-29 6:50 ` Dan Armak
@ 2001-10-29 9:59 ` Damon M. Conway
2001-10-29 17:46 ` Sylvain OBEGI
1 sibling, 1 reply; 14+ messages in thread
From: Damon M. Conway @ 2001-10-29 9:59 UTC (permalink / raw
To: gentoo-dev
Sylvain OBEGI wrote:
>Hello
>I tried to add an user, but ran into troubles. When doing a adduser
>command, i got a message about problem with homedir or something like
>that. Of course no home dir is created. And, I cannot log in with the
>new user.
>Any idea?
You need to give useradd the -m option to create the home dir. You need to
run the passwd command on that user to set the pass so you can login.
>How to change add/change language in apps like kde?
No idea.
However, these types of questions are best suited for gentoo-user. Please
use that list for general how-to questions. There are lots of developers
who watch that list. Thanks.
http://cvs.gentoo.org/mailman/listinfo/gentoo-user
kabau
--
"UNIX was not designed to stop you from doing stupid things, because that
would also stop you from doing clever things." --Doug Gwyn
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-29 9:59 ` Damon M. Conway
@ 2001-10-29 17:46 ` Sylvain OBEGI
2001-10-30 9:29 ` Damon M. Conway
0 siblings, 1 reply; 14+ messages in thread
From: Sylvain OBEGI @ 2001-10-29 17:46 UTC (permalink / raw
To: gentoo-dev
le lun 29-10-2001 at 17:57 Damon M. Conway a écrit :
> Sylvain OBEGI wrote:
> >Hello
> >I tried to add an user, but ran into troubles. When doing a adduser
> >command, i got a message about problem with homedir or something like
> >that. Of course no home dir is created. And, I cannot log in with the
> >new user.
> >Any idea?
>
> You need to give useradd the -m option to create the home dir. You need to
> run the passwd command on that user to set the pass so you can login.
>
> >How to change add/change language in apps like kde?
>
> No idea.
>
> However, these types of questions are best suited for gentoo-user. Please
> use that list for general how-to questions. There are lots of developers
> who watch that list. Thanks.
>
> http://cvs.gentoo.org/mailman/listinfo/gentoo-user
>
> kabau
Let me explain myself. I was used to type 'useradd nick' to add a user
with dir & co. So i tought (wrong it seems, and the error message didn't
help me), that there was a bug. And i never thought a user list was the
right place for bug report (btw, if gentoo-user is a good place for bug
report, please tell me, thanks in advance), so i posted my problem here.
Concerning the other question, you are right, this is not the good
place, i thought of this thing just before sending the message, and
didn't even think that there was a list more suited for this (but i was
already a subscriber of gentoo-user.. not a excellent memory ;) (the
next time i'll browse better in the portage tree, the answer was there..
humm).
Btw, it's odd to see that all my questions that i thought were really
dev-related (install/system questions, plans, hotplug) were not
answered, unlike the not-so-dev-related ones. Don't misunderstand me, i
really appreciate your answers (thanks all!), i just find this strange.
Thanks again everyone, and sorry for my 'bad' questions, I'll try to
answer my future ones by myself (or elsewhere).
--
Sylvain OBEGI
Email : katios@nolabel.net
ICQ : 661913
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-29 17:46 ` Sylvain OBEGI
@ 2001-10-30 9:29 ` Damon M. Conway
2001-10-30 9:49 ` Djamil ESSAISSI
0 siblings, 1 reply; 14+ messages in thread
From: Damon M. Conway @ 2001-10-30 9:29 UTC (permalink / raw
To: gentoo-dev
>Let me explain myself. I was used to type 'useradd nick' to add a user
>with dir & co. So i tought (wrong it seems, and the error message didn't
>help me), that there was a bug. And i never thought a user list was the
>right place for bug report (btw, if gentoo-user is a good place for bug
>report, please tell me, thanks in advance), so i posted my problem here.
>Concerning the other question, you are right, this is not the good
>place, i thought of this thing just before sending the message, and
>didn't even think that there was a list more suited for this (but i was
>already a subscriber of gentoo-user.. not a excellent memory ;) (the
>next time i'll browse better in the portage tree, the answer was there..
>humm).
No need to explain. Until recently, this list was the only discussion list
for gentoo. I would post to gentoo-user about issues first to actually
determine if it is a bug. Perhaps it's a case like this where you were
missing a flag or something. Once it's determined to be a bug, a detailed
bug report should be posted to gentoo-dev. Hopefully, we'll have a
bug-tracking system setup for taking in bug reports in a consistent
fashion.
>Btw, it's odd to see that all my questions that i thought were really
>dev-related (install/system questions, plans, hotplug) were not
>answered, unlike the not-so-dev-related ones. Don't misunderstand me, i
>really appreciate your answers (thanks all!), i just find this strange.
I saw your questions, but wanted to let drobbins comment on them. He
creates/coordinates the install images. I imagine others felt the same
way.
>Thanks again everyone, and sorry for my 'bad' questions, I'll try to
>answer my future ones by myself (or elsewhere).
Don't get me wrong. You're questions are fine. I'm just trying to remind
everyone of the gentoo-user list so we can separate the functionality.
kabau
--
"UNIX was not designed to stop you from doing stupid things, because that
would also stop you from doing clever things." --Doug Gwyn
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-30 9:29 ` Damon M. Conway
@ 2001-10-30 9:49 ` Djamil ESSAISSI
2001-10-30 9:52 ` Damon M. Conway
0 siblings, 1 reply; 14+ messages in thread
From: Djamil ESSAISSI @ 2001-10-30 9:49 UTC (permalink / raw
To: gentoo-dev
BTW;
This is not a bug.
This is the new way to add users, because now in this millenium in most cases we are (administrators) not adding real users to systems with a shell and homedir it's mainly for authentification purposes, THEN if YOU (administrator) judge that THAT user shall have a homedir and real shell, you add -m or other stuff (the shell part may be unimplemented everywhere yet ...) .
It's almost a security feauture so we wont accedentally give a shell to johnDoe who ordered his internetaccount over the phone a joeChmuck's CC ...
Of course we all have different tastes , but it is implemented this way on many rescent distros. ...
dont get mad !!!
I always run "blabla --help" before posting an email ! ;-)
On Tue, 30 Oct 2001 10:28:21 -0600
"Damon M. Conway" <damon@chiba.3jane.net> wrote:
:)>Let me explain myself. I was used to type 'useradd nick' to add a user
:)>with dir & co. So i tought (wrong it seems, and the error message
:)didn't
:)>help me), that there was a bug. And i never thought a user list was the
:)>right place for bug report (btw, if gentoo-user is a good place for bug
:)>report, please tell me, thanks in advance), so i posted my problem
:)here.
:)>Concerning the other question, you are right, this is not the good
:)>place, i thought of this thing just before sending the message, and
:)>didn't even think that there was a list more suited for this (but i was
:)>already a subscriber of gentoo-user.. not a excellent memory ;) (the
:)>next time i'll browse better in the portage tree, the answer was
:)there..
:)>humm).
:)
:)No need to explain. Until recently, this list was the only discussion
:)list
:)for gentoo. I would post to gentoo-user about issues first to actually
:)determine if it is a bug. Perhaps it's a case like this where you were
:)missing a flag or something. Once it's determined to be a bug, a
:)detailed
:)bug report should be posted to gentoo-dev. Hopefully, we'll have a
:)bug-tracking system setup for taking in bug reports in a consistent
:)fashion.
:)
:)>Btw, it's odd to see that all my questions that i thought were really
:)>dev-related (install/system questions, plans, hotplug) were not
:)>answered, unlike the not-so-dev-related ones. Don't misunderstand me, i
:)>really appreciate your answers (thanks all!), i just find this strange.
:)
:)I saw your questions, but wanted to let drobbins comment on them. He
:)creates/coordinates the install images. I imagine others felt the same
:)way.
:)
:)>Thanks again everyone, and sorry for my 'bad' questions, I'll try to
:)>answer my future ones by myself (or elsewhere).
:)
:)Don't get me wrong. You're questions are fine. I'm just trying to
:)remind
:)everyone of the gentoo-user list so we can separate the functionality.
:)
:)kabau
:)
:)--
:)"UNIX was not designed to stop you from doing stupid things, because
:)that
:) would also stop you from doing clever things." --Doug Gwyn
:)
:)_______________________________________________
:)gentoo-dev mailing list
:)gentoo-dev@cvs.gentoo.org
:)http://cvs.gentoo.org/mailman/listinfo/gentoo-dev
:)
--
Djamil ESSAISSI
Tel:01.58.64.22.44 - Fax:01.58.64.26.81
Administrateur Systeme / Support Technique
www.francexpress.com - www.serveur-express.com
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-30 9:49 ` Djamil ESSAISSI
@ 2001-10-30 9:52 ` Damon M. Conway
2001-10-30 9:57 ` Djamil ESSAISSI
0 siblings, 1 reply; 14+ messages in thread
From: Damon M. Conway @ 2001-10-30 9:52 UTC (permalink / raw
To: gentoo-dev
> This is not a bug.
Nobody said it was. He thought it might be, and has been corrected.
kabau
--
"UNIX was not designed to stop you from doing stupid things, because that
would also stop you from doing clever things." --Doug Gwyn
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-30 9:52 ` Damon M. Conway
@ 2001-10-30 9:57 ` Djamil ESSAISSI
2001-10-30 10:13 ` Daniel Robbins
0 siblings, 1 reply; 14+ messages in thread
From: Djamil ESSAISSI @ 2001-10-30 9:57 UTC (permalink / raw
To: gentoo-dev
are you bored ?
On Tue, 30 Oct 2001 10:51:51 -0600
"Damon M. Conway" <damon@chiba.3jane.net> wrote:
:)> This is not a bug.
:)
:)Nobody said it was. He thought it might be, and has been corrected.
:)
:)kabau
:)
:)--
:)"UNIX was not designed to stop you from doing stupid things, because
:)that
:) would also stop you from doing clever things." --Doug Gwyn
:)
:)_______________________________________________
:)gentoo-dev mailing list
:)gentoo-dev@cvs.gentoo.org
:)http://cvs.gentoo.org/mailman/listinfo/gentoo-dev
:)
--
Djamil ESSAISSI
Tel:01.58.64.22.44 - Fax:01.58.64.26.81
Administrateur Systeme / Support Technique
www.francexpress.com - www.serveur-express.com
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-dev] Problem adding user + Internationalization
2001-10-30 9:57 ` Djamil ESSAISSI
@ 2001-10-30 10:13 ` Daniel Robbins
0 siblings, 0 replies; 14+ messages in thread
From: Daniel Robbins @ 2001-10-30 10:13 UTC (permalink / raw
To: gentoo-dev
On Tue, Oct 30, 2001 at 05:58:10PM +0100, Djamil ESSAISSI wrote:
> are you bored ?
Please don't post messages like this to the list.
--
Daniel Robbins <drobbins@gentoo.org>
Chief Architect/President http://www.gentoo.org
Gentoo Technologies, Inc.
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2001-10-30 17:12 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-26 15:51 [gentoo-dev] Newbie + e3? + keymap? Sylvain OBEGI
2001-10-26 16:38 ` [gentoo-dev] s.q.u.e.l.c.h ebuild James M Long
2001-10-27 12:10 ` Martin Schlemmer
2001-10-26 16:45 ` [gentoo-dev] Newbie + e3? + keymap? Daniel Robbins
2001-10-27 9:35 ` Sylvain OBEGI
2001-10-28 15:03 ` [gentoo-dev] Problem adding user + Internationalization Sylvain OBEGI
2001-10-29 6:50 ` Dan Armak
2001-10-29 9:59 ` Damon M. Conway
2001-10-29 17:46 ` Sylvain OBEGI
2001-10-30 9:29 ` Damon M. Conway
2001-10-30 9:49 ` Djamil ESSAISSI
2001-10-30 9:52 ` Damon M. Conway
2001-10-30 9:57 ` Djamil ESSAISSI
2001-10-30 10:13 ` Daniel Robbins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox