Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 175837 - media-sound/SmarTagger does not find MP3/Info script
Summary: media-sound/SmarTagger does not find MP3/Info script
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-24 10:48 UTC by Cornelius Weig
Modified: 2007-07-28 15:39 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Cornelius Weig 2007-04-24 10:48:15 UTC
There is a typo in the SmarTagger script, such that it does not find the MP3/Info.pm script needed. Instead, MPEG/MP3Info.pm is searched (and not found).

This fixes the problem for SmarTagger:

--- /usr/bin/SmarTagger 2007-04-24 11:39:45.000000000 +0100
+++ ../SmarTagger       2007-04-24 11:42:29.000000000 +0100
@@ -39,5 +39,5 @@
 }
 
-use MPEG::MP3Info;
+use MP3::Info;
 $product_name = "SmarTagger";
 $version = "0.1";

Reproducible: Always

Steps to Reproduce:
1. Install
2. run

Actual Results:  
Can't locate MPEG/MP3Info.pm in @INC ...
Comment 1 Samuli Suominen (RETIRED) gentoo-dev 2007-07-28 15:39:27 UTC
Fixed in -r1, thanks for reporting.