# Created by: Carey Jones # $FreeBSD: head/audio/mpg123/Makefile 412344 2016-04-01 13:29:15Z mat $ PORTNAME= mpg123 PORTVERSION= 1.23.3 CATEGORIES= audio ipv6 MASTER_SITES= SF \ http://www.mpg123.de/download/ MAINTAINER= novel@FreeBSD.org COMMENT= Command-line player for MPEG Layer 1, 2, and 3 audio files LICENSE= LGPL21 LIB_DEPENDS= libltdl.so:devel/libltdl USES= tar:bzip2 gmake libtool pathfix USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-optimization=0 \ --with-audio=oss \ --with-default-audio=oss \ --with-module-suffix=.so CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .include .if ${ARCH} == "i386" .if ${MACHINE_CPU:M3dnow} WITH_CPU= 3dnow .elif ${MACHINE_CPU:Msse} WITH_CPU= sse .elif ${MACHINE_CPU:Mi586} WITH_CPU= i586 .elif ${MACHINE_CPU:Mi486} WITH_CPU= i486 .endif .elif ${ARCH} == "amd64" WITH_CPU= x86-64 .elif ${ARCH} == "arm" WITH_CPU= arm_nofpu .endif .if defined(WITH_CPU) CONFIGURE_ARGS+= --with-cpu=${WITH_CPU} .endif .include