diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2020-12-06 08:03:16 +0000 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2020-12-06 08:03:16 +0000 |
commit | c20e24cb442c9294a5b7371aa7e55f60666914a9 (patch) | |
tree | bc1962c3df5f78be51053ef877b50cd6783280cf | |
parent | 36fb13d8f6eade3b1dd0a915bd8df76267a203bc (diff) | |
download | ports-c20e24cb442c9294a5b7371aa7e55f60666914a9.tar.gz ports-c20e24cb442c9294a5b7371aa7e55f60666914a9.zip |
audio/ecasound: Update to 2.9.3
Minor release with some bugfixes. Most important change
is full support for Python 3 now.
Changelog: https://nosignal.fi/ecasound/history.php
PR: 251521
Submitted by: Neel Chauhan <neel@neelc.org> (maintainer)
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D27491
Notes
Notes:
svn path=/head/; revision=557114
-rw-r--r-- | audio/ecasound/Makefile | 15 | ||||
-rw-r--r-- | audio/ecasound/distinfo | 5 | ||||
-rw-r--r-- | audio/ecasound/pkg-plist | 4 |
3 files changed, 15 insertions, 9 deletions
diff --git a/audio/ecasound/Makefile b/audio/ecasound/Makefile index 8cc1bd380f7e..14fda7765951 100644 --- a/audio/ecasound/Makefile +++ b/audio/ecasound/Makefile @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= ecasound -PORTVERSION= 2.9.1 -PORTREVISION= 7 +PORTVERSION= 2.9.3 CATEGORIES= audio MASTER_SITES= http://ecasound.seul.org/download/ \ http://nosignal.fi/download/ \ http://ecawave.sourceforge.net/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= neel@neelc.org COMMENT= Multitrack audio processing software LICENSE= GPLv2 LGPL21 @@ -17,14 +16,14 @@ LICENSE_COMB= multi BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa -USES= gmake libtool localbase:ldflags pkgconfig readline:port shebangfix +USES= gmake libtool localbase:ldflags ncurses pkgconfig \ + readline:port shebangfix SHEBANG_FILES= ecatools/ecamonitor GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-liblilv \ --disable-rubyecasound \ --enable-sys-readline=no \ --disable-arts -USE_LDCONFIG= yes LDFLAGS+= -pthread @@ -33,6 +32,8 @@ OPTIONS_DEFAULT=PYTHON OPTIONS_SUB= yes ALSA_CONFIGURE_ENABLE= alsa +# Prevent from linking libasound.so if ALSA disabled. +ALSA_CONFIGURE_ENV_OFF= ac_cv_search_snd_pcm_open=no ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib AUDIOFILE_CONFIGURE_ENABLE= audiofile AUDIOFILE_LIB_DEPENDS= libaudiofile.so:audio/libaudiofile @@ -57,4 +58,8 @@ post-patch: s| -D_P1003_1B_VISIBLE|| ; \ s|python -c|$$PYTHONPATH -c|' ${WRKSRC}/configure +post-install-PYTHON-off: + ${RM} -R ${STAGEDIR}${PREFIX}/bin/ecamonitor + ${RM} -R ${STAGEDIR}${MANPREFIX}/man/man1/ecamonitor.1.gz + .include <bsd.port.mk> diff --git a/audio/ecasound/distinfo b/audio/ecasound/distinfo index 8ada9f325a14..b63376b855b4 100644 --- a/audio/ecasound/distinfo +++ b/audio/ecasound/distinfo @@ -1,2 +1,3 @@ -SHA256 (ecasound-2.9.1.tar.gz) = 39fce8becd84d80620fa3de31fb5223b2b7d4648d36c9c337d3739c2fad0dcf3 -SIZE (ecasound-2.9.1.tar.gz) = 1057333 +TIMESTAMP = 1606889072 +SHA256 (ecasound-2.9.3.tar.gz) = 468bec44566571043c655c808ddeb49ae4f660e49ab0072970589fd5a493f6d4 +SIZE (ecasound-2.9.3.tar.gz) = 1101628 diff --git a/audio/ecasound/pkg-plist b/audio/ecasound/pkg-plist index c4c3ff60a7eb..35f43fa7a01b 100644 --- a/audio/ecasound/pkg-plist +++ b/audio/ecasound/pkg-plist @@ -1,7 +1,7 @@ bin/ecaconvert bin/ecafixdc bin/ecalength -bin/ecamonitor +%%PYTHON%%bin/ecamonitor bin/ecanormalize bin/ecaplay bin/ecasignalview @@ -160,7 +160,7 @@ lib/libkvutils.a man/man1/ecaconvert.1.gz man/man1/ecafixdc.1.gz man/man1/ecalength.1.gz -man/man1/ecamonitor.1.gz +%%PYTHON%%man/man1/ecamonitor.1.gz man/man1/ecanormalize.1.gz man/man1/ecaplay.1.gz man/man1/ecasignalview.1.gz |