notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: audio/openal-soft/Makefile

Number of commits found: 85

Monday, 7 Aug 2023
16:34 Gleb Popov (arrowd) search for other commits by this committer
audio/pulseaudio: Update to 16.1

Bump PORTREVISION on consumers.

Sponsored by:	Serenity Cybersecurity, LLC

PR:		262713
commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 b1ecad5
Sunday, 25 Dec 2022
23:11 Dimitry Andric (dim) search for other commits by this committer
audio/openal-soft: unbreak after 145ca5487348

Unbreak build by moving bsd.port.pre.mk include to just before
post-patch, and using bsd.port.post.mk at the end.

PR:		268495
Reported by:	fluffy
Fixes:		145ca5487348
MFH:		2022Q4
commit hash: 85d704c5f2603e9c196598b7a6cba6ecb58b20ae commit hash: 85d704c5f2603e9c196598b7a6cba6ecb58b20ae commit hash: 85d704c5f2603e9c196598b7a6cba6ecb58b20ae commit hash: 85d704c5f2603e9c196598b7a6cba6ecb58b20ae 85d704c
17:53 Dimitry Andric (dim) search for other commits by this committer
audio/openal-soft: fix build with lld 15 on i386

During an exp-run for llvm 15 (see bug 265425), it turned out that
audio/openal-soft failed to link with lld 15, on i386:

  : && /usr/bin/c++ -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -O2
-pipe -fstack-protector-strong -fno-strict-aliasing   -DNDEBUG -Wl,--as-needed
-fstack-protector-strong -Wl,-z,notext
CMakeFiles/makemhr.dir/utils/makemhr/loaddef.cpp.o
CMakeFiles/makemhr.dir/utils/makemhr/loadsofa.cpp.o
CMakeFiles/makemhr.dir/utils/makemhr/makemhr.cpp.o -o makemhr 
-Wl,-rpath,/usr/local/lib:  -pthread  libsofa-support.a  -pthread  libcommon.a 
/usr/local/lib/libmysofa.so  /usr/lib/libz.so  -lm && :
  ld: error: makemhr:(.eh_frame+0x14cf): internal linker error: wrote incorrect
addend value 0x3400 instead of 0x0 for dynamic relocation R_386_32 at offset
0x408417 against symbol __gxx_personality_v0

This is because lld 15 with assertions enabled (which is default on
-CURRENT) checks dynamic relocations more thoroughly, and in combination
with -z notext (which was added earlier for bug 242307) results in the
above diagnostic.

Work around it by disabling the dynamic relations checks on i386.

PR:		268495
Approved by:	maintainer timeout (2 weeks)
MFH:		2022Q4
commit hash: 145ca54873489e7d45eac99de62f733a54dc294d commit hash: 145ca54873489e7d45eac99de62f733a54dc294d commit hash: 145ca54873489e7d45eac99de62f733a54dc294d commit hash: 145ca54873489e7d45eac99de62f733a54dc294d 145ca54
Sunday, 11 Sep 2022
10:20 Felix Palmen (zirias) search for other commits by this committer
Mk/Uses: always use colon for build/run suffix

Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
commit hash: ddae4e92d8313a1461145e3b4f0232fe463feaee commit hash: ddae4e92d8313a1461145e3b4f0232fe463feaee commit hash: ddae4e92d8313a1461145e3b4f0232fe463feaee commit hash: ddae4e92d8313a1461145e3b4f0232fe463feaee ddae4e9
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Sunday, 6 Mar 2022
16:30 Alexey Dokuchaev (danfe) search for other commits by this committer
audio/openal-soft: allow to build the port without the utilities

