The NetBSD Project

CVS log for pkgsrc/audio/portaudio/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / audio / portaudio

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.38 / (download) - annotate - [select for diffs], Sat May 6 19:08:47 2023 UTC (4 months, 3 weeks ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, HEAD
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

*: Recursive revbump from audio/libopus 1.4

Revision 1.37 / (download) - annotate - [select for diffs], Sun Sep 11 12:51:04 2022 UTC (12 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

*: bump PKGREVISION for flac shlib bump

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jun 14 14:18:45 2022 UTC (15 months, 2 weeks ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

portaudio: Fix a floating point exception preventing Audacity from
starting on NetBSD under some circumstances.

Revision 1.35 / (download) - annotate - [select for diffs], Mon Mar 28 10:43:38 2022 UTC (18 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

a*/*: revbump(1) for libsndfile

Revision 1.34 / (download) - annotate - [select for diffs], Thu Sep 9 21:41:59 2021 UTC (2 years ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

portaudio: Fix playing very short files in Audacity with Sun backend

According to portaudio's own docs, my previous code was correct -
aborting the stream should cause any queued samples to be dropped.
However, audacity seems to be abusing the portaudio API and calling
Abort immediately once it's finished processing the output...

Revision 1.33 / (download) - annotate - [select for diffs], Wed Sep 8 21:04:57 2021 UTC (2 years ago) by nia
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

Recursive revbump for audio/jack

Revision 1.32 / (download) - annotate - [select for diffs], Sat Jan 16 21:06:52 2021 UTC (2 years, 8 months ago) by reinoud
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

Fix Sun/NetBSD audio support. uaudio(4) record-only audio devices would not
allow to be opened write-only and the logic would then skip to the next
device.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Aug 18 17:57:25 2020 UTC (3 years, 1 month ago) by leot
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored)

*: revbump for libsndfile

Revision 1.30 / (download) - annotate - [select for diffs], Fri Apr 17 15:50:03 2020 UTC (3 years, 5 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2
Changes since 1.29: +14 -27 lines
Diff to previous 1.29 (colored)

portaudio: Add a Sun/NetBSD audio backend. This works with Audacity.

While here, generally clean up the package...

Bump PKGREVISION

Revision 1.29 / (download) - annotate - [select for diffs], Wed Apr 15 17:12:14 2020 UTC (3 years, 5 months ago) by nia
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored)

portaudio: In the OSS hostapi, support additional sample formats.

While here, adjust some hacks around differences between NetBSD ossaudio
and OSSv4:

It turns out the problem was Audacity attempting to initialize with
an absurdly high sample rate. When a sample rate that's outside the
range of the kernel's maximum of 192000 is passed to SNDCTL_DSP_SPEED,
-1 was returned (until my commits today).

This is a violation of the OSSv4 spec in NetBSD. The spec states that if
an unsupported sample rate is requested, a supported one should be picked
and returned.

Revision 1.28 / (download) - annotate - [select for diffs], Mon Dec 2 10:08:20 2019 UTC (3 years, 10 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4
Changes since 1.27: +4 -1 lines
Diff to previous 1.27 (colored)

portaudio: Not make jobs safe.

I think we've been lucky until failures started cropping up in the aarch64
build...

Revision 1.27 / (download) - annotate - [select for diffs], Sun Nov 24 14:44:18 2019 UTC (3 years, 10 months ago) by nia
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored)

Take MAINTAINER for portaudio.

Revision 1.26 / (download) - annotate - [select for diffs], Sun Nov 24 13:15:15 2019 UTC (3 years, 10 months ago) by nia
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

portaudio: Fix recording with the OSS backend on NetBSD.

This is trying to open /dev/audioX in non-blocking mode and poll() it.

This basically never works as expected, and is especially pointless with
the short reads PortAudio is doing. So don't do it.

It is also asserting some values to be returned from ioctls which the
emulation layer doesn't provide. This is also nearly entirely pointless,
so don't do it.

Recording now works in audacity.

Bump portaudio's PKGREVISION.

Revision 1.25 / (download) - annotate - [select for diffs], Sat Oct 26 17:22:07 2019 UTC (3 years, 11 months ago) by nia
Branch: MAIN
Changes since 1.24: +8 -2 lines
Diff to previous 1.24 (colored)

audio: Allow audacity to use the system's portaudio.

This should make it easier to diagnose and fix recording problems later.
Probably.

Revision 1.24 / (download) - annotate - [select for diffs], Sun Oct 20 11:10:49 2019 UTC (3 years, 11 months ago) by nia
Branch: MAIN
Changes since 1.23: +39 -23 lines
Diff to previous 1.23 (colored)

Rename audio/portaudio-devel to audio/portaudio

Revision 1.23, Sun Jul 21 23:08:22 2019 UTC (4 years, 2 months ago) by nia
Branch: MAIN
Changes since 1.22: +1 -1 lines
FILE REMOVED

Remove audio/portaudio, replacement audio/portaudio-devel.

This is v18 of the library. portaudio-devel is v19.
v19's initial release was in 2007, this was last updated in 2003.

Nothing is using this now.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Feb 28 21:46:51 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

portaudio: honor LDFLAGS. Fixes RELRO build.

Bump PKGREVISION.

Revision 1.21 / (download) - annotate - [select for diffs], Tue Jan 8 16:23:24 2013 UTC (10 years, 8 months ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1
Changes since 1.20: +2 -1 lines
Diff to previous 1.20 (colored)

LICENSE=mit

Revision 1.20 / (download) - annotate - [select for diffs], Tue Oct 2 23:48:04 2012 UTC (11 years ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.19: +1 -3 lines
Diff to previous 1.19 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.19 / (download) - annotate - [select for diffs], Tue Oct 12 21:50:49 2010 UTC (12 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

Don't mess up the links created by libtool, resulting in symlinks to
Nirvana. Bump revision

Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 25 11:57:44 2009 UTC (14 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.17: +1 -3 lines
Diff to previous 1.17 (colored)

Get rid of now unnecessary EXTRACT_OPTS_ZIP.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Feb 5 20:21:56 2008 UTC (15 years, 8 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.16: +5 -3 lines
Diff to previous 1.16 (colored)

redo the librt patch so that libportaudio.so is linked against librt,
and try to introduce a scheme which could be used in a more general
framework (once NetBSD has stabilized and we got some experience
with the realtime stuff)

Revision 1.16 / (download) - annotate - [select for diffs], Sun Feb 3 16:10:22 2008 UTC (15 years, 8 months ago) by tnn
Branch: MAIN
Changes since 1.15: +8 -2 lines
Diff to previous 1.15 (colored)

Fix build on NetBSD-current

Revision 1.15 / (download) - annotate - [select for diffs], Sun Jul 1 21:00:14 2007 UTC (16 years, 3 months ago) by heinz
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3
Changes since 1.14: +6 -2 lines
Diff to previous 1.14 (colored)

Added support for installation to DESTDIR.

Revision 1.14 / (download) - annotate - [select for diffs], Tue May 16 08:09:42 2006 UTC (17 years, 4 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.13: +3 -1 lines
Diff to previous 1.13 (colored)

Add a compiler option to find a header file on Darwin.  This addresses the
first problem reported in PR pkg/33420.  The second problem (link errors)
is not reproducible on my Darwin 8.6.0.

Revision 1.13 / (download) - annotate - [select for diffs], Thu Mar 9 21:04:41 2006 UTC (17 years, 6 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.
Remove deprecated ossaudio.buildlink3.mk.

Revision 1.12 / (download) - annotate - [select for diffs], Sat Mar 4 21:28:57 2006 UTC (17 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.11 / (download) - annotate - [select for diffs], Sun Feb 5 23:08:13 2006 UTC (17 years, 7 months ago) by joerg
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Recursive revision bump / recommended bump for gettext ABI change.

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jan 20 23:41:29 2006 UTC (17 years, 8 months ago) by jlam
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

Rename the following variables to reduce the number that we need to track:

	EXTRACT_CMD_OPTS.bin		->  EXTRACT_OPTS_BIN
	EXTRACT_CMD_OPTS.lha		->  EXTRACT_OPTS_LHA
	EXTRACT_CMD_OPTS.rar		->  EXTRACT_OPTS_RAR
	EXTRACT_CMD_OPTS.tar		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tar.Z		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tar.bz2	->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tar.gz		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tbz		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tbz2		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.tgz		->  EXTRACT_OPTS_TAR
	EXTRACT_CMD_OPTS.zip		->  EXTRACT_OPTS_ZIP
	EXTRACT_CMD_OPTS.zoo		->  EXTRACT_OPTS_ZOO
	EXTRACT_CMD_OPTS_tar.gz		->  EXTRACT_OPTS_TAR

Revision 1.9 / (download) - annotate - [select for diffs], Mon Dec 5 20:49:49 2005 UTC (17 years, 10 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.8: +1 -2 lines
Diff to previous 1.8 (colored)

Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html

Revision 1.8 / (download) - annotate - [select for diffs], Mon Oct 31 16:13:06 2005 UTC (17 years, 11 months ago) by tv
Branch: MAIN
Changes since 1.7: +3 -1 lines
Diff to previous 1.7 (colored)

NOT_FOR_PLATFORM Interix.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Oct 10 15:24:08 2005 UTC (17 years, 11 months ago) by joerg
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

Set GNU_CONFIGURE to get config.guess / config.sub override

Revision 1.6 / (download) - annotate - [select for diffs], Wed Jul 27 16:21:16 2005 UTC (18 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Reset MAINTAINER -- he stopped working on pkgsrc.

Revision 1.5 / (download) - annotate - [select for diffs], Sun May 22 20:07:39 2005 UTC (18 years, 4 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:

	USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison

Revision 1.4 / (download) - annotate - [select for diffs], Mon Apr 11 21:44:56 2005 UTC (18 years, 5 months ago) by tv
Branch: MAIN
Changes since 1.3: +1 -2 lines
Diff to previous 1.3 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Nov 22 15:51:57 2004 UTC (18 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.2: +14 -15 lines
Diff to previous 1.2 (colored)

Makefile cleaned-up, HOMEPAGE corrected

Revision 1.2 / (download) - annotate - [select for diffs], Tue Oct 5 03:53:15 2004 UTC (19 years ago) by ben
Branch: MAIN
Changes since 1.1: +3 -1 lines
Diff to previous 1.1 (colored)

Libtoolize portaudio and bump PKGREVISION.  This may resolve PR#27050.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Apr 20 17:52:48 2004 UTC (19 years, 5 months ago) by ben
Branch: TNF
CVS Tags: pkgsrc-base, pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of portaudio-18.1, a portable cross-platform audio API.

Package provided by dotz@irc.pl.

PortAudio is a free, cross platform, open-source, audio I/O library.  It
lets you write simple audio programs in 'C' that will compile and run on
many platforms including Windows, Macintosh (8,9,X), Unix (OSS), SGI, and
BeOS. PortAudio is intended to promote the exchange of audio synthesis
software between developers on different platforms, and was recently
selected as the audio component of a larger PortMusic project that includes
MIDI and sound file support. 

PortAudio provides a very simple API for recording and/or playing sound
using a simple callback function.  Example programs are included that
synthesize sine waves and pink noise, perform fuzz distortion on a guitar,
list available audio devices, etc.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Apr 20 17:52:48 2004 UTC (19 years, 5 months ago) by ben
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>