Index: libmadplugin_ja.ts =================================================================== RCS file: libmadplugin_ja.ts diff -N libmadplugin_ja.ts --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ libmadplugin_ja.ts 9 Aug 2002 06:49:55 -0000 1.1 @@ -0,0 +1,33 @@ + + + LibMadPlugin + + No Song Open + No Song Open + + + Title + タイトル + + + Artist + アーティスト + + + Album + アルバム + + + Year + Year + + + Comment + コメント + + + , Track: + , Track: + + + Index: CONTROL/control =================================================================== RCS file: CONTROL/control diff -N CONTROL/control --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ CONTROL/control 21 Sep 2002 14:30:04 -0000 1.4 @@ -0,0 +1,11 @@ +Package: qpe-libmadplugin-ja +Version: 1.5.0-3 +Depends: qpe-base (1.5.0) +Conflicts: qpe-libmadplugin opie-libmadplugin +Priority: optional +Section: qpe/plugins +Maintainer: YamaKen +Architecture: arm +Description: MP3 file plugin using libmad with Japanese ID3v1 tag support + Plugin to play MP3 files with the mediaplayer in the Qtopia environment. + Supports Japanese ID3v1 tag encoded in SJIS or EUC-JP. Index: CONTROL/postrm =================================================================== RCS file: CONTROL/postrm diff -N CONTROL/postrm --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ CONTROL/postrm 16 Aug 2002 04:29:59 -0000 1.1 @@ -0,0 +1,8 @@ +#!/bin/sh + +QPEDIR=/opt/QtPalmtop +PLUGINDIR=$QPEDIR/plugins/codecs + +if [ -f $PLUGINDIR/.hidden/libippmp3plugin.so ]; then + mv $PLUGINDIR/.hidden/libippmp3plugin.so* $PLUGINDIR/ +fi Index: CONTROL/preinst =================================================================== RCS file: CONTROL/preinst diff -N CONTROL/preinst --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ CONTROL/preinst 21 Sep 2002 14:36:04 -0000 1.3 @@ -0,0 +1,12 @@ +#!/bin/sh + +QPEDIR=/opt/QtPalmtop +PLUGINDIR=$QPEDIR/plugins/codecs + +#hide Sharp's commercial MP3 plugin +if [ -f $PLUGINDIR/libippmp3plugin.so ]; then + if [ ! -d $PLUGINDIR/.hidden ]; then + mkdir $PLUGINDIR/.hidden + fi + mv $PLUGINDIR/libippmp3plugin.so* $PLUGINDIR/.hidden/ +fi