Changeset 9875 for lang/perl/Alien-MeCab

Show
Ignore:
Timestamp:
04/19/08 15:58:06 (8 months ago)
Author:
hanekomu
Message:
 
Location:
lang/perl/Alien-MeCab/tags/0.97005
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Alien-MeCab/tags/0.97005/Changes

    r9851 r9875  
    11Changes 
    22======= 
    3  
    4 0.97005 18 Apr 2008 
    5   - Add dependency to Alien::Iconv if we could not detect libiconv and 
    6     the user chose to do so 
    73 
    840.97004 12 Apr 2008 
  • lang/perl/Alien-MeCab/tags/0.97005/Makefile.PL

    r9850 r9875  
    3535$MECAB_EXE           = File::Spec->rel2abs($MECAB_EXE); 
    3636 
    37 my %REQUIRES; 
    38  
    3937# Construct the necessary flags 
    4038my $CCFLAGS = $ENV{CCFLAGS}; 
     
    5452*** Whoa! libiconv was not detected! *** 
    5553 
    56 MeCab requires libiconv to work properly. You can either  
    57     (1) install it yourself by hand, or 
    58     (2) install it via Alien::Iconv 
     54Can't proceed without libiconv. 
     55You will have to install libiconv by yourself. 
     56 
    5957EOM 
    6058 
    61         my $yn = prompt("Would you like to add Alien::Iconv to prerequisite modules?", "y"); 
    62         if ($yn !~ /^y(?:es)?$/) { 
    63             print <<EOM; 
    64  
    65 You chose not to install libiconv. Please install it manually and 
    66 re-run perl Makefile.PL for Alien::MeCab. 
    67  
    68 EOM 
    69             exit 0; 
    70         } 
    71  
    72         $REQUIRES{ 'Alien::MeCab' } = '1.12001'; 
     59    # XXX - in the future, after we create Alien::Iconv, I want to say 
     60    # the following instead: 
     61# You can either 
     62#  (1) install Alien::Iconv (which will build iconv from source), or 
     63#  (2) install libiconv by yourself by other means. 
     64#before proceeding. 
     65        exit 0; 
    7366    } 
    7467} 
     
    199192    NAME => 'Alien-MeCab', 
    200193    VERSION => $DIST_VERSION, 
    201     PREREQ_PM => \%REQUIRES, 
    202194); 
    203195 
  • lang/perl/Alien-MeCab/tags/0.97005/lib/Alien/MeCab.pm

    r9851 r9875  
    55use vars qw($VERSION); 
    66 
    7 $VERSION = '0.97005'; 
     7$VERSION = '0.97004'; 
    88 
    991;