Index: head/audio/aubio/Makefile =================================================================== --- head/audio/aubio/Makefile (revision 480996) +++ head/audio/aubio/Makefile (revision 480997) @@ -1,61 +1,74 @@ # Created by: Edward Tomasz Napierala # $FreeBSD$ PORTNAME= aubio -PORTVERSION= 0.4.6 -PORTREVISION?= 1 +PORTVERSION= 0.4.7 +PORTREVISION?= 0 CATEGORIES?= audio MASTER_SITES= http://aubio.org/pub/ -PATCH_SITES= https://github.com/${PORTNAME}/${PORTNAME}/commit/ -PATCHFILES= 5690daf759b4.patch:-p1 - MAINTAINER?= jhale@FreeBSD.org COMMENT?= Library for audio labelling LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING USES+= pkgconfig tar:bzip2 .if !defined(SLAVEPORT) -BUILD_DEPENDS= txt2man:textproc/txt2man - -USES+= waf -CONFIGURE_ARGS= --mandir=${MANPREFIX}/man +USES+= python:build waf USE_LDCONFIG= yes -OPTIONS_DEFINE= COMPLEX DOXYGEN FFMPEG FFTW JACK SAMPLERATE SNDFILE -OPTIONS_DEFAULT= JACK SAMPLERATE SNDFILE FFTW +OPTIONS_GROUP= DOCS +OPTIONS_GROUP_DOCS= DOCS DOXYGEN MANPAGES +OPTIONS_DEFINE= COMPLEX FFMPEG FFTW JACK SAMPLERATE SNDFILE TEST +OPTIONS_DEFAULT= FFTW JACK MANPAGES SAMPLERATE SNDFILE OPTIONS_SUB= yes -COMPLEX_DESC= Compile with C99 complex.h +COMPLEX_DESC= Compile with C99 complex.h COMPLEX_CONFIGURE_ENABLE= complex -DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen -DOXYGEN_CONFIGURE_OFF= --disable-doxygen -FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg + +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} +DOCS_CONFIGURE_ENABLE= sphinx +DOCS_BINARY_ALIAS= sphinx-build=sphinx-build-${PYTHON_VER} + +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen +DOXYGEN_CONFIGURE_ENABLE= doxygen + +FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg FFMPEG_CONFIGURE_ENABLE= avcodec -JACK_LIB_DEPENDS= libjack.so:audio/jack -JACK_CONFIGURE_ENABLE= jack -SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate + +JACK_LIB_DEPENDS= libjack.so:audio/jack +JACK_CONFIGURE_ENABLE= jack + +SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate SAMPLERATE_CONFIGURE_ENABLE= samplerate -FFTW_DESC= Use single precision FFTW3 instead of built-in OOURA -FFTW_CONFIGURE_ENABLE= fftw3f -FFTW_BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 -FFTW_LIB_DEPENDS= libfftw3f.so:math/fftw3-float -SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile + +FFTW_DESC= Use single precision FFTW3 instead of built-in OOURA +FFTW_CONFIGURE_ENABLE= fftw3f +FFTW_BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 +FFTW_LIB_DEPENDS= libfftw3f.so:math/fftw3-float + +MANPAGES_BUILD_DEPENDS= txt2man:textproc/txt2man +MANPAGES_CONFIGURE_ENABLE= manpages +MANPAGES_CONFIGURE_ON= --mandir=${MANPREFIX}/man + +SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile SNDFILE_CONFIGURE_ENABLE= sndfile + +TEST_MAKE_ARGS= --enable-tests +TEST_MAKE_ARGS_OFF= --disable-tests post-patch: @${REINPLACE_CMD} -e \ '/pkgconfig/s|$${LIBDIR}|&data|' ${WRKSRC}/waflib/TaskGen.py post-install: .for b in mfcc notes onset pitch quiet track @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/aubio${b} .endfor @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaubio.so .endif # !defined(SLAVEPORT) .include Index: head/audio/aubio/distinfo =================================================================== --- head/audio/aubio/distinfo (revision 480996) +++ head/audio/aubio/distinfo (revision 480997) @@ -1,5 +1,3 @@ -TIMESTAMP = 1517043034 -SHA256 (aubio-0.4.6.tar.bz2) = bdc73be1f007218d3ea6d2a503b38a217815a0e2ccc4ed441f6e850ed5d47cfb -SIZE (aubio-0.4.6.tar.bz2) = 363016 -SHA256 (5690daf759b4.patch) = 6fd463e812361a7ddb81440babfe00c5aacfb5e08a62897067d0f4019e048cc1 -SIZE (5690daf759b4.patch) = 741 +TIMESTAMP = 1537919656 +SHA256 (aubio-0.4.7.tar.bz2) = cbed4afec5ab3a1a6300c7e3af0a1369379aa94259f5e701a8ca905cdd9fa041 +SIZE (aubio-0.4.7.tar.bz2) = 372173 Index: head/audio/aubio/files/patch-wscript =================================================================== --- head/audio/aubio/files/patch-wscript (revision 480996) +++ head/audio/aubio/files/patch-wscript (revision 480997) @@ -1,40 +1,65 @@ ---- wscript.orig 2017-04-08 10:09:27 UTC +Hunks 1 & 2: Enable manpages, doxygen, and sphinx documentation separately +Hunks 3 & 4: Install docs in more standard locations + +--- wscript.orig 2018-09-23 08:16:59 UTC +++ wscript -@@ -94,6 +94,9 @@ def options(ctx): - help_str = 'build documentation (auto)', - help_disable_str = 'do not build documentation') +@@ -96,9 +96,15 @@ def options(ctx): + help_str = 'compile with source_wavwrite (default)', + help_disable_str = 'do not compile source_wavwrite') -+ ctx.add_option('--disable-doxygen', action = 'store_true', -+ dest = 'disable_doxygen', -+ help = 'disable doxygen even if found') - ctx.add_option('--with-target-platform', type='string', - help='set target platform for cross-compilation', dest='target_platform') +- add_option_enable_disable(ctx, 'docs', default = None, +- help_str = 'build documentation (auto)', +- help_disable_str = 'do not build documentation') ++ add_option_enable_disable(ctx, 'manpages', default = None, ++ help_str = 'build manpages (auto)', ++ help_disable_str = 'do not build manpages') ++ add_option_enable_disable(ctx, 'doxygen', default = None, ++ help_str = 'build API documentation (auto)', ++ help_disable_str = 'do not build API documentation') ++ add_option_enable_disable(ctx, 'sphinx', default = None, ++ help_str = 'build general documentation (auto)', ++ help_disable_str = 'do not build general documentation') -@@ -388,6 +391,9 @@ def configure(ctx): + add_option_enable_disable(ctx, 'tests', default = True, + help_str = 'build tests (true)', +@@ -462,19 +468,21 @@ def configure(ctx): + if (ctx.options.enable_double == True): + ctx.define('HAVE_AUBIO_DOUBLE', 1) + +- if (ctx.options.enable_docs != False): ++ if (ctx.options.enable_manpages != False): + # check if txt2man is installed, optional + try: + ctx.find_program('txt2man', var='TXT2MAN') + except ctx.errors.ConfigurationError: + ctx.to_log('txt2man was not found (ignoring)') + ++ if (ctx.options.enable_doxygen != False): # check if doxygen is installed, optional try: ctx.find_program('doxygen', var='DOXYGEN') -+ if ctx.options.disable_doxygen: -+ from sys import stderr -+ print >> stderr, 'doxygen found, but disabled with --disable-doxygen' except ctx.errors.ConfigurationError: ctx.to_log('doxygen was not found (ignoring)') -@@ -440,7 +446,7 @@ def txt2man(bld): - - def doxygen(bld): - # build documentation from source files using doxygen -- if bld.env['DOXYGEN']: -+ if bld.env['DOXYGEN'] and not bld.options.disable_doxygen: - bld.env.VERSION = VERSION - rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )' - rule += ' | doxygen - > /dev/null' -@@ -448,7 +454,7 @@ def doxygen(bld): ++ if (ctx.options.enable_sphinx != False): + # check if sphinx-build is installed, optional + try: + ctx.find_program('sphinx-build', var='SPHINX') +@@ -536,7 +544,7 @@ def doxygen(bld): source = 'doc/web.cfg', target = '../doc/web/html/index.html', cwd = 'doc') - bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc', + bld.install_files( '${DATAROOTDIR}' + '/doc/aubio', bld.path.ant_glob('doc/web/html/**'), cwd = bld.path.find_dir ('doc/web'), + relative_trick = True) +@@ -550,7 +558,7 @@ def sphinx(bld): + rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`', + source = 'doc/conf.py', + target = '../doc/_build/html/index.html') +- bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx', ++ bld.install_files( '${DATAROOTDIR}' + '/doc/aubio/sphinx', + bld.path.ant_glob('doc/_build/html/**'), + cwd = bld.path.find_dir('doc/_build/html'), relative_trick = True) Index: head/audio/aubio/pkg-plist =================================================================== --- head/audio/aubio/pkg-plist (revision 480996) +++ head/audio/aubio/pkg-plist (revision 480997) @@ -1,342 +1,408 @@ bin/aubiomfcc bin/aubionotes bin/aubioonset bin/aubiopitch bin/aubioquiet bin/aubiotrack include/aubio/aubio.h include/aubio/cvec.h include/aubio/fmat.h include/aubio/fvec.h include/aubio/io/audio_unit.h include/aubio/io/ioutils.h include/aubio/io/sink.h include/aubio/io/sink_apple_audio.h include/aubio/io/sink_sndfile.h include/aubio/io/sink_wavwrite.h include/aubio/io/source.h include/aubio/io/source_apple_audio.h include/aubio/io/source_avcodec.h include/aubio/io/source_sndfile.h include/aubio/io/source_wavread.h include/aubio/lvec.h include/aubio/mathutils.h include/aubio/musicutils.h include/aubio/notes/notes.h include/aubio/onset/onset.h include/aubio/onset/peakpicker.h include/aubio/pitch/pitch.h include/aubio/pitch/pitchfcomb.h include/aubio/pitch/pitchmcomb.h include/aubio/pitch/pitchschmitt.h include/aubio/pitch/pitchspecacf.h include/aubio/pitch/pitchyin.h include/aubio/pitch/pitchyinfast.h include/aubio/pitch/pitchyinfft.h include/aubio/spectral/awhitening.h +include/aubio/spectral/dct.h include/aubio/spectral/fft.h include/aubio/spectral/filterbank.h include/aubio/spectral/filterbank_mel.h include/aubio/spectral/mfcc.h include/aubio/spectral/phasevoc.h include/aubio/spectral/specdesc.h include/aubio/spectral/tss.h include/aubio/synth/sampler.h include/aubio/synth/wavetable.h include/aubio/tempo/beattracking.h include/aubio/tempo/tempo.h include/aubio/temporal/a_weighting.h include/aubio/temporal/biquad.h include/aubio/temporal/c_weighting.h include/aubio/temporal/filter.h include/aubio/temporal/resampler.h include/aubio/types.h include/aubio/utils/hist.h include/aubio/utils/log.h include/aubio/utils/parameter.h include/aubio/utils/scale.h include/aubio/vecutils.h lib/libaubio.a lib/libaubio.so lib/libaubio.so.5 lib/libaubio.so.5.3.7 libdata/pkgconfig/aubio.pc -man/man1/aubio.1.gz -man/man1/aubiocut.1.gz -man/man1/aubiomfcc.1.gz -man/man1/aubionotes.1.gz -man/man1/aubioonset.1.gz -man/man1/aubiopitch.1.gz -man/man1/aubioquiet.1.gz -man/man1/aubiotrack.1.gz -%%DOXYGEN%%share/doc/aubio/html/a__weighting_8h.html -%%DOXYGEN%%share/doc/aubio/html/a__weighting_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/annotated.html -%%DOXYGEN%%share/doc/aubio/html/aubio_8h.html -%%DOXYGEN%%share/doc/aubio/html/aubio_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/awhitening_8h.html -%%DOXYGEN%%share/doc/aubio/html/awhitening_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/bc_s.png -%%DOXYGEN%%share/doc/aubio/html/bdwn.png -%%DOXYGEN%%share/doc/aubio/html/biquad_8h.html -%%DOXYGEN%%share/doc/aubio/html/biquad_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/c__weighting_8h.html -%%DOXYGEN%%share/doc/aubio/html/c__weighting_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/classes.html -%%DOXYGEN%%share/doc/aubio/html/closed.png -%%DOXYGEN%%share/doc/aubio/html/cvec_8h.html -%%DOXYGEN%%share/doc/aubio/html/cvec_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/dir_0019dc9908b3707f2efe5d1d2e908f03.html -%%DOXYGEN%%share/doc/aubio/html/dir_24909bf68f95b02474c7cd396a6ea1b7.html -%%DOXYGEN%%share/doc/aubio/html/dir_421d137a6d6e69b3f737421a73d375f8.html -%%DOXYGEN%%share/doc/aubio/html/dir_6c3688c2a02b4bf89699351955a39c88.html -%%DOXYGEN%%share/doc/aubio/html/dir_7672bb780010713f2d2504f90f5cfe22.html -%%DOXYGEN%%share/doc/aubio/html/dir_9f81523443f82c74e7139b3dddc1da52.html -%%DOXYGEN%%share/doc/aubio/html/dir_bc161955dc3a3d2485839eba21420d01.html -%%DOXYGEN%%share/doc/aubio/html/dir_cbdb8362360e11eafe2fa3bc74cf0ffd.html -%%DOXYGEN%%share/doc/aubio/html/dir_fcd67417bc8295f1aecfd58a346e9273.html -%%DOXYGEN%%share/doc/aubio/html/doc.png -%%DOXYGEN%%share/doc/aubio/html/doxygen.css -%%DOXYGEN%%share/doc/aubio/html/doxygen.png -%%DOXYGEN%%share/doc/aubio/html/dynsections.js -%%DOXYGEN%%share/doc/aubio/html/examples.html -%%DOXYGEN%%share/doc/aubio/html/examples_2aubionotes_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/examples_2aubioonset_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/examples_2aubiopitch_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/examples_2aubiotrack_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/fft_8h.html -%%DOXYGEN%%share/doc/aubio/html/fft_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/files.html -%%DOXYGEN%%share/doc/aubio/html/filter_8h.html -%%DOXYGEN%%share/doc/aubio/html/filter_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/filterbank_8h.html -%%DOXYGEN%%share/doc/aubio/html/filterbank_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/filterbank__mel_8h.html -%%DOXYGEN%%share/doc/aubio/html/filterbank__mel_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/fmat_8h.html -%%DOXYGEN%%share/doc/aubio/html/fmat_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/folderclosed.png -%%DOXYGEN%%share/doc/aubio/html/folderopen.png -%%DOXYGEN%%share/doc/aubio/html/functions.html -%%DOXYGEN%%share/doc/aubio/html/functions_vars.html -%%DOXYGEN%%share/doc/aubio/html/fvec_8h.html -%%DOXYGEN%%share/doc/aubio/html/fvec_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/globals.html -%%DOXYGEN%%share/doc/aubio/html/globals_c.html -%%DOXYGEN%%share/doc/aubio/html/globals_d.html -%%DOXYGEN%%share/doc/aubio/html/globals_defs.html -%%DOXYGEN%%share/doc/aubio/html/globals_enum.html -%%DOXYGEN%%share/doc/aubio/html/globals_eval.html -%%DOXYGEN%%share/doc/aubio/html/globals_f.html -%%DOXYGEN%%share/doc/aubio/html/globals_func.html -%%DOXYGEN%%share/doc/aubio/html/globals_func_c.html -%%DOXYGEN%%share/doc/aubio/html/globals_func_d.html -%%DOXYGEN%%share/doc/aubio/html/globals_func_f.html -%%DOXYGEN%%share/doc/aubio/html/globals_func_l.html -%%DOXYGEN%%share/doc/aubio/html/globals_func_n.html -%%DOXYGEN%%share/doc/aubio/html/globals_h.html -%%DOXYGEN%%share/doc/aubio/html/globals_l.html -%%DOXYGEN%%share/doc/aubio/html/globals_n.html -%%DOXYGEN%%share/doc/aubio/html/globals_s.html -%%DOXYGEN%%share/doc/aubio/html/globals_type.html -%%DOXYGEN%%share/doc/aubio/html/globals_u.html -%%DOXYGEN%%share/doc/aubio/html/index.html -%%DOXYGEN%%share/doc/aubio/html/io_2test-sink_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/io_2test-source_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/io_2test-source_multi_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/jquery.js -%%DOXYGEN%%share/doc/aubio/html/log_8h.html -%%DOXYGEN%%share/doc/aubio/html/log_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/lvec_8h.html -%%DOXYGEN%%share/doc/aubio/html/lvec_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/menu.js -%%DOXYGEN%%share/doc/aubio/html/menudata.js -%%DOXYGEN%%share/doc/aubio/html/mfcc_8h.html -%%DOXYGEN%%share/doc/aubio/html/mfcc_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/musicutils_8h.html -%%DOXYGEN%%share/doc/aubio/html/musicutils_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/nav_f.png -%%DOXYGEN%%share/doc/aubio/html/nav_g.png -%%DOXYGEN%%share/doc/aubio/html/nav_h.png -%%DOXYGEN%%share/doc/aubio/html/notes_8h.html -%%DOXYGEN%%share/doc/aubio/html/notes_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/onset_2test-onset_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/onset_8h.html -%%DOXYGEN%%share/doc/aubio/html/onset_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/open.png -%%DOXYGEN%%share/doc/aubio/html/parameter_8h.html -%%DOXYGEN%%share/doc/aubio/html/parameter_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/phasevoc_8h.html -%%DOXYGEN%%share/doc/aubio/html/phasevoc_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/pitch_2test-pitch_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/pitch_8h.html -%%DOXYGEN%%share/doc/aubio/html/pitch_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/resampler_8h.html -%%DOXYGEN%%share/doc/aubio/html/resampler_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/sampler_8h.html -%%DOXYGEN%%share/doc/aubio/html/sampler_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/search/all_0.html -%%DOXYGEN%%share/doc/aubio/html/search/all_0.js -%%DOXYGEN%%share/doc/aubio/html/search/all_1.html -%%DOXYGEN%%share/doc/aubio/html/search/all_1.js -%%DOXYGEN%%share/doc/aubio/html/search/all_10.html -%%DOXYGEN%%share/doc/aubio/html/search/all_10.js -%%DOXYGEN%%share/doc/aubio/html/search/all_2.html -%%DOXYGEN%%share/doc/aubio/html/search/all_2.js -%%DOXYGEN%%share/doc/aubio/html/search/all_3.html -%%DOXYGEN%%share/doc/aubio/html/search/all_3.js -%%DOXYGEN%%share/doc/aubio/html/search/all_4.html -%%DOXYGEN%%share/doc/aubio/html/search/all_4.js -%%DOXYGEN%%share/doc/aubio/html/search/all_5.html -%%DOXYGEN%%share/doc/aubio/html/search/all_5.js -%%DOXYGEN%%share/doc/aubio/html/search/all_6.html -%%DOXYGEN%%share/doc/aubio/html/search/all_6.js -%%DOXYGEN%%share/doc/aubio/html/search/all_7.html -%%DOXYGEN%%share/doc/aubio/html/search/all_7.js -%%DOXYGEN%%share/doc/aubio/html/search/all_8.html -%%DOXYGEN%%share/doc/aubio/html/search/all_8.js -%%DOXYGEN%%share/doc/aubio/html/search/all_9.html -%%DOXYGEN%%share/doc/aubio/html/search/all_9.js -%%DOXYGEN%%share/doc/aubio/html/search/all_a.html -%%DOXYGEN%%share/doc/aubio/html/search/all_a.js -%%DOXYGEN%%share/doc/aubio/html/search/all_b.html -%%DOXYGEN%%share/doc/aubio/html/search/all_b.js -%%DOXYGEN%%share/doc/aubio/html/search/all_c.html -%%DOXYGEN%%share/doc/aubio/html/search/all_c.js -%%DOXYGEN%%share/doc/aubio/html/search/all_d.html -%%DOXYGEN%%share/doc/aubio/html/search/all_d.js -%%DOXYGEN%%share/doc/aubio/html/search/all_e.html -%%DOXYGEN%%share/doc/aubio/html/search/all_e.js -%%DOXYGEN%%share/doc/aubio/html/search/all_f.html -%%DOXYGEN%%share/doc/aubio/html/search/all_f.js -%%DOXYGEN%%share/doc/aubio/html/search/classes_0.html -%%DOXYGEN%%share/doc/aubio/html/search/classes_0.js -%%DOXYGEN%%share/doc/aubio/html/search/classes_1.html -%%DOXYGEN%%share/doc/aubio/html/search/classes_1.js -%%DOXYGEN%%share/doc/aubio/html/search/classes_2.html -%%DOXYGEN%%share/doc/aubio/html/search/classes_2.js -%%DOXYGEN%%share/doc/aubio/html/search/close.png -%%DOXYGEN%%share/doc/aubio/html/search/defines_0.html -%%DOXYGEN%%share/doc/aubio/html/search/defines_0.js -%%DOXYGEN%%share/doc/aubio/html/search/defines_1.html -%%DOXYGEN%%share/doc/aubio/html/search/defines_1.js -%%DOXYGEN%%share/doc/aubio/html/search/enums_0.html -%%DOXYGEN%%share/doc/aubio/html/search/enums_0.js -%%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.html -%%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.js -%%DOXYGEN%%share/doc/aubio/html/search/files_0.html -%%DOXYGEN%%share/doc/aubio/html/search/files_0.js -%%DOXYGEN%%share/doc/aubio/html/search/files_1.html -%%DOXYGEN%%share/doc/aubio/html/search/files_1.js -%%DOXYGEN%%share/doc/aubio/html/search/files_2.html -%%DOXYGEN%%share/doc/aubio/html/search/files_2.js -%%DOXYGEN%%share/doc/aubio/html/search/files_3.html -%%DOXYGEN%%share/doc/aubio/html/search/files_3.js -%%DOXYGEN%%share/doc/aubio/html/search/files_4.html -%%DOXYGEN%%share/doc/aubio/html/search/files_4.js -%%DOXYGEN%%share/doc/aubio/html/search/files_5.html -%%DOXYGEN%%share/doc/aubio/html/search/files_5.js -%%DOXYGEN%%share/doc/aubio/html/search/files_6.html -%%DOXYGEN%%share/doc/aubio/html/search/files_6.js -%%DOXYGEN%%share/doc/aubio/html/search/files_7.html -%%DOXYGEN%%share/doc/aubio/html/search/files_7.js -%%DOXYGEN%%share/doc/aubio/html/search/files_8.html -%%DOXYGEN%%share/doc/aubio/html/search/files_8.js -%%DOXYGEN%%share/doc/aubio/html/search/files_9.html -%%DOXYGEN%%share/doc/aubio/html/search/files_9.js -%%DOXYGEN%%share/doc/aubio/html/search/files_a.html -%%DOXYGEN%%share/doc/aubio/html/search/files_a.js -%%DOXYGEN%%share/doc/aubio/html/search/files_b.html -%%DOXYGEN%%share/doc/aubio/html/search/files_b.js -%%DOXYGEN%%share/doc/aubio/html/search/files_c.html -%%DOXYGEN%%share/doc/aubio/html/search/files_c.js -%%DOXYGEN%%share/doc/aubio/html/search/files_d.html -%%DOXYGEN%%share/doc/aubio/html/search/files_d.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_0.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_0.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_1.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_1.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_2.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_2.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_3.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_3.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_4.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_4.js -%%DOXYGEN%%share/doc/aubio/html/search/functions_5.html -%%DOXYGEN%%share/doc/aubio/html/search/functions_5.js -%%DOXYGEN%%share/doc/aubio/html/search/mag_sel.png -%%DOXYGEN%%share/doc/aubio/html/search/nomatches.html -%%DOXYGEN%%share/doc/aubio/html/search/search.css -%%DOXYGEN%%share/doc/aubio/html/search/search.js -%%DOXYGEN%%share/doc/aubio/html/search/search_l.png -%%DOXYGEN%%share/doc/aubio/html/search/search_m.png -%%DOXYGEN%%share/doc/aubio/html/search/search_r.png -%%DOXYGEN%%share/doc/aubio/html/search/searchdata.js -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_0.html -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_0.js -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_1.html -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_1.js -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_2.html -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_2.js -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_3.html -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_3.js -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_4.html -%%DOXYGEN%%share/doc/aubio/html/search/typedefs_4.js -%%DOXYGEN%%share/doc/aubio/html/search/variables_0.html -%%DOXYGEN%%share/doc/aubio/html/search/variables_0.js -%%DOXYGEN%%share/doc/aubio/html/search/variables_1.html -%%DOXYGEN%%share/doc/aubio/html/search/variables_1.js -%%DOXYGEN%%share/doc/aubio/html/search/variables_2.html -%%DOXYGEN%%share/doc/aubio/html/search/variables_2.js -%%DOXYGEN%%share/doc/aubio/html/search/variables_3.html -%%DOXYGEN%%share/doc/aubio/html/search/variables_3.js -%%DOXYGEN%%share/doc/aubio/html/search/variables_4.html -%%DOXYGEN%%share/doc/aubio/html/search/variables_4.js -%%DOXYGEN%%share/doc/aubio/html/sink_8h.html -%%DOXYGEN%%share/doc/aubio/html/sink_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/source_8h.html -%%DOXYGEN%%share/doc/aubio/html/source_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/specdesc_8h.html -%%DOXYGEN%%share/doc/aubio/html/specdesc_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-fft_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_mel_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-mfcc_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-phasevoc_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-specdesc_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/spectral_2test-tss_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/splitbar.png -%%DOXYGEN%%share/doc/aubio/html/structcvec__t.html -%%DOXYGEN%%share/doc/aubio/html/structfmat__t.html -%%DOXYGEN%%share/doc/aubio/html/structfvec__t.html -%%DOXYGEN%%share/doc/aubio/html/structlvec__t.html -%%DOXYGEN%%share/doc/aubio/html/sync_off.png -%%DOXYGEN%%share/doc/aubio/html/sync_on.png -%%DOXYGEN%%share/doc/aubio/html/synth_2test-sampler_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/synth_2test-wavetable_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/tab_a.png -%%DOXYGEN%%share/doc/aubio/html/tab_b.png -%%DOXYGEN%%share/doc/aubio/html/tab_h.png -%%DOXYGEN%%share/doc/aubio/html/tab_s.png -%%DOXYGEN%%share/doc/aubio/html/tabs.css -%%DOXYGEN%%share/doc/aubio/html/tempo_2test-tempo_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/tempo_8h.html -%%DOXYGEN%%share/doc/aubio/html/tempo_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/temporal_2test-a_weighting_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/temporal_2test-biquad_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/temporal_2test-c_weighting_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/temporal_2test-filter_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/test-cvec_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/test-fmat_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/test-fvec_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/test-lvec_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/tss_8h.html -%%DOXYGEN%%share/doc/aubio/html/tss_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/types_8h.html -%%DOXYGEN%%share/doc/aubio/html/types_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/utils_2test-log_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/utils_2test-parameter_8c-example.html -%%DOXYGEN%%share/doc/aubio/html/vecutils_8h.html -%%DOXYGEN%%share/doc/aubio/html/vecutils_8h_source.html -%%DOXYGEN%%share/doc/aubio/html/wavetable_8h.html -%%DOXYGEN%%share/doc/aubio/html/wavetable_8h_source.html +%%MANPAGES%%man/man1/aubio.1.gz +%%MANPAGES%%man/man1/aubiocut.1.gz +%%MANPAGES%%man/man1/aubiomfcc.1.gz +%%MANPAGES%%man/man1/aubionotes.1.gz +%%MANPAGES%%man/man1/aubioonset.1.gz +%%MANPAGES%%man/man1/aubiopitch.1.gz +%%MANPAGES%%man/man1/aubioquiet.1.gz +%%MANPAGES%%man/man1/aubiotrack.1.gz +%%DOXYGEN%%%%DOCSDIR%%/html/a__weighting_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/a__weighting_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/annotated.html +%%DOXYGEN%%%%DOCSDIR%%/html/aubio_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/aubio_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/awhitening_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/awhitening_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/bc_s.png +%%DOXYGEN%%%%DOCSDIR%%/html/bdwn.png +%%DOXYGEN%%%%DOCSDIR%%/html/biquad_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/biquad_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/c__weighting_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/c__weighting_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/classes.html +%%DOXYGEN%%%%DOCSDIR%%/html/closed.png +%%DOXYGEN%%%%DOCSDIR%%/html/cvec_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/cvec_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/dct_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/dct_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_0019dc9908b3707f2efe5d1d2e908f03.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_24909bf68f95b02474c7cd396a6ea1b7.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_421d137a6d6e69b3f737421a73d375f8.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_6c3688c2a02b4bf89699351955a39c88.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_7672bb780010713f2d2504f90f5cfe22.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_9f81523443f82c74e7139b3dddc1da52.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_bc161955dc3a3d2485839eba21420d01.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_cbdb8362360e11eafe2fa3bc74cf0ffd.html +%%DOXYGEN%%%%DOCSDIR%%/html/dir_fcd67417bc8295f1aecfd58a346e9273.html +%%DOXYGEN%%%%DOCSDIR%%/html/doc.png +%%DOXYGEN%%%%DOCSDIR%%/html/doxygen.css +%%DOXYGEN%%%%DOCSDIR%%/html/doxygen.png +%%DOXYGEN%%%%DOCSDIR%%/html/dynsections.js +%%DOXYGEN%%%%DOCSDIR%%/html/examples.html +%%DOXYGEN%%%%DOCSDIR%%/html/examples_2aubionotes_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/examples_2aubioonset_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/examples_2aubiopitch_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/examples_2aubiotrack_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/fft_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/fft_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/files.html +%%DOXYGEN%%%%DOCSDIR%%/html/filter_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/filter_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/filterbank_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/filterbank_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/filterbank__mel_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/filterbank__mel_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/fmat_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/fmat_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/folderclosed.png +%%DOXYGEN%%%%DOCSDIR%%/html/folderopen.png +%%DOXYGEN%%%%DOCSDIR%%/html/functions.html +%%DOXYGEN%%%%DOCSDIR%%/html/functions_vars.html +%%DOXYGEN%%%%DOCSDIR%%/html/fvec_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/fvec_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_c.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_d.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_defs.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_enum.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_eval.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_f.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func_c.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func_d.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func_f.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func_l.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_func_n.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_h.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_l.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_n.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_s.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_type.html +%%DOXYGEN%%%%DOCSDIR%%/html/globals_u.html +%%DOXYGEN%%%%DOCSDIR%%/html/index.html +%%DOXYGEN%%%%DOCSDIR%%/html/io_2test-sink_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/io_2test-source_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/io_2test-source_multi_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/jquery.js +%%DOXYGEN%%%%DOCSDIR%%/html/log_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/log_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/lvec_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/lvec_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/menu.js +%%DOXYGEN%%%%DOCSDIR%%/html/menudata.js +%%DOXYGEN%%%%DOCSDIR%%/html/mfcc_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/mfcc_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/musicutils_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/musicutils_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/nav_f.png +%%DOXYGEN%%%%DOCSDIR%%/html/nav_g.png +%%DOXYGEN%%%%DOCSDIR%%/html/nav_h.png +%%DOXYGEN%%%%DOCSDIR%%/html/notes_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/notes_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/onset_2test-onset_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/onset_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/onset_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/open.png +%%DOXYGEN%%%%DOCSDIR%%/html/parameter_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/parameter_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/phasevoc_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/phasevoc_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/pitch_2test-pitch_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/pitch_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/pitch_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/resampler_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/resampler_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/sampler_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/sampler_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_10.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_10.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_3.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_3.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_4.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_4.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_5.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_5.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_6.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_6.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_7.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_7.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_8.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_8.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_9.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_9.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_a.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_a.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_b.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_b.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_c.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_c.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_d.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_d.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_e.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_e.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_f.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/all_f.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/classes_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/close.png +%%DOXYGEN%%%%DOCSDIR%%/html/search/defines_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/defines_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/defines_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/defines_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/enums_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/enums_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/enumvalues_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/enumvalues_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_3.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_3.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_4.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_4.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_5.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_5.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_6.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_6.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_7.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_7.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_8.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_8.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_9.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_9.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_a.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_a.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_b.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_b.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_c.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_c.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_d.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_d.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_e.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/files_e.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_3.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_3.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_4.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_4.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_5.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/functions_5.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/mag_sel.png +%%DOXYGEN%%%%DOCSDIR%%/html/search/nomatches.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/search.css +%%DOXYGEN%%%%DOCSDIR%%/html/search/search.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/search_l.png +%%DOXYGEN%%%%DOCSDIR%%/html/search/search_m.png +%%DOXYGEN%%%%DOCSDIR%%/html/search/search_r.png +%%DOXYGEN%%%%DOCSDIR%%/html/search/searchdata.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_3.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_3.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_4.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/typedefs_4.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_0.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_0.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_1.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_1.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_2.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_2.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_3.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_3.js +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_4.html +%%DOXYGEN%%%%DOCSDIR%%/html/search/variables_4.js +%%DOXYGEN%%%%DOCSDIR%%/html/sink_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/sink_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/source_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/source_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/specdesc_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/specdesc_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-dct_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-fft_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-filterbank_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-filterbank_mel_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-mfcc_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-phasevoc_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-specdesc_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/spectral_2test-tss_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/splitbar.png +%%DOXYGEN%%%%DOCSDIR%%/html/structcvec__t.html +%%DOXYGEN%%%%DOCSDIR%%/html/structfmat__t.html +%%DOXYGEN%%%%DOCSDIR%%/html/structfvec__t.html +%%DOXYGEN%%%%DOCSDIR%%/html/structlvec__t.html +%%DOXYGEN%%%%DOCSDIR%%/html/sync_off.png +%%DOXYGEN%%%%DOCSDIR%%/html/sync_on.png +%%DOXYGEN%%%%DOCSDIR%%/html/synth_2test-sampler_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/synth_2test-wavetable_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/tab_a.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_b.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_h.png +%%DOXYGEN%%%%DOCSDIR%%/html/tab_s.png +%%DOXYGEN%%%%DOCSDIR%%/html/tabs.css +%%DOXYGEN%%%%DOCSDIR%%/html/tempo_2test-tempo_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/tempo_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/tempo_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/temporal_2test-a_weighting_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/temporal_2test-biquad_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/temporal_2test-c_weighting_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/temporal_2test-filter_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/test-cvec_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/test-fmat_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/test-fvec_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/test-lvec_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/tss_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/tss_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/types_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/types_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/utils_2test-log_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/utils_2test-parameter_8c-example.html +%%DOXYGEN%%%%DOCSDIR%%/html/vecutils_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/vecutils_8h_source.html +%%DOXYGEN%%%%DOCSDIR%%/html/wavetable_8h.html +%%DOXYGEN%%%%DOCSDIR%%/html/wavetable_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.buildinfo +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/about.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/cli.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/develop.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/environment.pickle +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/installing.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/.doctrees/python_module.doctree +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_downloads/demo_filter.py +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_downloads/demo_source_simple.py +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_downloads/test-phasevoc.c +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_downloads/test-source.c +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/about.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/cli.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/develop.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/installing.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_sources/python_module.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/ajax-loader.gif +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/basic.css +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/comment-bright.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/comment-close.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/comment.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/dialog-note.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/dialog-seealso.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/dialog-todo.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/dialog-topic.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/dialog-warning.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/down-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/down.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/epub.css +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/file.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/footerbg.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/headerbg.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/ie6.css +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/jquery-3.1.0.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/middlebg.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/minus.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/plus.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/pygments.css +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/pyramid.css +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/searchtools.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/transparent.gif +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/underscore-1.3.1.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/underscore.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/up-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/up.png +%%PORTDOCS%%%%DOCSDIR%%/sphinx/_static/websupport.js +%%PORTDOCS%%%%DOCSDIR%%/sphinx/about.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/cli.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/develop.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/genindex.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/index.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/installing.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/objects.inv +%%PORTDOCS%%%%DOCSDIR%%/sphinx/python_module.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/search.html +%%PORTDOCS%%%%DOCSDIR%%/sphinx/searchindex.js Index: head/audio/py-aubio/Makefile =================================================================== --- head/audio/py-aubio/Makefile (revision 480996) +++ head/audio/py-aubio/Makefile (revision 480997) @@ -1,33 +1,33 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= audio python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= jhale@FreeBSD.org COMMENT= Python bindings for aubio music analysis LIB_DEPENDS= libaubio.so:audio/aubio BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS= ${PYNUMPY} TEST_DEPENDS= sox:audio/sox \ ${PYTHON_PKGNAMEPREFIX}nose2>=0.6.5:devel/py-nose2@${PY_FLAVOR} USES+= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils TEST_ENV= ${MAKE_ENV} PYTHONPATH=${WRKSRC}/`ls -rtd build/lib.* | head -1` TEST_TARGET= test DO_MAKE_TEST= ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYSETUP} MASTERDIR= ${.CURDIR}/../../audio/aubio SLAVEPORT= py PLIST= ${.CURDIR}/pkg-plist pre-test: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} create_test_sounds) post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_aubio.so .include "${MASTERDIR}/Makefile"