perl.macosx...mod_perl2 under Leopard by Robert Hicks- March 30, 2008 Are there good directions on getting mp2 compiled and installed with Apache2.2 on LeopardRoberthttp://www.nntp.perl.org/group/perl.macosx/2008/03/msg10660.html Re: How do you make a bundle from CPAN by Packy Anderson- March 20, 2008 On Mar 19, 2008, at 6:44 PM, Michael Barto wrote:> Is there some easy way to make a library module using CPAN and not > have it get installed> in the existing Perl library but go somewhere else. Some option in > CPAN or something.Another thing you might want to try is PAR, the Perl Archive Toolkit.http:search.cpan.orgsmuellerPAR-0.977libPARTutorial.podWith it, you can create a self-contained package that can not only contain all the modules you need, but the proper perl...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10659.html Re: How do you make a bundle from CPAN by Michael Barto- March 20, 2008 Actually, I have found out that when you configure CPAN, you can define a different "PREFIX" to a private library and it will not go into the main Perl library you are running. The book "Object Oriented Perl" by Damian Conway mentioned this trick. Thank you for taking the time to even make a suggestion.Tom Wyant wrote:> On Mar 19, 6:44 pm, mba...logiqwest.com (Michael Barto) wrote:> >> I have developed a Perl module in MacOSX using Arhive::Zip. This...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10658.html Re: How do you make a bundle from CPAN by Tom Wyant- March 20, 2008 On Mar 19, 6:44 pm, mba...logiqwest.com (Michael Barto) wrote:> I have developed a Perl module in MacOSX using Arhive::Zip. This library> seems to be installed> in the Perl version on the Mac (Perl v5.8.8). In porting this program to a> Linux machine running Perl v5.8.5, Archive::Zip is missing. I do not> want to> install in this current Perl library by using CPAN. What I would like to> do is define my own library> and use "!usrbinperl -I <my library>"...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10657.html How do you make a bundle from CPAN by Michael Barto- March 19, 2008 I have developed a Perl module in MacOSX using Arhive::Zip. This library seems to be installedin the Perl version on the Mac (Perl v5.8.8). In porting this program to aLinux machine running Perl v5.8.5, Archive::Zip is missing. I do not want toinstall in this current Perl library by using CPAN. What I would like to do is define my own libraryand use "!usrbinperl -I <my library>" name.I have download all the modules from CPAN I need: Archive-Zip Compress-Raw-Zlib ...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10656.html PerlObjCBridge and selectors by Pedro Melo- March 12, 2008 Hi,I&39;m trying to tap into the NSDistributedNotificationCenter with Perl.The simplest script that almost works is this: STARTpackage Listener;use strict;use Foundation;sub start my ($class) = _; my $self = bless , $class; my $center = NSDistributedNotificationCenter->defaultCenter; $center->addObserver_selector_name_object_($self, &39;updated&39;, "org.simplicidade.guy.whatsup", undef); NSRunLoop->currentRunLoop->run;sub updated package main;use...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10655.html Re: Mac OS alias from Perl by Chris Nandor- March 11, 2008 In article <p06230900c3817c1e511f203.8.112.3>, peterstairways.com.au (Peter N Lewis) wrote:> At 19:01 -0500 81207, Dan Neville wrote:> >Does anyone know how to make a Mac OS alias in Perl So, I wish to > >have Perl create aliases in multiple directories rather than copy > >the original file.> > There actually is no API call to create an alias file.> > You can do it in Perl as described at> > <http:use.perl.orgpudgejournal10437>> >...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10654.html Re: How to run Perl script at Mac OS (Darwin) Release by Packy Anderson- March 10, 2008 On Mar 9, 2008, at 11:12 AM, Doug McNutt wrote:> Hashing of tools by shells has not been mentioned. It may not be > part of the problem but on invocation many, if not all, shells > examine the $PATH variable and make a table of executables that it > finds. The table is then converted to a hashed lookup array in > order to improve speed of response. (That probably makes little > sense today but it was started during the days of mag tape.)>> So if you create a perl...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10653.html Re: perl and apple mail by Chris Devers- March 10, 2008 On Mar 10, 2008, at 7:24 AM, Joel Rees <joel_reessannet.ne.jp> wrote:> Are any of you using perl plugins with apple&39;s mail browserWhat, you mean aside from SpamAssassin & procmailI&39;ve always felt it was easiest to just filter everything on the mail server, and not bother with whatever filtering abilities the mail client I&39;m using this month may or may not offer.But then, I suppose this isn&39;t a viable approach if you can&39;t run software on the server.If you can get..http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10652.html perl and apple mail by Joel Rees- March 10, 2008 Are any of you using perl plugins with apple&39;s mail browserWhat I&39;m thinking of is something along the lines of supplementing the overly-simple rules in apple mail with some perl re. Things like funneling all the broken header junk off the top and into one folder, catching the real sharpos that like to put my mail address in the return address of the junk mail and putting that in a separate folder, that kind of stuff.I&39;m sure it could be done with the scripting api, but I&39;m...http://www.nntp.perl.org/group/perl.macosx/2008/03/msg10651.html |