49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.53 2006/02/05 23:08:10 joerg Exp $
|
|
#
|
|
|
|
DISTNAME= lame-${VERS}
|
|
PKGREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lame/} \
|
|
http://hive.me.gu.edu.au/not_lame/
|
|
|
|
MAINTAINER= ben@NetBSD.org
|
|
HOMEPAGE= http://lame.sourceforge.net/
|
|
COMMENT= Fast, high quality MP3 encoder
|
|
|
|
VERS= 3.96.1
|
|
|
|
LICENSE= lame-license
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-vorbis
|
|
|
|
# Avoid an ICE in gcc2 on sparc64
|
|
CONFIGURE_ENV+= F77=${FALSE:Q}
|
|
|
|
LDFLAGS.SunOS+= -lm
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
. include "../../math/libffm/buildlink3.mk"
|
|
# double is faster than float on Alpha
|
|
CFLAGS+= -O2 -Wall -fomit-frame-pointer -ffast-math -funroll-loops \
|
|
-mfp-regs -fschedule-insns -fschedule-insns2 \
|
|
-finline-functions -DFLOAT=double -DFLOAT_MAX=DBL_MAX
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "i386" && ${OPSYS} != "SunOS")
|
|
BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm
|
|
CONFIGURE_ARGS+= --enable-nasm
|
|
.endif
|
|
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|