Re: Re: Can't find Mac::Growl

2008-09-10 Thread Stephen M. Harris
Mac::Growl OK, going back to fundamental issue, what or why is this failing or me (it failed the same first time, which is why I tried the 'force' :-); I am using standard Tiger v5.8.6 of Perl: cpan force install Mac::Growl CPAN: Storable loaded ok Going to read /Users/dgringo/.cpan/Metadata

Re: Can't find Mac::Growl

2008-09-09 Thread David Green
OK, going back to fundamental issue, what or why is this failing or me (it failed the same first time, which is why I tried the 'force' :-); I am using standard Tiger v5.8.6 of Perl: cpan force install Mac::Growl CPAN: Storable loaded ok Going to read /Users/dgringo/.cpan/Metadata

Re: Can't find Mac::Growl

2008-08-26 Thread David Green
/Growl.pm cp lib/Mac/Glue/glues/GrowlHelperApp blib/lib/Mac/Glue/glues/ GrowlHelperApp cp lib/Mac/Glue/glues/GrowlHelperApp.pod blib/lib/Mac/Glue/glues/ GrowlHelperApp.pod Manifying blib/man3/Mac::Growl.3 Manifying blib/man3/Mac::Glue::glues::GrowlHelperApp.3 Can't locate Mac/Glue/Common.pm in @INC

Re: Can't find Mac::Growl

2008-08-26 Thread Doug McNutt
At 18:17 -0400 8/25/08, David Green wrote: Can't locate Mac/Glue/Common.pm in @INC There is an environment variable PERL5LIB that can be set to add directories to perl's default include path. It is, for instance, possible to add the library from a previous install to @INC. There is some

Re: Can't find Mac::Growl

2008-08-24 Thread WetMogwai
Thanks. Problem solved. I wonder why Apple couldn't do that before shipping the OS. Seems I have a bug report to file. On Aug 23, 9:22 am, [EMAIL PROTECTED] wrote: Hola, You can set that in your CPAN config I guess: % locate Config.pm | grep CPAN mine is:

Re: Can't find Mac::Growl

2008-08-23 Thread Jonas Brømsø Nielsen
Hi David, WetMogwai's problem has to do with installation, if you do not experience that problem, the following should work out of the box: #!/usr/bin/perl use strict; use Mac::Growl qw(:all); RegisterNotifications(__PACKAGE__, ['test'], ['test']); PostNotification(__PACKAGE__, 'test

Re: Can't find Mac::Growl

2008-08-23 Thread Jonas Brømsø Nielsen
to Perl and newer to Perl on Mac, but I thought I understood CPAN and use. I installed Mac::Growl using CPAN from the command line. I'm using the Perl distro included with Leopard. My program contains the following lines: use Mac::Growl ':all'; BEGIN { $Mac::Growl::base = 'Mac::Applescript' } (I've

Re: Can't find Mac::Growl

2008-08-23 Thread WetMogwai
: Hi, I am interested in (possibly) using Mac::Growl from Perl.  Have   you gotten it working and or do you have some pointers for me? Thanks, David Green On 18 Aug, 2008, at 20:22, WetMogwai wrote: Sorry if this has been discussed before. I searched and didn't see usable results. I'm

Re: Can't find Mac::Growl

2008-08-23 Thread Jonas Brømsø Nielsen
to find why I get an error from Growl.pm on a variable that it is getting from itself, but that's a topic for a different thread. On Aug 21, 11:57 am, [EMAIL PROTECTED] (David Green) wrote: Hi, I am interested in (possibly) using Mac::Growl from Perl. Have you gotten it working and or do you have

Re: Can't find Mac::Growl

2008-08-22 Thread David Green
Hi, I am interested in (possibly) using Mac::Growl from Perl. Have you gotten it working and or do you have some pointers for me? Thanks, David Green On 18 Aug, 2008, at 20:22, WetMogwai wrote: Sorry if this has been discussed before. I searched and didn't see usable results. I'm new

Can't find Mac::Growl

2008-08-19 Thread WetMogwai
Sorry if this has been discussed before. I searched and didn't see usable results. I'm new to Perl and newer to Perl on Mac, but I thought I understood CPAN and use. I installed Mac::Growl using CPAN from the command line. I'm using the Perl distro included with Leopard. My program contains

Re: Installation of Mac::Growl fails

2006-06-20 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Joergen W. Lang) wrote: After lurking for over two years it seems to be the time to uncloak and ask a little question. I was trying to install Chris Nandors Mac::Growl on my Dual 1.8 G5/Tiger, Perl out of the Box. cpan install Mac

Installation of Mac::Growl fails

2006-06-19 Thread Joergen W. Lang
Hi y'all, After lurking for over two years it seems to be the time to uncloak and ask a little question. I was trying to install Chris Nandors Mac::Growl on my Dual 1.8 G5/Tiger, Perl out of the Box. cpan install Mac::Growl gives me the following errors: PERL_DL_NONLAZY=1 /usr/bin/perl

Mac::Growl failure with PerlObjCBridge

2006-06-04 Thread Trey Harris
When attempting to make test, I get: Running make test PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 'blib/lib', 'blib/arch') t/*.t t/Mac-Growlok 1/11 ERROR PerlObjCBridge: convertPerlToObjC(): Referenced thingy not blessed ERROR

Re: Mac-Growl

2004-11-11 Thread Chris Nandor
Where can I find the application glue for Growl? This is what I'm getting: You have to create it, as per the Mac::Glue docs, with gluemac. GrowlHelperApp is located in /Library/PreferencePanes/Growl.prefPane/Contents/Resources/. -- Chris Nandor [EMAIL PROTECTED]

Re: Mac-Growl

2004-11-10 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Sherm Pendley) wrote: That won't *always* work, but it should work in this case, as the Perl you're using is the same major version (5.8.x) and architecture (darwin-thread-multi-2level) as the one for which the module was compiled. So what

Re: Mac-Growl

2004-11-10 Thread Chris Nandor
Of course, there's always Mac::Glue. :-) http://use.perl.org/~pudge/journal/21797 use Mac::Glue; my $growl = new Mac::Glue 'GrowlHelperApp'; $growl-notify( with_title = LOOK OUT BEHIND YOU, description = ... very slowly ..., icon_of_application = Finder, sticky

Re: Mac-Growl

2004-11-10 Thread Sherm Pendley
On Nov 10, 2004, at 6:44 PM, Chris Nandor wrote: In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Sherm Pendley) wrote: That won't *always* work, but it should work in this case, as the Perl you're using is the same major version (5.8.x) and architecture (darwin-thread-multi-2level) as the one

Mac-Growl

2004-11-09 Thread Alex Robinson
I'm trying to install the binding for Growl, Mac-Growl. But failing, obviously. [solidgoldpig:~/Desktop/GrowlPerlBindings/Mac-Growl] alexr% make test PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(0, 'blib/lib', 'blib/arch') t/*.t t/Mac-GrowlNOK 1# Failed test (t

Re: Mac-Growl

2004-11-09 Thread Sherm Pendley
On Nov 9, 2004, at 11:08 AM, Alex Robinson wrote: It looks like my CamelBones-installed perl is preventing /Library/Perl/5.8.1/darwin-thread-multi-2level/Foundation.pm from being seen (I guess that's what Mac-Growl is looking for) How can I go about getting around this problem? Add /Library