diff options
author | adam <adam> | 2006-04-21 09:28:47 +0000 |
---|---|---|
committer | adam <adam> | 2006-04-21 09:28:47 +0000 |
commit | 115c1b4087520d6b4ae1cc5276a3c3a8fc01f9c9 (patch) | |
tree | 840e3d0496277fcd1e38527075b79157b6882360 /audio/normalize/Makefile | |
parent | 90e33e49a125632f37fe745def0a12b051365787 (diff) | |
download | pkgsrc-115c1b4087520d6b4ae1cc5276a3c3a8fc01f9c9.tar.gz |
Changes 0.7.7:
* Fixed bug with reading broken wav files with bad sizes
* Fixed bug causing seg fault on non-PCM wav files
* Fixed bug with reading wav files that have stuff after the data chunk
* Fixed Windows "no such file" bug
* Fixed small memory leak
* Fixed cosmetic bug with negative gains
* Fixed bad basename regexp in normalize-mp3 script
* Fixed --oggdecode option in normalize-mp3 script
* Turned audiofile support on by default
* Upgraded to latest GNU autotools
Pkgsrc:
* Build xmms plug-in as an option
Diffstat (limited to 'audio/normalize/Makefile')
-rw-r--r-- | audio/normalize/Makefile | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/audio/normalize/Makefile b/audio/normalize/Makefile index a0025f046cd..415e255f1bf 100644 --- a/audio/normalize/Makefile +++ b/audio/normalize/Makefile @@ -1,24 +1,26 @@ -# $NetBSD: Makefile,v 1.17 2006/03/04 21:28:57 jlam Exp $ -# +# $NetBSD: Makefile,v 1.18 2006/04/21 09:28:47 adam Exp $ -DISTNAME= normalize-0.7.6 -PKGREVISION= 6 +DISTNAME= normalize-0.7.7 CATEGORIES= audio MASTER_SITES= http://www1.cs.columbia.edu/~cvaill/normalize/ +EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www1.cs.columbia.edu/~cvaill/normalize/ -COMMENT= Wave (.wav) file volume normalizer +COMMENT= Audio file volume normalizer (wav,mp3,ogg) -USE_PKGLOCALEDIR= YES -USE_LIBTOOL= YES -GNU_CONFIGURE= YES +USE_LIBTOOL= yes +USE_PKGLOCALEDIR= yes +GNU_CONFIGURE= yes -#CONFIGURE_ARGS+= --with-audiofile +CONFIGURE_ARGS+= --with-audiofile CONFIGURE_ARGS+= --with-mad -#.include "../../audio/libaudiofile/buildlink3.mk" +.include "options.mk" + +.include "../../audio/libaudiofile/buildlink3.mk" .include "../../audio/libmad/buildlink3.mk" +.include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |