pkgsrc/audio/flac/Makefile
drochner a6e120373a update to 1.2.1
This fixes a number of security problems (integer overflows resulting
in heap-based buffer overflow, CVE-2007-4619).

Other changes:
-speedup
-some new options
-bugfixes
-added support for all RIFF/AIFF metadata

Thanks to Chavdar Ivanov for providing a patch.
2007-11-21 12:47:04 +00:00

58 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.42 2007/11/21 12:47:04 drochner Exp $
DISTNAME= flac-1.2.1
CATEGORIES= audio archivers
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=flac/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://flac.sourceforge.net/
COMMENT= Free lossless audio codec
PKG_INSTALLATION_TYPES= overwrite pkgviews
PKG_DESTDIR_SUPPORT= user-destdir
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
USE_LIBTOOL= yes
USE_TOOLS+= gmake
USE_LANGUAGES= c c++
GNU_CONFIGURE= yes
CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no"
CONFIGURE_ENV+= ac_cv_prog_DOXYGEN=""
PKGCONFIG_OVERRIDE+= src/libFLAC++/flac++.pc.in src/libFLAC/flac.pc.in
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386)
BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm
.endif
.if !empty(MACHINE_PLATFORM:M*-*-powerpc)
.if ${OPSYS} != "Darwin"
CONFIGURE_ARGS+= --disable-asm-optimizations
CONFIGURE_ARGS+= --disable-altivec
.endif
.endif
.if !empty(MACHINE_PLATFORM:MDarwin-*-i386)
CONFIGURE_ARGS+= --disable-asm-optimizations
.endif
.include "../../mk/compiler.mk"
# Version 1.1.2 of flac doesn't seem to build correctly with -O3 using
# the MIPSpro compiler.
# XXX: retry for 1.1.3
.if !empty(PKGSRC_COMPILER:Mmipspro)
BUILDLINK_TRANSFORM+= rm:-O3
.endif
# SunPro does not support __inline
.if !empty(PKGSRC_COMPILER:Msunpro)
CFLAGS+= -D__inline=inline
.endif
.include "../../multimedia/libogg/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"