This helps to avoid dependency on `audio/libmysofa' and thus not
to download its quite heavy ~190 MB distfile.
commit hash: d754f15cf9775d4dc879bd9ccbf9e1173ee8aa6c commit hash: d754f15cf9775d4dc879bd9ccbf9e1173ee8aa6c commit hash: d754f15cf9775d4dc879bd9ccbf9e1173ee8aa6c commit hash: d754f15cf9775d4dc879bd9ccbf9e1173ee8aa6c d754f15
Monday, 1 Nov 2021
14:31 Thomas Zander (riggs) search for other commits by this committer
audio/openal-soft: Include the last patch for upstream sndio backend.

Details:
- Backport the remaining sndio backend commit at:
 
https://github.com/kcat/openal-soft/commit/2df78e49b1359e7603e3816270737c68cccd5b05

Reported by:	Brad Smith <brad@comstyle.com>
MFH:		2021Q4
commit hash: 520be1663a38864dc78882d186d423ba900a46ad commit hash: 520be1663a38864dc78882d186d423ba900a46ad commit hash: 520be1663a38864dc78882d186d423ba900a46ad commit hash: 520be1663a38864dc78882d186d423ba900a46ad 520be16
Friday, 22 Oct 2021
10:08 Thomas Zander (riggs) search for other commits by this committer
audio/openal-soft: Fix crashes in the sndio backend.

Details:
- Backport the upstream commits at
 
https://github.com/kcat/openal-soft/commit/620836f173ae6fc4505d0634984e0f2c46166367
 
https://github.com/kcat/openal-soft/commit/1fd4c865fc084f134363db5155361d5483679235
 
https://github.com/kcat/openal-soft/commit/a4b0a3d7b3ec271243cfda4780e567e49f2b37b7

MFH:		2021Q4
commit hash: 059ad2ed29b7ca685d2b088296728e99fc5c4e11 commit hash: 059ad2ed29b7ca685d2b088296728e99fc5c4e11 commit hash: 059ad2ed29b7ca685d2b088296728e99fc5c4e11 commit hash: 059ad2ed29b7ca685d2b088296728e99fc5c4e11 059ad2e
Monday, 4 Oct 2021
14:57 Baptiste Daroussin (bapt) search for other commits by this committer
audio/openal-soft: update to 1.21.1
commit hash: 56d34eb304dcd5ba438a40b053533fd2a468d71f commit hash: 56d34eb304dcd5ba438a40b053533fd2a468d71f commit hash: 56d34eb304dcd5ba438a40b053533fd2a468d71f commit hash: 56d34eb304dcd5ba438a40b053533fd2a468d71f 56d34eb
Monday, 2 Aug 2021
16:03 Yuri Victorovich (yuri) search for other commits by this committer
audio/jack: Update to Jack2: 0.125.0 -> 1.9.16

Big thank you to Florian Walpen <dev@submerge.ch> and
Goran Mekić <meka@tilda.center> for working on Jack2.

PR:		251125
Submitted by:	Florian Walpen <dev@submerge.ch> (original version)
commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd 5708ae4
Saturday, 17 Apr 2021
05:06 Thomas Zander (riggs) search for other commits by this committer
audio/openal-soft: Update to upstream version 1.21.0.

PR:		252961
Reported by:	fluffy
MFH:		2021Q2
commit hash: 7c7c9f42b1d7aa21fe4e32ab49cfc2810bff47e2 commit hash: 7c7c9f42b1d7aa21fe4e32ab49cfc2810bff47e2 commit hash: 7c7c9f42b1d7aa21fe4e32ab49cfc2810bff47e2 commit hash: 7c7c9f42b1d7aa21fe4e32ab49cfc2810bff47e2 7c7c9f4
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Monday, 28 Sep 2020
05:05 tobik search for other commits by this committer
Reset MAINTAINER
Original commitRevision:550400 
Sunday, 12 Jul 2020
09:30 tobik search for other commits by this committer
audio/sndio: Update to 1.7.0
Original commitRevision:542069 
Monday, 29 Jun 2020
17:27 jhale search for other commits by this committer
Update audio/libmysofa to 1.1
Bump PORTREVISION on dependent ports due to shared library version bump
Original commitRevision:540817 
Thursday, 19 Mar 2020
23:02 tobik search for other commits by this committer
Clean up LLD_UNSAFE from openal-soft ports

After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and
can drop LLD_UNSAFE from openal-soft ports.  LLD can link them fine
now but some ports needs a little help on i386 (-Wl,-znotext).

PR:		226980
Reviewed by:	jbeich (earlier version)
Differential Revision:	https://reviews.freebsd.org/D23030
Original commitRevision:528750 
Friday, 24 Jan 2020
21:08 tobik search for other commits by this committer
audio/openal-soft: Update to 1.20.1

Changes:	https://raw.githubusercontent.com/kcat/openal-soft/openal-soft-1.20.1/ChangeLog
Original commitRevision:523988 
Saturday, 30 Nov 2019
08:00 tobik search for other commits by this committer
audio/openal-soft: Limit LLD_UNSAFE to FreeBSD 12.0 again

We can unbreak the build with lld on i386 on FreeBSD > 12.0 by
passing -Wl,-z,notext to the linker.  It should not make any
difference on older releases.

PR:		242307
Tested by:	jbeich
Original commitRevision:518709 
01:42 tobik search for other commits by this committer
audio/openal-soft: Keep full LLD_UNSAFE for now

lld on i386 on 12.1 and up still does not link openal-soft.

PR:		242307
Original commitRevision:518688 
Friday, 29 Nov 2019
22:10 tobik search for other commits by this committer
audio/openal-soft: Update to 1.20.0

- Limit LLD_UNSAFE to FreeBSD 12.0.  It links fine with newer lld
  versions.

Changes:	https://raw.githubusercontent.com/kcat/openal-soft/openal-soft-1.20.0/ChangeLog
Original commitRevision:518676 
21:56 tobik search for other commits by this committer
audio/openal-soft: Pet portclippy

While here drop CONFLICTS; audio/openal is gone.
Original commitRevision:518674 
Wednesday, 20 Nov 2019
13:56 tobik search for other commits by this committer
audio/openal-soft: Drop workaround from r492771

The problem is no longer reproducible on the latest 12-STABLE snapshot
and it breaks the build on powerpc64 elfv2.

PR:		235603, 242107
Original commitRevision:518012 
Thursday, 31 Oct 2019
09:10 tobik search for other commits by this committer
Add missing USES to my ports, round 2
Original commitRevision:516141 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
Original commitRevision:507372 
Saturday, 30 Mar 2019
20:39 tobik search for other commits by this committer
audio/openal-soft: Update WWW and MASTER_SITES

It now redirects to https://openal-soft.org.
Original commitRevision:497347 
Tuesday, 26 Feb 2019
12:55 tobik search for other commits by this committer
audio/openal-soft: Use Qt 5 for configuration utility
Original commitRevision:493962 
Tuesday, 12 Feb 2019
10:39 tobik search for other commits by this committer
audio/openal-soft: Use ld.gold instead of ld.bfd

openal-soft has stopped linking on 12-STABLE with ld.bfd.  As a
workaround use ld.gold for now until we can discover why that happens
all of a sudden.

PR:		235603
Reported by:	Robert Cina <transitive@gmail.com>
Original commitRevision:492771 
Tuesday, 25 Dec 2018
20:25 tcberner search for other commits by this committer
Change cmake default behaviour to outsource.

Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
Original commitRevision:488341 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Sunday, 2 Dec 2018
15:41 rene search for other commits by this committer
Mark QT4 ports/functionality for removal on 2019-03-15

While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.

Submitted by:	tcberner
Reviewed by:	adridg, jhale, rene, tcberner
Approved by:	portmgr (implicit, flavor hook)
Differential Revision:	https://reviews.freebsd.org/D17741
Original commitRevision:486467 
Thursday, 8 Nov 2018
12:17 tobik search for other commits by this committer
audio/openal-soft: Update to 1.19.1

- Move to new WWW
- This release comes with sndio capture support, so drop the
  workaround from r472956

Changes:	https://raw.githubusercontent.com/kcat/openal-soft/openal-soft-1.19.1/ChangeLog
Original commitRevision:484447 
Tuesday, 11 Sep 2018
10:35 tobik search for other commits by this committer
audio/openal-soft: Update to 1.19.0

- Add option for the new SDL2 backend

Changes:	https://raw.githubusercontent.com/kcat/openal-soft/openal-soft-1.19.0/ChangeLog
ABI:		https://abi-laboratory.pro/tracker/timeline/openal/
Original commitRevision:479520 
Sunday, 29 Jul 2018
22:18 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.

This includes ports
 - featuring USE_GCC=yes or USE_GCC=any,
 - featuring USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and those
 - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
   c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.

PR:		222542
Original commitRevision:475857 
Thursday, 28 Jun 2018
17:39 tcberner search for other commits by this committer
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk

From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	-https://reviews.freebsd.org/D15540
Original commitRevision:473503 
Thursday, 21 Jun 2018
06:32 tobik search for other commits by this committer
audio/openal-soft: Cleanup options

- Drop bogus FLUIDSYNTH option (MIDI support was removed in 1.17.0)
- The sndio backend is missing capture support.  This can lead to crashes
  when there is no usable fallback backend available.  As a workaround
  always enable the OSS backend when the sndio backend is wanted.
- Prioritize sndio over OSS when it's enabled which should
  make it unnecessary to fiddle with config files when building
  with both SNDIO and OSS.
- Turn off dynamically loading backend libs via dlopen
- Correct lib depends
- Update pkg-descr
- Take maintainership
Original commitRevision:472956 
Friday, 1 Jun 2018
22:16 riggs search for other commits by this committer
Bump PORTREVISIONS to chase update to audio/fluidsynth 1.1.11

PR:		228265
Original commitRevision:471300 
Wednesday, 4 Oct 2017
01:11 jbeich search for other commits by this committer
audio/openal-soft: update to 1.18.2

Changes:	http://kcat.strangesoft.net/openal.html#release
ABI:		https://abi-laboratory.pro/tracker/timeline/openal/
MFH:		2017Q4
Original commitRevision:451176 
Tuesday, 19 Sep 2017
05:07 jbeich search for other commits by this committer
audio/openal-soft: update to 1.18.1

- Add the EXAMPLES option
- Add a patch to fix the Jack backend for Jack 1

Changes:	http://kcat.strangesoft.net/openal.html#release
ABI:		https://abi-laboratory.pro/tracker/timeline/openal/
PR:		222437
Submitted by:	kdrakehp@zoho.com
MFH:		2017Q3
Original commitRevision:450103 
Sunday, 10 Sep 2017
20:55 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
Original commitRevision:449591 
Wednesday, 30 Aug 2017
19:40 emaste search for other commits by this committer
audio/openal-soft: set LLD_UNSAFE

Linking with LLD currently fails due to preemption of symbols with
protected visibility in a shared object:

/usr/bin/ld: error: cannot preempt symbol: alIsExtensionPresent
>>> defined in libopenal.so.1.18.0
>>> referenced by examples/altonegen.c
>>>               CMakeFiles/altonegen.dir/examples/altonegen.c.o:(main)

/usr/bin/ld: error: cannot preempt symbol: alcGetCurrentContext
>>> defined in libopenal.so.1.18.0
>>> referenced by examples/altonegen.c
>>>               CMakeFiles/altonegen.dir/examples/altonegen.c.o:(main)

/usr/bin/ld: error: cannot preempt symbol: alcGetContextsDevice
>>> defined in libopenal.so.1.18.0
>>> referenced by examples/altonegen.c
>>>               CMakeFiles/altonegen.dir/examples/altonegen.c.o:(main)
...

(Ports that depend on audio/openal-soft may also need to be tagged with
LLD_UNSAFE.)

PR:		219089
Approved by:	kwm
Sponsored by:	The FreeBSD Foundation
Original commitRevision:448999 
Friday, 18 Aug 2017
19:34 swills search for other commits by this committer
audio/openal-soft: remove EXAMPLES option

Avoid dependency loop with ffmpeg

Reported by:	truckman
Pointyhat to:	swills
Original commitRevision:448269 
16:34 swills search for other commits by this committer
audio/openal-soft: Update to 1.18.0, Add EXAMPLES and OSS options

PR:		220931
Submitted by:	Yuri Victorovich <yuri@rawbw.com>
Original commitRevision:448257 
Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
Original commitRevision:437439 
Sunday, 5 Feb 2017
13:10 amdmi3 search for other commits by this committer
- Fix LICENSE
- Add LICENSE_FILE
Original commitRevision:433401 
Sunday, 22 Jan 2017
22:27 rene search for other commits by this committer
Reset mva@'s ports, he handed in his ports bit.
Original commitRevision:432169 
Wednesday, 7 Dec 2016
10:29 jhale search for other commits by this committer
Fix configure when JACK option is enabled

-- Found JACK: /usr/local/lib/libjack.so
CMake Error at CMakeLists.txt:988 (MESSAGE):
  Failed to enabled required JACK backend
-- Configuring incomplete, errors occurred!

PR:		214249
Reported by:	Grzegorz Junka <list1@gjunka.com>
Approved by:	maintainer timeout
Original commitRevision:428046 
Sunday, 20 Nov 2016
09:38 gerald search for other commits by this committer
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
Original commitRevision:426566 
Sunday, 23 Oct 2016
10:51 mva search for other commits by this committer
- Update to version 1.17.2
- New option JACK for Jack audio server support

PR:		213392
Submitted by:	kdrakehp@zoho.com
Original commitRevision:424510 
Friday, 26 Aug 2016
17:35 pi search for other commits by this committer
audio/openal-soft: re-apply r420906

- r420919 overwrote r420906

PR:		210353, 211664
Reported by:	matthew@reztek.cz
Original commitRevision:420937 
13:43 pi search for other commits by this committer
audio/openal-soft: Add option to enable sndio support

- This adds support for building with the sndio audio output (audio/sndio).

PR:		211664
Submitted by:	Tobias Kortkamp <t@tobik.me>
Approved by:	mva (maintainer timeout)
Original commitRevision:420919 
09:31 novel search for other commits by this committer
audio/openal-soft: fix missing QT4 dependencies

PR:		210353
Submitted by:	matthew@reztek.cz
Approved by:	maintainer timeout (2+ months)
MFH:		2016Q3
Original commitRevision:420906 
Friday, 1 Apr 2016
13:29 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412344 
Tuesday, 1 Mar 2016
16:41 danfe search for other commits by this committer
Add FLUIDSYNTH option generic description, and remove ad-hoc setting in
ports where it is applicable (alongside with other shared descriptions).
Original commitRevision:409886 
Saturday, 17 Oct 2015
16:32 danilo search for other commits by this committer
- Add a workaround for a problem caused by clang

For some reason clang is breaking the code when openal-soft is built with
optimizations. If the file alBuffer.c is built with -O1 the problem don't
happens. See https://github.com/kcat/openal-soft/issues/18
The problem seems to happen just on CURRENT due the clang version.

PR:		199488, 203818
Tested by:	ohartman@zedat.fu-berlin.de
Approved by:	mva
MFH:		2015Q4
Original commitRevision:399540 
Saturday, 30 May 2015
20:39 bapt search for other commits by this committer
Update portaudio to v19/Remove portaudio2 [1]
Chase portaudio change
Add patches from debian for games/cultivation
Add patches from upsteam for audio/rezound
Mark py-fastaudio as broken

Approved by:	maintainer
Original commitRevision:387982 
Sunday, 26 Oct 2014
13:33 mva search for other commits by this committer
- openal-soft requires a compiler, that understands parts of the C11
  standard. This should unbreak builds on 8.x

Reported by:	several people
Submitted by:	Torfinn Ingolfsen <tingox@gmail.com>
Original commitRevision:371503 
Sunday, 19 Oct 2014
07:28 mva search for other commits by this committer
- Update to version 1.16.0

This version provides
  * additional and improved effects
  * high- and band-pass EFX filters
  * improved resampling support
  * improved audio back-end support
  * a GUI configuration utility (based on QT)
  * and lots of other features: http://kcat.strangesoft.net/openal.html
Original commitRevision:371169 
Monday, 9 Jun 2014
11:21 olgeni search for other commits by this committer
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories A-C.

CR:		D196
Approved by:	portmgr (bapt)
Original commitRevision:357139 
Sunday, 1 Jun 2014
13:03 ohauer search for other commits by this committer
- USE_(BZIP2|XZ) -> USES= tar:(bzip2|xz)
Original commitRevision:356114 
Saturday, 18 Jan 2014
18:58 mva search for other commits by this committer
- Add LICENSE
Original commitRevision:340203 
Sunday, 29 Sep 2013
11:31 mva search for other commits by this committer
- Enable stage support
- Convert to new LIB_DEPENDS format
Original commitRevision:328680 
Friday, 20 Sep 2013
14:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
Original commitRevision:327706 
Sunday, 2 Jun 2013
18:07 mva search for other commits by this committer
- Fix broken patch from ports/178343, which might lead to broken OSS output

PR:		ports/178895
Submitted by:	Green Dog <fiziologus@gmail.com>
Original commitRevision:319704 
Thursday, 23 May 2013
06:05 mva search for other commits by this committer
- Fix a sound distortion issue for the OSS backend

PR:		ports/178343
Submitted by:	Yamagi Burmeister <yamagi@yamagi.org>
Original commitRevision:318843 
Friday, 22 Mar 2013
20:06 makc search for other commits by this committer
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
Original commitRevision:314960 
Wednesday, 19 Dec 2012
07:55 mva search for other commits by this committer
- Update to 1.15.1
Original commitRevision:309225 
Wednesday, 24 Oct 2012
18:08 mva search for other commits by this committer
- Fix OSS device detection
- Convert to OptionsNG
- Trim Makefile headers

PR:		ports/173019
Submitted by:	Sergei <nbspjr@gmail.com>
Feature safe:	yes
Original commitRevision:306351 
Sunday, 22 Apr 2012
07:53 mva search for other commits by this committer
- Unbreak build, if ffmpeg is installed.

PR:             167177
Submitted by:   Kalten <kalten@gmx.at>
Original commit
Saturday, 21 Apr 2012
13:22 mva search for other commits by this committer
- Update to version 1.14
Original commit
Monday, 14 Nov 2011
03:26 rakuco search for other commits by this committer
Remove CMAKE_USE_PTHREAD from the ports using it.

This setting has not had any effect since r1.13 to bsd.cmake.mk, as it
was only useful when we supported FreeBSD < 7.

Approved by:    avilla (mentor), portmgr (miwi)
Feature safe:   yes
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Sunday, 3 Apr 2011
07:33 mva search for other commits by this committer
- Update to 1.13.0
Original commit
Tuesday, 21 Sep 2010
05:39 mva search for other commits by this committer
- Fix typo.
Original commit
Monday, 20 Sep 2010
21:36 mva search for other commits by this committer
- Install configuration file and make proper use of it

PR:             ports/150744
Submitted by:   <swell.k@gmail.com>
Original commit
Thursday, 1 Apr 2010
17:00 mva search for other commits by this committer
- Update to 1.12.854.
Original commit
Thursday, 21 Jan 2010
18:57 mva search for other commits by this committer
- Update to 1.11.753.

Approved by:    miwi (mentor implicit)
Original commit
Friday, 25 Dec 2009
13:52 mva search for other commits by this committer
- Update to 1.10.622

Approved by:    miwi (mentor)
Original commit
Saturday, 3 Oct 2009
09:41 mva search for other commits by this committer
Fix build for pulseaudio and previously installed openal versions

Approved by:    miwi (mentor)
Original commit
Tuesday, 29 Sep 2009
18:15 mva search for other commits by this committer
Update to 1.9.563

Approved by:    miwi (mentor)
Feature safe:   yes
Original commit
Sunday, 5 Jul 2009
20:25 mva search for other commits by this committer
Update to 1.8.466

Approved by:    miwi (mentor)
Original commit
Tuesday, 24 Mar 2009
19:13 makc search for other commits by this committer
bump PORTREVISION after cmake update
Original commit
Wednesday, 18 Mar 2009
20:28 mva search for other commits by this committer
Update to 1.7.411.

Approved by:    miwi (mentor)
Original commit
Thursday, 19 Feb 2009
21:45 mva search for other commits by this committer
Updated my mail address to use @FreeBSD.org now.

Approved by: miwi (co-mentor), beech (mentor)
Original commit
Monday, 2 Feb 2009
09:31 beech search for other commits by this committer
OpenAL Soft is a software implementation of the OpenAL 3D audio API and an
alternative to the somewhat outdated reference implementation.
As stated on the website, OpenAL provides capabilities for playing audio in a
virtual 3d environment. Distance attenuation, doppler shift, and directional
sound emitters are among the features handled by the API. More advanced
effects, including air absorption, low-pass filters, and reverb, are
available through the EFX extension. It also facilitates streaming audio,
multi-channel buffers, and audio capture.

WWW:    http://kcat.strangesoft.net/openal.html

PR:             ports/131260
Submitted by:   Marcus von Appen <mva at sysfault.org>
Original commit

Number of commits found: 85