libmp3splt version 0.9.2 ------------------------------------------------------------- - added bit reservoir handling for gapless playback option - added @d to output format which is equal to: last directory of the input filename or the filename itself if no directory - fixed bug #170 - included stdlib.h in src/plugins.c for getenv() because otherwise segfault on RHEL 5.6 64bits libmp3splt version 0.9.1b ------------------------------------------------------------- - bug fix: make sure to separate artist and performer in CUE files for use of @p and @a - bug fix on CUE: from INDEX format MM:SS:FF, handle FF as frames instead of hundreths - bug fix: issue when having input file inside several recursive symlinks - small improvement on CUE: also accept INDEX 1 and not only INDEX 01 libmp3splt version 0.9.1a ------------------------------------------------------------- - FLAC: fixed an important bug not allowing to split some files libmp3splt version 0.9.1 ------------------------------------------------------------- - FLAC internal cue sheets support - simple MP3 chapter marks support (with no overlap) - added #161 FLAC option to compute and write MD5 sum in the STREAMINFO metadata block - fixed bug #159 with some FLAC files being detected as MP3; also look for the file extension when detecting a file for a plugin - fixed bug '#160 ---last cue splitpoint--- created at 99 59 99 for mp3 files >100mins' (libmp3splt) - fixed bug with FLAC & pretend to split option - patch #8 to fix Werror=format-security in snprintf libmp3splt version 0.9 ------------------------------------------------------------- - experimental FLAC support added - stdin and stdout are not yet implemented - done patch tracker #6 Please support *BSD - Under *BSD, alloca(3) is defined in stdlib.h - fixed progress bar of ogg vorbis when using the auto adjust option - fixed bug #152 libmp3splt trunk: ./autogen.sh does not create file test/Makefile.in - fixed bug #150 - compile error if no libmp3tag around ----- pkgsrc changes: - Add options (all on by default) for flac, id3, mad, pcre, vorbis
27 lines
725 B
Makefile
27 lines
725 B
Makefile
# $NetBSD: Makefile,v 1.14 2018/09/30 22:29:07 schmonz Exp $
|
|
#
|
|
|
|
DISTNAME= libmp3splt-0.9.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mp3splt/}
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= http://mp3splt.sourceforge.net/
|
|
COMMENT= Split mp3, ogg vorbis and FLAC without decoding
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
LIBS.SunOS+= -lresolv
|
|
|
|
CONFIGURE_ARGS+= --with-ltdl-include=${BUILDLINK_PREFIX.libltdl}/include
|
|
CONFIGURE_ARGS+= --with-ltdl-lib=${BUILDLINK_PREFIX.libltdl}/lib
|
|
CONFIGURE_ARGS+= --disable-doxygen_doc
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/libltdl/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|