freebsd-ports/audio/alsa-utils/Makefile
Rodrigo Osorio f05f058867 audio/alsa-utils: aplaymidi doesn't play at the proper tempo
Add temporary patch to fix an issue with tempo events

aplaymidi does not process tempo events because the part
that handles tempo events was not rewritten sufficiently.
It may be executed as a different event in songs that
have tempo changes in the middle of the song.

A similar fix was submitted to upstream as
https://github.com/alsa-project/alsa-utils/issues/241

PR:		275349
Reported by:	Tatsuki Makino <tatsuki_makino@hotmail.com>
2023-11-29 22:07:13 +01:00

67 lines
2 KiB
Makefile

PORTNAME= alsa-utils
PORTVERSION= 1.2.10
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= https://www.alsa-project.org/files/pub/utils/
MAINTAINER= rodrigo@FreeBSD.org
COMMENT= ALSA compatibility utilities
WWW= https://www.alsa-project.org/
LICENSE= GPLv2+
LIB_DEPENDS= libasound.so:audio/alsa-lib \
libepoll-shim.so:devel/libepoll-shim \
libfftw3f.so:math/fftw3-float \
libinotify.so:devel/libinotify
RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins
USES= gettext-tools gmake libtool localbase ncurses pkgconfig \
shebangfix tar:bzip2
SHEBANG_FILES= alsa-info/alsa-info.sh alsaconf/alsaconf.in bat/alsabat-test.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-udev-rules-dir="\$${prefix}/lib/udev"
INSTALL_TARGET= install-strip
CFLAGS+= -Dlseek64=lseek -DSCHED_IDLE=SCHED_OTHER \
-I${LOCALBASE}/include/libepoll-shim
CPPFLAGS+= -I${.CURDIR}/../alsa-lib/files
LDFLAGS+= -linotify -lepoll-shim
OPTIONS_DEFINE= BAT MANPAGES NLS SAMPLERATE
OPTIONS_DEFAULT= BAT MANPAGES
OPTIONS_SUB= yes
BAT_DESC= Basic Audio Tester support
BAT_LIB_DEPENDS= libfftw3.so:math/fftw3 \
libfftw3f.so:math/fftw3-float
BAT_CONFIGURE_ENABLE= bat
MANPAGES_BUILD_DEPENDS= minixmlto:textproc/minixmlto \
rst2man:textproc/py-docutils
MANPAGES_CONFIGURE_ENABLE= xmlto
MANPAGES_BINARY_ALIAS= xmlto=minixmlto
NLS_USES= gettext-runtime
NLS_CONFIGURE_ENABLE= nls
NLS_LIBS= -lintl
SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate
SAMPLERATE_CONFIGURE_ENV_OFF= ac_cv_header_samplerate_h=no
#${WRKSRC}/speaker-test/samples/sample_map.csv
post-patch:
@${REINPLACE_CMD} \
's|%%PREFIX%%|${PREFIX}|g' \
${WRKSRC}/alsactl/alsactl_init.xml \
${WRKSRC}/speaker-test/speaker-test.1 \
${WRKSRC}/alsaconf/alsaconf.fr.8 \
${WRKSRC}/alsaconf/alsaconf.8 \
${WRKSRC}/utils/alsa-utils.spec.in \
${WRKSRC}/amidi/amidi.1
@${REINPLACE_CMD} \
's|%%LOCALBASE%%|${LOCALBASE}|g' \
${WRKSRC}/alsa-info/alsa-info.sh.1 \
${WRKSRC}/amidi/amidi.1
.include <bsd.port.mk>