1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/audio/osalp/Makefile
Mark Linimon 0bb07dab3a -Wno-c++11-narrowing is not supported by base GCC; using
USE_CXXSTD=c++98 makes the port build with both base clang and gcc.

PR:		233308
Submitted by:	Piotr Kubaj
2018-11-24 08:58:51 +00:00

42 lines
948 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= osalp
PORTVERSION= 0.7.5
PORTREVISION= 7
CATEGORIES= audio
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}-beta
MAINTAINER= ports@FreeBSD.org
COMMENT= Open Source Audio Library Project
RUN_DEPENDS= mpg123:audio/mpg123
LIB_DEPENDS= libmp3lame.so:audio/lame \
libvorbis.so:audio/libvorbis
USES= libtool localbase:ldflags
USE_CXXSTD= c++98
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-all
CFLAGS+= -fPIC -DPIC
USE_LDCONFIG= yes
PLIST_SUB= VERSION=${PORTVERSION}
CONFLICTS= libaudiofile-[0-9]*
post-patch:
@${FIND} ${WRKSRC} -name "*.cc" | ${XARGS} ${REINPLACE_CMD} -E \
's|iostream.h|iostream|; \
s|[[:space:]]cout| std::cout|g; \
s|[[:space:]]endl| std::endl|g; \
s|[[:space:]]cerr| std::cerr|g;'
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaflib-${PORTVERSION}.so \
${STAGEDIR}${PREFIX}/lib/aflib/lib*-${PORTVERSION}.so
.include <bsd.port.mk>