mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= soundtouch
|
|
PORTVERSION= 1.9.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.surina.net/soundtouch/
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Open-source audio processing library
|
|
|
|
LICENSE= LGPL21
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
USES= autoreconf libtool pathfix
|
|
|
|
OPTIONS_DEFINE= INTEGER_SAMPLES DOCS OPENMP
|
|
OPTIONS_DEFAULT= ${MACHINE_CPU:Msoftfp:C/.+/INTEGER_SAMPLES/}
|
|
OPTIONS_DEFINE_amd64= SSE
|
|
OPTIONS_DEFINE_i386= SSE
|
|
OPTIONS_DEFAULT_amd64= SSE
|
|
OPTIONS_DEFAULT_i386= ${MACHINE_CPU:tu:MSSE}
|
|
|
|
INTEGER_SAMPLES_DESC= Use integer sample format
|
|
INTEGER_SAMPLES_CONFIGURE_ENABLE= integer-samples
|
|
OPENMP_CONFIGURE_ENABLE=openmp
|
|
OPENMP_USES= compiler:gcc-c++11-lib
|
|
SSE_CONFIGURE_ENABLE= x86-optimizations
|
|
SSE_USES= compiler:c++11-lang
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^dist_doc_DATA/s|COPYING.TXT||' \
|
|
${WRKSRC}/Makefile.am
|
|
@${REINPLACE_CMD} -e \
|
|
's|^INCLUDES|AM_CPPFLAGS| ; \
|
|
s|$$(prefix)/doc|$$(datadir)/doc|' \
|
|
${WRKSRC}/config/am_include.mk
|
|
.for i in SoundStretch SoundTouch
|
|
@${REINPLACE_CMD} -e \
|
|
's|-O[0-9]||;s|-fcheck-new||' \
|
|
${WRKSRC}/source/${i}/Makefile.am
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|