Re: MythTV WAS: [Re: [gentoo-user] Are the video files there, or aren't they?] [SOLVED sort of]

2009-02-19 Thread Joost Roeleveld
On Thu, February 19, 2009 6:12 am, Michael Sullivan wrote:
 On Thu, 2009-02-19 at 04:42 +, Stroller wrote:
 On 18 Feb 2009, at 22:41, Michael Sullivan wrote:


snip


 Is it possible that, when you booted with the new kernel  no cards
 were found they were removed from MythTV's database?

 I have never used MythTV, but maybe - under the old kernel - you can
 add them back in using MythTV's setup and they'll work again?

 This doesn't help why the cards are not shown under the new kernel,
 but if you are easily able to add them in then it would demonstrate
 that your hardware is OK  perhaps inspire confidence.

 Stroller.

 I got Myth to work with the 2.6.26-r4 kernel, but I don't plan on using
 this kernel forever.  Is there any way I can find out what modules are
 being loaded with this kernel that aren't being loaded with the new one?

You could check the output of lspci -v to check which drivers are used
for the video-capture card you are using.

--
Joost




Re: [gentoo-user] wicd start failed

2009-02-19 Thread Neil Bothwick
On Thu, 19 Feb 2009 11:11:04 +0800, Chuanwen Wu wrote:

  It looks like the dependencies are wrong,have you filed a bug?  
 Not yet, do you mean in bugzilla?

Yes


-- 
Neil Bothwick

Top Oxymorons Number 9: Political science


signature.asc
Description: PGP signature


Re: [gentoo-user] How to turn off the screen permanently

2009-02-19 Thread Vladimir Rusinov
On Sun, Feb 15, 2009 at 2:22 PM, Marcin Zwd marcin...@gmail.com wrote:

 Well, I've just upgraded my laptop. The old one has ati
 radeon r250 graphics card.  On this card I can easily turn
 off the screen using nice program radeantool of course
 xset dpms force off worked as well. And turn off was
 permanent.  It is worth to mention that I was using
 x11-drivers/xf86-video-ati opensource drivers...  On the
 other hand, the new laptop has nvidia (quadro 135) aboard
 and now I'm using x11-drivers/nvidia-drivers-177.82.
 Everything works fine except one tiny problem now if I turn
 off the screen and backlight after a few seconds the
 backlight is back on!


Try following:
sleep 1  xset dpms force off



-- 
Vladimir Rusinov
http://greenmice.info/


Re: [gentoo-user] perfect IDE

2009-02-19 Thread Andrei Hanganu
Andreas Niederl wrote:
 Hi,
 
 Andrei Hanganu wrote:
 helo group,

 i've been trying the past 2-3 years to find the most usable and nice ide
 for c/c++ code writing. I've been through vim/vim + plugins/emacs +
 different modes/anjuta/kdevelop/codeblocks/eclipse/netbeans ... every
 single one of them has at least one drawback.
 
 I'm thinking the more I get to know Vim and the available plugins, the
 more it becomes like an IDE to me. I guess the same is true for Emacs.
 
 My advice would be to take on of those or any other open IDE and learn
 and extend them to the point that it's perfect for you.
 
 
 Now for your feature requirements list I'm going to concentrate on Vim
 and Emacs as those two are the ones I know.
 
 
 In short words, i am looking for an ide that can do this:
 - syntax highlighting
 - concurrent editing of multiple files (splitting)
 - tabs or buffer list
 - file browser
 - regex search/replace
 
 Both Vim and Emacs can do these basic features.
 Vim even provides a mechanism for saving and restoring editing sessions.
 
 
 - autocomplete (on the fly, not on demand, and maybe smart? - identify
 structures/classes )
 
 Haven't tried it yet, but for Vim word_complete.vim[1] seems to be what
 you're looking for. You should also have a look at Omnicompletion.
 
 As Emacs has hooks for nearly everything it should be doable with it as
 well.
 
 
 - project manager
 
 Don't know about that but it would be nice to have simpler project
 specific settings for Emacs/Vim.
 
 
 - symbol list/browser current editing buffer
 
 That's pretty much ctags/etags, maybe cscope.
 
 
 - flexible build options that include scons, not just makefile
 
 You can put the following in ~/.vimrc:
 autocmd BufEnter ~/path/to/project/* set makeprg=scons
 
 
 - code folding (with detection of blocks)
 
 Vim does it[2]; Emacs seems to have some kind of FoldingMode according
 to Google.
 
 
 - lightweight/ergonomic interface (i dislike space being occupied by the
 bar that displays the line numbers, with a padding of 10px for example)
 
 Both of them are very customisable in this regard.
 
 
 i don't desire gdb or valgrind integration, but would be a +
 
 Emacs features gdb integration and there's Clewn[3] for GVim.
 As for me, I'm rather using a separate screen[4] window in the same session.
 
 
 
 Regards,
 Andi
 
 [1] http://www.vim.org/scripts/script.php?script_id=73
 [2] http://www.linux.com/articles/114138
 [3] http://clewn.sourceforge.net/
 [4] http://www.gnu.org/software/screen/
 
 
hello,

your suggestions are perfectly valid, but both vim and emacs suffer from
the same problem: inconsistency. A very varying group of people writes
these plugins, and if i could get 5 plugins to work correctly i would
reach what i am looking for. Unfortunately, one breaks down other two,
or vice versa. In emacs, which i think i've given the most time, i'm
using right now some panels that bring me the bufferlist, and a
filesystem browser, but they screw up the splitting of windows when the
bottom panel is displayed and the editor word wrap stops working when
browser is displayed. That's just a small description of the general
feeling, these plugins are great, but they usually work great when used
alone, or just one major plugin enabled.

i've checked out open/komodo, the main issue is that it is an ide
designed for web developing, not c compilation as far as i could see.

right now, codeblocks seems to be most functional, and i know they are
working on making split windows function better. I've also switched on
kde4 and latest kate (implies also new kdevelop) has a very interesting
functionality vim like input mode, which seems rather unnatural at
first, but i think it has a lot of potential. I've given some time to
yziss too, but as far as i can see the project has been paused. I like
very much the ideea of an IDE on top of a native VIM editor, and i'm
considering expanding gvim.

regards,
A.



Re: [gentoo-user] How to turn off the screen permanently

2009-02-19 Thread Saphirus Sage
On Feb 19, 2009, at 4:49 AM, Vladimir Rusinov  
vladi...@greenmice.info wrote:







On Sun, Feb 15, 2009 at 2:22 PM, Marcin Zwd marcin...@gmail.com  
wrote:

Well, I've just upgraded my laptop. The old one has ati
radeon r250 graphics card.  On this card I can easily turn
off the screen using nice program radeantool of course
xset dpms force off worked as well. And turn off was
permanent.  It is worth to mention that I was using
x11-drivers/xf86-video-ati opensource drivers...  On the
other hand, the new laptop has nvidia (quadro 135) aboard
and now I'm using x11-drivers/nvidia-drivers-177.82.
Everything works fine except one tiny problem now if I turn
off the screen and backlight after a few seconds the
backlight is back on!

Try following:
sleep 1  xset dpms force off


--
Vladimir Rusinov
http://greenmice.info/


Given you're using nvidia, if you just use the nvidia settings app,  
the graphical one, you can just disable the screen. But, that one's  
actually perminant, as in removing that screen from xorg.conf 

Re: [gentoo-user] kicking non-fresh hda1 from array

2009-02-19 Thread Volker Armin Hemmann
On Donnerstag 19 Februar 2009, Arnau Bria wrote:
 Hi all,

 after a reboot (my machine was up for more than 6 months) I saw my raid
 with only one of two devices used, and I had to read the second
 partioition:

 #mdadm --manage /dev/md1 --add /dev/hda1
 mdadm: re-added /dev/hda1

 # cat /proc/mdstat
 Personalities : [raid1] [multipath] [faulty]
 md1 : active raid1 hda1[2] hdc1[1]
   29302464 blocks [2/1] [_U]
   []  recovery =  2.8% (846976/29302464)
 finish=19.9min speed=23731K/sec


 Looking at dmes I saw this message:


 raid1: raid set md2 active with 1 out of 2 mirrors
 md: considering hdc1 ...
 md:  adding hdc1 ...
 md:  adding hda1 ...
 md: created md1
 md: bindhda1
 md: bindhdc1
 md: running: hdc1hda1
 md: kicking non-fresh hda1 from array!
 md: unbindhda1
 md: export_rdev(hda1)
 raid1: raid set md1 active with 1 out of 2 mirrors
 md: ... autorun DONE.

 so, seems that hda1 was out of sync... is this the meaning?
 How could it happen? cause mdadm did not send any email about my raid
 status

maybe your last shutdown was not really clean - and the disk had not enough 
time to flush its cache completly. Possible explaination: hd with big cache, 
ext3, a bit too fast to turn off at shutdown.





[gentoo-user] Tomcat on Gentoo Linux

2009-02-19 Thread Kaushal Shriyan
Hi,

is there a mailing list to discuss about tomcat application server running
on gentoo ?

Thanks and Regards

Kaushal


[gentoo-user] Tablet PC? Anyone?

2009-02-19 Thread Willie Wong
Hi:

  Does anyone on the list have any experience with Tablet PCs? I know
  many of the Tablets have guides to installation on Gentoo-wiki. Does
  anyone have a personal story to share? Any suggestions of a good,
  sturdy, Tablet that I should consider to buy? 

  I primarily am looking for a device to help note-taking in class. I
  can touch-type in LaTeX quickly enough to catch up to most lecturers
  using blackboards, but using a conventional laptop there is almost
  no way for me to enter diagrams and simple illustrations. I won't
  need handwriting recognition that much: I can still do my notes in
  vim with LaTeX, and just have a macro that opens a small canvas for
  free-hand drawing and embeds the saved image automatically in the
  TeX file. 

  Mainly what I am looking for is some sort of
  pen-mouse/tablet/touchscreen interface that makes drawing diagrams
  simpler (compared to a touchpad or the little dit that sits between
  the g,h, and b keys on a laptop). So if anyone knows of a laptop
  with this kind of built-in interface, it will also be good. 

  I guess my question is: if I am looking to buy a tablet pc, and am
  intending to run gentoo on it, what specific things should I look
  out for (assume I know zilch. I'd rather have redundant information
  than missing information)? Are there any particular brands or models
  that are known to work extremely well?

Thanks, 

Willie
-- 
Reality is a crutch for people who can't handle drugs.
-- Lily Tomlin
Sortir en Pantoufles: up 804 days, 14:54



[gentoo-user] emerge R

2009-02-19 Thread Mark Knecht
Here's one for the zen masters of portage. There is a statistical
programming language called 'R'.

http://www.r-project.org/

Is it in portage? If so how do I find it without all the problems of
weeding through 1000's of lines of useless stuff?

Thanks,
Mark



Re: [gentoo-user] Tomcat on Gentoo Linux

2009-02-19 Thread Ricardo Ichizo
Hi,

On Thu, Feb 19, 2009 at 12:21 PM, Kaushal Shriyan
kaushalshri...@gmail.com wrote:
 Hi,

 is there a mailing list to discuss about tomcat application server running
 on gentoo ?


I guess the right list is tgentoo-java.

You can consult all mailing lists at: http://www.gentoo.org/main/en/lists.xml

Regards,
-- 
Ricardo Ichizo



Re: [gentoo-user] emerge R

2009-02-19 Thread Paul Hartman
On Thu, Feb 19, 2009 at 10:45 AM, Mark Knecht markkne...@gmail.com wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.

 http://www.r-project.org/

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

dev-lang/R



Re: [gentoo-user] emerge R

2009-02-19 Thread Albert Hopkins
On Thu, 2009-02-19 at 08:45 -0800, Mark Knecht wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.
 
 http://www.r-project.org/
 
 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

$ cd /usr/portage/dev-lang
$ ls
[...]
dmd-bin/inform/ pasm/   tcc/
eleven/ interprolog/perl/   tcl/
entity/ io/ php/tendra/
erlang/ lazarus/pike/   tinycobol/
f2c/lisaac/ polyml/ tk/
falcon/ logtalk/pugs/   toluapp/
ferite/ lua/python/ tuprolog/
fpc/luarocks/   qu-prolog/  ucblogo/
fpc-ide/maude/  R/  vala/
   ^^^
[...]

-a





Re: [gentoo-user] atheros wifi for gentoo..

2009-02-19 Thread Dirk Heinrichs
Am Mittwoch, 18. Februar 2009 23:06:13 schrieb maxim wexler:

 I would love to hear from someone who managed a gentoo install on a 4G SSHD
 with the onboard Atheros wifi chipset

Which chipset exactly? Depending on the chipset you'll nedd to use either 
madwifi, ath5k or ath9k. The latter is only available in the latest kernels 
(.28).

HTH...

Dirk


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


Re: [gentoo-user] emerge R

2009-02-19 Thread Boris Fersing
On Thu, Feb 19, 2009 at 17:45, Mark Knecht markkne...@gmail.com wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.

 http://www.r-project.org/

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

 Thanks,
 Mark


Hi,

It's possible with emerge ( emerge -s %^R$ ) , but I recommend to
install eix, then use eix-sync instead of emerge --sync. Eix is a lot
faster !

With eix you can search for the exact match with the -e option :

# eix -e R
* dev-lang/R
 Available versions:  2.7.1 2.7.2 (~)2.8.1 {X bash-completion
cairo debug doc java jpeg lapack minimal nls png readline tk}
 Homepage:http://www.r-project.org/
 Description: Language and environment for statistical
computing and graphics


or you can search the Homepage with eix -H r-project

regards,

Boris




-- 
$ ruby -e'puts  .:@BFegiklnorst.unpack(x4ax7aaX6ax5aX15ax4aax6aaX7ax2 \
aX5aX8axaX3ax8aX4ax6aX3aX6ax3ax3aX9ax4ax2aX9axaX6ax3aX2ax4 \
ax3aX4aXaX12ax10aaX7a).join'



Re: [gentoo-user] emerge R

2009-02-19 Thread Paul Hartman
On Thu, Feb 19, 2009 at 10:50 AM, Paul Hartman
paul.hartman+gen...@gmail.com wrote:
 On Thu, Feb 19, 2009 at 10:45 AM, Mark Knecht markkne...@gmail.com wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.

 http://www.r-project.org/

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

 dev-lang/R


And as far as how I found it, I browsed the tree and saw it in
dev-lang (since you said it was a programming languge). There also
appears to be an IDE for R in sci-mathematics/rkward.

Paul



Re: [gentoo-user] emerge R

2009-02-19 Thread Neil Bothwick
On Thu, 19 Feb 2009 08:45:54 -0800, Mark Knecht wrote:

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

eix -e R


-- 
Neil Bothwick

Don't cry because it's over. Smile because it happened.


signature.asc
Description: PGP signature


Re: [gentoo-user] emerge R

2009-02-19 Thread Mark Knecht
On Thu, Feb 19, 2009 at 8:50 AM, Paul Hartman
paul.hartman+gen...@gmail.com wrote:
 On Thu, Feb 19, 2009 at 10:45 AM, Mark Knecht markkne...@gmail.com wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.

 http://www.r-project.org/

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

 dev-lang/R



OK, so that depends that I know R is a language. That's probably a
reasonable assumption.

Is there a way to do this with emerge or eix that matches the name exactly?

Thanks,
Mark



Re: [gentoo-user] emerge R

2009-02-19 Thread Mark Knecht
On Thu, Feb 19, 2009 at 8:54 AM, Boris Fersing kernelsen...@gentoo.org wrote:
 On Thu, Feb 19, 2009 at 17:45, Mark Knecht markkne...@gmail.com wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.

 http://www.r-project.org/

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

 Thanks,
 Mark


 Hi,

 It's possible with emerge ( emerge -s %^R$ ) , but I recommend to
 install eix, then use eix-sync instead of emerge --sync. Eix is a lot
 faster !

 With eix you can search for the exact match with the -e option :

 # eix -e R
 * dev-lang/R
 Available versions:  2.7.1 2.7.2 (~)2.8.1 {X bash-completion
 cairo debug doc java jpeg lapack minimal nls png readline tk}
 Homepage:http://www.r-project.org/
 Description: Language and environment for statistical
 computing and graphics


 or you can search the Homepage with eix -H r-project

 regards,

 Boris

Thanks Boris. that's *exactly* ;-) what I was looking for!

- Mark



[gentoo-user] Re: emerge R

2009-02-19 Thread Doug ONeal
On 02/19/2009 11:45 AM, Mark Knecht wrote:
 Here's one for the zen masters of portage. There is a statistical
 programming language called 'R'.
 
 http://www.r-project.org/
 
 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?
 
 Thanks,
 Mark
 
 

find /usr/portage -type d -name R




Re: [gentoo-user] emerge R

2009-02-19 Thread Mark Knecht
On Thu, Feb 19, 2009 at 8:55 AM, Neil Bothwick n...@digimed.co.uk wrote:
 On Thu, 19 Feb 2009 08:45:54 -0800, Mark Knecht wrote:

 Is it in portage? If so how do I find it without all the problems of
 weeding through 1000's of lines of useless stuff?

 eix -e R


 --
 Neil Bothwick

Yep. The -e option was only down something like 600 lines into the man
page. Once Boris pointed it out it was easier to find.

Thanks as always!

Cheers,
Mark



[gentoo-user] Re: Tablet PC? Anyone?

2009-02-19 Thread James
Willie Wong wwong at Princeton.EDU writes:


   Mainly what I am looking for is some sort of
   pen-mouse/tablet/touchscreen interface that makes drawing diagrams
   simpler (compared to a touchpad or the little dit that sits between
   the g,h, and b keys on a laptop). So if anyone knows of a laptop
   with this kind of built-in interface, it will also be good. 

Hello Willie,

May or Maynot be what you are looking for, but there is a really simple
easy/quick drawing tool, call 'dia' in portage. (app-office/dia).

Alternatively, if you do not find what you want, you may consider developing
a quick writing system to go with this ARM(Cortex) based, linux friendly
notebook. Who knows you may even land a  really cool, high paying job,
if you replace ubuntu with gentoo, on this bad boy.
Let me know if you have problems getting one, were a FreeScale
development partner

Furthermore, Gentoo has some really talented folks in the embedded
group, and ARM is very popular therein.


http://www.linuxdevices.com/news/NS8595694202.html

http://www.linuxdevices.com/news/NS3522920675.html

It looks wide open on connectivity possibilities!




hth,

James







[gentoo-user] KDE 4.2, gstreamer backend and flac

2009-02-19 Thread Dirk Heinrichs
Hi all,

with KDE 4.2, it seems to be impossible to play flac files in either amarok or 
juk when the gstreamer backend is used by phonon. The gstreamer flac plugin is 
installed and I can play flac files from a shell using a pipe of gstreamer 
commands.

Further installed are phonon-kde and phonon. Would it make a difference if I 
install qt-phonon instead?

Bye...

Dirk


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


Re: [gentoo-user] Re: Grub broke out of the blue

2009-02-19 Thread Mick
On Tuesday 17 February 2009, Nikos Chantziaras wrote:

 One thing that could be at fault is that I had grub installed into hd0,2
 (sda3) which is an ext4 partition.  

I think that this is probably the cause.  GRUB has these stage 1.5 fs related 
files:

`e2fs_stage1_5'
`fat_stage1_5'
`ffs_stage1_5'
`jfs_stage1_5'
`minix_stage1_5'
`reiserfs_stage1_5'
`vstafs_stage1_5'
`xfs_stage1_5'

 /boot is sda4 and is ext3.  But I'm 
 sure grub should work no matter where you install it.  I can even
 install it on sda1 which is NTFS and it works.  Hell, I can even install
 it on the swap partition.

I think you are mixing stage 1 and stage 2 GRUB images?  Stage 1 is installed 
in MBR or any partition's boot sector.  No knowledge of fs is required for 
that to be accessed (by BIOS or a chainloader)  and JUMPTO deals with that.  
The 1.5 images on the other hand are used to read the fs in which GRUB's 
stage 2 is installed.  That's far too large to fit into a boot sector.  I 
doubt that GRUB's e2fs_stage1_5 can read ext4, but I don't know really - a 
question for GRUB's mailing list?

 I guess the reason it broke will remain a mystery :P

-- 
Regards,
Mick


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


Re: [gentoo-user] emerge R

2009-02-19 Thread Neil Bothwick
On Thu, 19 Feb 2009 09:51:32 -0800, Mark Knecht wrote:

 Yep. The -e option was only down something like 600 lines into the man
 page.

eix --help is more concise.


-- 
Neil Bothwick

Bother, said Pooh, realising that Tiggers really are wonderful things.


signature.asc
Description: PGP signature


Re: [gentoo-user] KDE 4.2, gstreamer backend and flac

2009-02-19 Thread Volker Armin Hemmann
On Donnerstag 19 Februar 2009, Dirk Heinrichs wrote:
 Hi all,

 with KDE 4.2, it seems to be impossible to play flac files in either amarok
 or juk when the gstreamer backend is used by phonon. The gstreamer flac
 plugin is installed and I can play flac files from a shell using a pipe of
 gstreamer commands.

 Further installed are phonon-kde and phonon. Would it make a difference if
 I install qt-phonon instead?

a) don't install qt-phonon

b) use xine as backend



Re: [gentoo-user] emerge R

2009-02-19 Thread Alan McKinnon
On Thursday 19 February 2009 18:58:59 Mark Knecht wrote:
 On Thu, Feb 19, 2009 at 8:50 AM, Paul Hartman

 paul.hartman+gen...@gmail.com wrote:
  On Thu, Feb 19, 2009 at 10:45 AM, Mark Knecht markkne...@gmail.com 
wrote:
  Here's one for the zen masters of portage. There is a statistical
  programming language called 'R'.
 
  http://www.r-project.org/
 
  Is it in portage? If so how do I find it without all the problems of
  weeding through 1000's of lines of useless stuff?
 
  dev-lang/R

 OK, so that depends that I know R is a language. That's probably a
 reasonable assumption.

 Is there a way to do this with emerge or eix that matches the name exactly?

# eix -e R
* dev-lang/R
 Available versions:  2.7.1 2.7.2 (~)2.8.1 {X bash-completion cairo debug 
doc java jpeg lapack minimal nls png readline tk}
 Homepage:http://www.r-project.org/
 Description: Language and environment for statistical computing 
and graphics


However, eix is normally case-insensitive. When used with -e (exact match) it 
is case sensitive. Trawling through the enormous eix man page looking or the 
case insensitive exact match is left as an exercise for the reader.

-- 
alan dot mckinnon at gmail dot com




Re: [gentoo-user] emerge R

2009-02-19 Thread Mark Knecht
On Thu, Feb 19, 2009 at 1:49 PM, Alan McKinnon alan.mckin...@gmail.com wrote:

 Is there a way to do this with emerge or eix that matches the name exactly?

 # eix -e R
 * dev-lang/R
 Available versions:  2.7.1 2.7.2 (~)2.8.1 {X bash-completion cairo debug
 doc java jpeg lapack minimal nls png readline tk}
 Homepage:http://www.r-project.org/
 Description: Language and environment for statistical computing
 and graphics


 However, eix is normally case-insensitive. When used with -e (exact match) it
 is case sensitive. Trawling through the enormous eix man page looking or the
 case insensitive exact match is left as an exercise for the reader.

 --
 alan dot mckinnon at gmail dot com

Yeah, took me a little while.

I have R installed and it's interesting to play with. It's a misnomer
to call it a language though. It's really a complete environment that
draws charts, graphs, applies coloration, interesting stuff. I may end
up using RapidMiner - also Open Source but I think it's not in portage
- as it's more of a GUI environment vs R which is sort of command line
driven.

- Mark