21e2a01370
Fix build on non-linux ppc machines, tested by julian sevard.
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.55 2019/12/17 13:59:50 nros Exp $
|
|
|
|
DISTNAME= flac-1.3.3
|
|
CATEGORIES= audio archivers
|
|
MASTER_SITES= http://downloads.xiph.org/releases/flac/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://xiph.org/flac/
|
|
COMMENT= Free lossless audio codec
|
|
LICENSE= modified-bsd AND gnu-gpl-v2 AND gnu-lgpl-v2.1
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= aclocal autoconf autoheader automake gmake
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-doxygen-docs
|
|
CONFIGURE_ARGS+= --disable-xmms-plugin
|
|
PKGCONFIG_OVERRIDE+= src/libFLAC++/flac++.pc.in
|
|
PKGCONFIG_OVERRIDE+= 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"
|
|
|
|
# SunPro does not support __inline
|
|
.if !empty(PKGSRC_COMPILER:Msunpro)
|
|
CFLAGS+= -D__inline=inline
|
|
.endif
|
|
|
|
# With -fgnu89-inline option duplicate symbols arise.
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
BUILDLINK_TRANSFORM+= rm:-fgnu89-inline
|
|
.endif
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoreconf
|
|
|
|
.include "../../multimedia/libogg/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|