1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/audio/mpg123/Makefile
Tijl Coosemans 5d48443269 - Remove libtool hacks and patches that are now handled by USES=libtool
- Remove CONFIG_SHELL from CONFIGURE_ENV because bsd.port.mk handles that
2015-04-18 09:47:29 +00:00

51 lines
1011 B
Makefile

# Created by: Carey Jones <mcj@acquiesce.org>
# $FreeBSD$
PORTNAME= mpg123
PORTVERSION= 1.22.1
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:${PORTSDIR}/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 <bsd.port.pre.mk>
.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 <bsd.port.post.mk>