mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
Update to 0.4.5.
This commit is contained in:
parent
54c9fec60a
commit
2e7b48f602
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438758
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aubio
|
||||
PORTVERSION= 0.4.4
|
||||
PORTVERSION= 0.4.5
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://aubio.org/pub/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1483950303
|
||||
SHA256 (aubio-0.4.4.tar.bz2) = 2acdb92623b9d4ba641c387760ffe3ec1e4c6ab498e64e5e2286c99e36ffbff8
|
||||
SIZE (aubio-0.4.4.tar.bz2) = 334754
|
||||
TIMESTAMP = 1492480690
|
||||
SHA256 (aubio-0.4.5.tar.bz2) = 70c2804e6f4fbf0ebc0fb9ac8cc9d465ef4a4d438311c074c9a7364e98827af6
|
||||
SIZE (aubio-0.4.5.tar.bz2) = 350615
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- wscript.orig 2017-01-08 15:44:05 UTC
|
||||
--- wscript.orig 2017-04-08 10:09:27 UTC
|
||||
+++ wscript
|
||||
@@ -103,6 +103,9 @@ def options(ctx):
|
||||
@@ -94,6 +94,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')
|
||||
|
||||
@@ -376,6 +379,9 @@ def configure(ctx):
|
||||
@@ -388,6 +391,9 @@ def configure(ctx):
|
||||
# check if doxygen is installed, optional
|
||||
try:
|
||||
ctx.find_program('doxygen', var='DOXYGEN')
|
||||
@ -20,13 +20,16 @@
|
||||
except ctx.errors.ConfigurationError:
|
||||
ctx.to_log('doxygen was not found (ignoring)')
|
||||
|
||||
@@ -428,12 +434,12 @@ def txt2man(bld):
|
||||
@@ -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( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
|
||||
bld.env.VERSION = VERSION
|
||||
rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
|
||||
rule += ' | doxygen - > /dev/null'
|
||||
@@ -448,7 +454,7 @@ def doxygen(bld):
|
||||
source = 'doc/web.cfg',
|
||||
target = '../doc/web/html/index.html',
|
||||
cwd = 'doc')
|
||||
|
@ -32,6 +32,7 @@ include/aubio/pitch/pitchschmitt.h
|
||||
include/aubio/pitch/pitchspecacf.h
|
||||
include/aubio/pitch/pitchyin.h
|
||||
include/aubio/pitch/pitchyinfft.h
|
||||
include/aubio/spectral/awhitening.h
|
||||
include/aubio/spectral/fft.h
|
||||
include/aubio/spectral/filterbank.h
|
||||
include/aubio/spectral/filterbank_mel.h
|
||||
@ -57,8 +58,9 @@ include/aubio/vecutils.h
|
||||
lib/libaubio.a
|
||||
lib/libaubio.so
|
||||
lib/libaubio.so.5
|
||||
lib/libaubio.so.5.1.5
|
||||
lib/libaubio.so.5.2.6
|
||||
libdata/pkgconfig/aubio.pc
|
||||
man/man1/aubio.1.gz
|
||||
man/man1/aubiocut.1.gz
|
||||
man/man1/aubiomfcc.1.gz
|
||||
man/man1/aubionotes.1.gz
|
||||
|
Loading…
Reference in New Issue
Block a user