summaryrefslogtreecommitdiff
path: root/audio/mpg123/Makefile
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2014-05-20 19:59:09 +0000
committeradam <adam@pkgsrc.org>2014-05-20 19:59:09 +0000
commit883bd2a47f75b1fc6d4c32ae9bb3ec6e41b635f8 (patch)
tree2f3f8b5f0cf3a14346229a2e98c0c70aedc2030f /audio/mpg123/Makefile
parent2941e564ada1635faa7b901d24752c3408199c01 (diff)
downloadpkgsrc-883bd2a47f75b1fc6d4c32ae9bb3ec6e41b635f8.tar.gz
Changes 1.19.0:
- Support float and 32/24 bit integer output also with fixed-point decoders (conversion from 16 bit precision). - A-Law output encoding is actually implemented now (Michael introduced the encoding back in the old days without ever implementing theconversion table, apparently). - Added --with-cpu=arm_fpu as decoder choice for runtime switch between plain fpu code and NEON. - Fix ARM builds to work properly on debian systems without special CFLAGS (NEON decoder, specifically). - Make scripts/benchmark-cpu.pl check the return value instead of delivering crazy timings for crashed mpg123. - Trigger track initialization in mpg123_info() to avoid use of uninitialized variables (watch out for MPG123_NEED_MORE return value!). - Fix integer code to 32 bit numbers where it would waste 64 bit on modern systems. - Add non-executable stack marking also to ARM assembly.
Diffstat (limited to 'audio/mpg123/Makefile')
-rw-r--r--audio/mpg123/Makefile13
1 files changed, 5 insertions, 8 deletions
diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile
index a55766ec158..428455c9848 100644
--- a/audio/mpg123/Makefile
+++ b/audio/mpg123/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.53 2012/10/02 23:48:00 asau Exp $
+# $NetBSD: Makefile,v 1.54 2014/05/20 19:59:09 adam Exp $
PKGNAME= ${DISTNAME:C/[^[:alnum:]]*//}
-PKGREVISION= 1
COMMENT= MPEG layer 1, 2, and 3 audio player
PKGCONFIG_OVERRIDE+= libmpg123.pc.in
@@ -16,19 +15,17 @@ MPG123_BUILDING_BASE= # empty
.include "../../mk/bsd.prefs.mk"
-PLIST_VARS+= oss
-PLIST_VARS+= sun
-PLIST_VARS+= coreaudio
+PLIST_VARS+= coreaudio oss sun
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "SunOS"
MPG123_DEFAULT_MODULE= sun
-PLIST.sun = yes
+PLIST.sun= yes
.elif ${OPSYS} == "Darwin"
MPG123_DEFAULT_MODULE= coreaudio
-PLIST.coreaudio = yes
+PLIST.coreaudio= yes
.else
MPG123_DEFAULT_MODULE= oss
-PLIST.oss = yes
+PLIST.oss= yes
.include "../../mk/oss.buildlink3.mk"
LIBS+= ${LIBOSSAUDIO}
CPPFLAGS+= -DDEVOSSAUDIO="\"${DEVOSSAUDIO}\""