Update to 0.4.3.
This commit is contained in:
parent
687db2faa7
commit
476ba5e8c7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=429746
@ -2,8 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aubio
|
||||
PORTVERSION= 0.4.2
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 0.4.3
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://aubio.org/pub/
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
SHA256 (aubio-0.4.2.tar.bz2) = 1cc58e0fed2b9468305b198ad06b889f228b797a082c2ede716dc30fcb4f8f1f
|
||||
SIZE (aubio-0.4.2.tar.bz2) = 304216
|
||||
TIMESTAMP = 1482928262
|
||||
SHA256 (aubio-0.4.3.tar.bz2) = b62cdb073c0c64ae301917fa162969d42cba45e478bdf1e74490bd87e9cceaab
|
||||
SIZE (aubio-0.4.3.tar.bz2) = 328852
|
||||
|
@ -1,26 +1,26 @@
|
||||
--- wscript.orig 2015-08-01 10:24:35 UTC
|
||||
--- wscript.orig 2016-08-16 10:36:06 UTC
|
||||
+++ wscript
|
||||
@@ -75,6 +75,9 @@ def options(ctx):
|
||||
add_option_enable_disable(ctx, 'fat', default = False,
|
||||
help_str = 'build fat binaries (darwin only)',
|
||||
help_disable_str = 'do not build fat binaries (default)')
|
||||
@@ -91,6 +91,9 @@ def options(ctx):
|
||||
help_str = 'build documentation (auto)',
|
||||
help_disable_str = 'do not build documentation')
|
||||
|
||||
+ 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')
|
||||
@@ -258,6 +261,9 @@ def configure(ctx):
|
||||
# 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)')
|
||||
|
||||
@@ -295,11 +301,11 @@ def build(bld):
|
||||
@@ -323,6 +326,9 @@ def configure(ctx):
|
||||
# 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)')
|
||||
|
||||
@@ -358,11 +364,11 @@ def build(bld):
|
||||
bld( source = bld.path.ant_glob('doc/*.txt') )
|
||||
|
||||
# build documentation from source files using doxygen
|
||||
|
@ -21,6 +21,7 @@ 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
|
||||
@ -52,8 +53,8 @@ include/aubio/utils/parameter.h
|
||||
include/aubio/utils/scale.h
|
||||
include/aubio/vecutils.h
|
||||
lib/libaubio.so
|
||||
lib/libaubio.so.4
|
||||
lib/libaubio.so.4.2.2
|
||||
lib/libaubio.so.5
|
||||
lib/libaubio.so.5.0.4
|
||||
libdata/pkgconfig/aubio.pc
|
||||
man/man1/aubiocut.1.gz
|
||||
man/man1/aubiomfcc.1.gz
|
||||
|
Loading…
Reference in New Issue
Block a user