From: naoki i. <am...@us...> - 2008-04-06 15:40:05
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17231 Modified Files: Tag: b0_22_2 make_packing_list.pl Log Message: Added MeCab optional information and fixed regex Index: make_packing_list.pl =================================================================== RCS file: /cvsroot/popfile/engine/make_packing_list.pl,v retrieving revision 1.3.4.2 retrieving revision 1.3.4.3 diff -C2 -d -r1.3.4.2 -r1.3.4.3 *** make_packing_list.pl 6 Apr 2008 15:35:43 -0000 1.3.4.2 --- make_packing_list.pl 6 Apr 2008 15:40:09 -0000 1.3.4.3 *************** *** 43,46 **** --- 43,47 ---- 'IO::Socket::SSL' => 'SSL Connection Support', 'IO::Socket::Socks' => 'Socks Proxy Support', + 'MeCab' => $japanese, 'Text::Kakasi' => $japanese, 'XMLRPC::Transport::HTTP' => 'XML-RPC Server Support' ); *************** *** 57,61 **** open PACKAGE, ">$output"; foreach my $module (sort keys %modules) { ! if ( $module !~ /^Classifier|POPFile|Proxy|UI|Services/ ) { print PACKAGE "$modules{$module}\t0.0.0\t$module\n"; } --- 58,62 ---- open PACKAGE, ">$output"; foreach my $module (sort keys %modules) { ! if ( $module !~ /^(Classifier|POPFile|Proxy|UI|Services)/ ) { print PACKAGE "$modules{$module}\t0.0.0\t$module\n"; } |