Update to upstream version 0.4.4
This commit is contained in:
parent
0451ec87d3
commit
daad3aced9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=430940
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aubio
|
||||
PORTVERSION= 0.4.3
|
||||
PORTVERSION= 0.4.4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://aubio.org/pub/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1482928262
|
||||
SHA256 (aubio-0.4.3.tar.bz2) = b62cdb073c0c64ae301917fa162969d42cba45e478bdf1e74490bd87e9cceaab
|
||||
SIZE (aubio-0.4.3.tar.bz2) = 328852
|
||||
TIMESTAMP = 1483950303
|
||||
SHA256 (aubio-0.4.4.tar.bz2) = 2acdb92623b9d4ba641c387760ffe3ec1e4c6ab498e64e5e2286c99e36ffbff8
|
||||
SIZE (aubio-0.4.4.tar.bz2) = 334754
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- wscript.orig 2016-08-16 10:36:06 UTC
|
||||
--- wscript.orig 2017-01-08 15:44:05 UTC
|
||||
+++ wscript
|
||||
@@ -91,6 +91,9 @@ def options(ctx):
|
||||
@@ -103,6 +103,9 @@ def options(ctx):
|
||||
help_str = 'build documentation (auto)',
|
||||
help_disable_str = 'do not build documentation')
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
ctx.add_option('--with-target-platform', type='string',
|
||||
help='set target platform for cross-compilation', dest='target_platform')
|
||||
|
||||
@@ -323,6 +326,9 @@ def configure(ctx):
|
||||
@@ -376,6 +379,9 @@ def configure(ctx):
|
||||
# check if doxygen is installed, optional
|
||||
try:
|
||||
ctx.find_program('doxygen', var='DOXYGEN')
|
||||
@ -20,17 +20,18 @@
|
||||
except ctx.errors.ConfigurationError:
|
||||
ctx.to_log('doxygen was not found (ignoring)')
|
||||
|
||||
@@ -358,11 +364,11 @@ def build(bld):
|
||||
bld( source = bld.path.ant_glob('doc/*.txt') )
|
||||
@@ -428,12 +434,12 @@ 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( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
|
||||
source = 'doc/web.cfg',
|
||||
target = '../doc/web/html/index.html',
|
||||
cwd = 'doc')
|
||||
- bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
|
||||
+ bld.install_files( '${PREFIX}' + '/share/doc/aubio',
|
||||
- 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)
|
||||
|
@ -9,6 +9,7 @@ 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
|
||||
@ -49,12 +50,14 @@ 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.0.4
|
||||
lib/libaubio.so.5.1.5
|
||||
libdata/pkgconfig/aubio.pc
|
||||
man/man1/aubiocut.1.gz
|
||||
man/man1/aubiomfcc.1.gz
|
||||
@ -80,6 +83,7 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -116,6 +120,8 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -134,6 +140,8 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -145,6 +153,8 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -205,6 +215,10 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -231,6 +245,8 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -277,6 +293,7 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
@ -284,7 +301,6 @@ man/man1/aubiotrack.1.gz
|
||||
%%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/src_2spectral_2test-fft_8c-example.html
|
||||
%%DOXYGEN%%share/doc/aubio/html/structcvec__t.html
|
||||
%%DOXYGEN%%share/doc/aubio/html/structfmat__t.html
|
||||
%%DOXYGEN%%share/doc/aubio/html/structfvec__t.html
|
||||
@ -313,6 +329,7 @@ man/man1/aubiotrack.1.gz
|
||||
%%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
|
||||
|
Loading…
Reference in New Issue
Block a user