diff options
author | rxg <rxg@pkgsrc.org> | 2002-03-18 14:13:50 +0000 |
---|---|---|
committer | rxg <rxg@pkgsrc.org> | 2002-03-18 14:13:50 +0000 |
commit | c33f7ac9fa7a7ad49fe19e9a8e28fbecc3805998 (patch) | |
tree | 9408c1d9bad7251fe6677f5eb117cb97a03a12c5 /audio/mp3blaster/Makefile | |
parent | ed6558a440b2c3ae8b680f621d4262f856c97cb9 (diff) | |
download | pkgsrc-c33f7ac9fa7a7ad49fe19e9a8e28fbecc3805998.tar.gz |
Updated mp3blaster to 3.1.1
V3.1.1 2002/03/16
=================
-Applied a patch from Douglas Richard that introduces horizontal panning
of the scrollable window using Key.Left and Key.Right, as well as
configurable wraparound-behaviour (see config file directive 'WrapAround')
and jump-to-top/bottom of the list using Key.Home and Key.End keybindings.
-When resetting sound device failed, playback of current song is stopped.
-config file directive 'SkipFrames' => 'SkipLength'
-Added RPM specfile, so you can build mp3blaster on RedHat 7.2 with
rpm -ta <source tarball>
-applied patches from Martijn to fix compiling issues with NetBSD/curses.
-applied patch from Martijn that fixes endian issues in waveplayer
-applied patch from Ivan Prokudin that fixes a bug in the character
set recoding code.
-Added patch from Serge v/d Boom that writes info about mp3's being played
to a status file (see --status-file).
-Fixed bug that prevented showing next song
-Configfile directive 'File.ID3Names' enabled now implies that the default
file display mode in the filemanager is show by ID3 name instead of
filename.
-When decoding mp3s as wavs, decoding will be aborted with a warning
when samplerate/speed/stereo-mode changes.
-ID3tags in ID3 displaying mode are now charset-recoded as well.
Thank Martijn van Buul <pino@dohd.org> for fixing many bugs for NetBSD.
Diffstat (limited to 'audio/mp3blaster/Makefile')
-rw-r--r-- | audio/mp3blaster/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/audio/mp3blaster/Makefile b/audio/mp3blaster/Makefile index c01e0f9b360..5c0744b288e 100644 --- a/audio/mp3blaster/Makefile +++ b/audio/mp3blaster/Makefile @@ -1,27 +1,25 @@ -# $NetBSD: Makefile,v 1.2 2002/02/24 22:46:29 wiz Exp $ -# FreeBSD Id: ports/audio/mp3blaster/Makefile,v 1.10 2001/08/20 05:45:57 greid Exp +# $NetBSD: Makefile,v 1.3 2002/03/18 14:13:50 rxg Exp $ -DISTNAME= mp3blaster-3.0p8 +DISTNAME= mp3blaster-3.1.1 CATEGORIES= audio MASTER_SITES= ftp://mud.stack.nl/pub/mp3blaster/ \ http://mp3blaster.linuxave.net/src/ MAINTAINER= rxg@netbsd.org HOMEPAGE= http://www.stack.nl/~brama/mp3blaster.html -COMMENT= MP3 console ncurses-based player +COMMENT= MP3 console curses-based player -# missing: wchgat -USE_NCURSES= YES USE_PTHREAD= native pth GNU_CONFIGURE= yes CONFIGURE_ARGS+="--with-cxxflags=${CXXFLAGS}" \ + --with-curses \ --with-oggvorbis \ - --with-pth \ --enable-newthreads .include "../../audio/libogg/buildlink.mk" .include "../../audio/libvorbis/buildlink.mk" .include "../../devel/ncurses/buildlink.mk" +.include "../../mk/ossaudio.buildlink.mk" .include "../../mk/pthread.buildlink.mk" .include "../../mk/bsd.pkg.mk" |