Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.9.22_2 06 Aug 2024 17:44:07 |
Vladimir Druzenko (vvd) |
audio/jack: remove SOSSO option accidentally added to DEFAULT
PR: 280611
Approved by: Florian Walpen <dev@submerge.ch> (maintainer)
Fixes: 183213847e99 (Option for new OSS driver backend) |
1.9.22_2 06 Aug 2024 14:53:06 |
Vladimir Druzenko (vvd) Author: Florian Walpen |
audio/jack: Option for new OSS driver backend
Add a non-default option to build the new OSS driver backend coming in
the next JACK release. The backend is a complete rewrite based on the
sosso library, with improved stability and low latency capabilities. Let
users preview and test the new backend before it becomes default.
Builds with default options are not affected, thus no PORTREVISION bump.
While here, cleanup two checks in the RC service script, one of them
deprecated, the other was ineffective by mistake.
PR: 280611 |
1.9.22_2 06 Mar 2024 19:19:08 |
Gleb Popov (arrowd) |
audio/jack: Mark TESTING_UNSAFE |
1.9.22_2 11 Feb 2024 17:03:42 |
Yuri Victorovich (yuri) Author: Florian Walpen |
audio/jack: Remove obsolete realtime hack for RC service, with checks
PR: 276607 |
1.9.22_1 27 Jun 2023 19:34:34 |
Rene Ladan (rene) |
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568> |
1.9.22_1 25 Apr 2023 15:17:15 |
Christian Weisgerber (naddy) |
audio/opus: bump consumers after update to 1.4 |
1.9.22 10 Feb 2023 10:30:48 |
Fernando Apesteguía (fernape) Author: Florian Walpen |
audio/jack: Update to 1.9.22 release.
ChangeLog: https://github.com/jackaudio/jack2/releases/tag/v1.9.22
* The waf autooption --example-tools has been removed.
* The example clients and tools are no longer part of the jack2 project.
* Drop dependencies that were only used for example clients and tools
(readline, sndfile and zita libs)
* Fix build with python3.11+
* Fix compatibility with macOS 12+
* Fix ringbuffer thread safety on ARM
PR: 269413
Reported by: dev@submerge.ch (maintainer) |
1.9.21 11 Nov 2022 15:49:32 |
Dima Panov (fluffy) |
audio/jack: unbreak build with Python 3.11 (+)
'U' is default and deprecated since python-3.3, becomes a failure in 3.11.
See also: https://github.com/jackaudio/jack2/issues/898
Obtained from: Gentoo
Approved by: portmgr blanket (trivial fix build) |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.9.21 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
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.
(Only the first 15 lines of the commit message are shown above ) |
1.9.21 17 Apr 2022 20:04:51 |
Yuri Victorovich (yuri) Author: Florian Walpen |
audio/jack: Update 1.9.20 -> 1.9.21
PR: 263344 |
1.9.20_1 10 Feb 2022 00:06:24 |
Piotr Kubaj (pkubaj) |
audio/jack: switch back to clang on powerpc*
Builds fine now. |
1.9.20 09 Feb 2022 16:19:35 |
Mikael Urankar (mikael) |
audio/jack: Fix alignas() on non-packed architectures
Unbreak the build with Clang on architectures where JACK uses non-packed
data structures, like arm64 or powerpc. The alignment errors are exposed
there because:
* The non-packed data structures require 8 byte alignment.
* alignas() is not allowed to weaken alignment requirements to 4 bytes.
* Clang enforces this according to standard, GCC ignores it.
Use an additional alignas() specifier to let the compiler choose between
minimum alignment (packed) and "natural" alignment (non-packed). This is
both standard c++11 and compatible with older GCC, which does not
propagate alignment requirements of packed substructures properly.
PR: 261508
Submitted by: Florian Walpen <dev@submerge.ch> |
1.9.20 26 Jan 2022 00:05:55 |
Piotr Kubaj (pkubaj) |
audio/jack: fix build on powerpc64le
Same issue as on powerpc and powerpc64. |
1.9.20 26 Jan 2022 00:05:53 |
Piotr Kubaj (pkubaj) |
audio/jack: fix build on powerpc and powerpc64
Use GCC:
09:13:58 runner ['c++', '-O2', '-pipe', '-fPIC', '-fstack-protector-strong',
'-fno-strict-aliasing', '-Wall', '-Wno-invalid-offsetof', '-std=gnu++11',
'-fPIC', '-Ifreebsd', '-I../freebsd', '-Iposix', '-I../posix', '-Icommon',
'-I../common', '-Icommon/jack', '-I../common/jack', '-I.', '-I..',
'-I../compat/alloca', '-I/usr/local/include/opus', '-I/usr/local/include',
'-I/usr/local/include/dbus-1.0', '-I/usr/local/lib/dbus-1.0/include',
'-DEXECINFO=1', '-DHAVE_LIBSYSINFO=1', '-DHAVE_DOXYGEN=0', '-DHAVE_ALSA=0',
'-DHAVE_FIREWIRE=0', '-DHAVE_IIO=0', '-DHAVE_PORTAUDIO=0', '-DHAVE_WINMME=0',
'-DHAVE_CELT=0', '-DHAVE_EXAMPLE_TOOLS=0', '-DHAVE_OPUS_OPUS_CUSTOM_H=1',
'-DHAVE_OPUS_PKG=1', '-DHAVE_OPUS=1', '-DHAVE_SAMPLERATE=1', '-DHAVE_SNDFILE=0',
'-DHAVE_READLINE=0', '-DHAVE_SYSTEMD=0', '-DHAVE_DB_H=1', '-DHAVE_DB=0',
'-DHAVE_ZALSA=0', '-DHAVE_PPOLL=1', '-DHAVE_EXECINFO_H=1',
'-DJACK_VERSION="[]"', '-DHAVE_DBUS_1=1', '-DHAVE_EXPAT=1',
'-DUSE_LIBDBUS_AUTOLAUNCH=1', '-DCLIENT_NUM=256', '-DPORT_NUM_FOR_CLIENT=2048',
'-DADDON_DIR="/usr/local/lib/jack"', '-DJACK_LOCATION="/usr/local/bin"',
'-DUSE_POSIX_SHM=1', '-DJACKMP=1', '-DJACK_DBUS=1', '-DHAVE_CONFIG_H',
'-DSERVER_SIDE', '../common/JackDebugClient.cpp', '-c',
'-o/wrkdirs/usr/ports/audio/jack/work/jack2-1.9.20/build/common/JackDebugClient.cpp.2.o',
'-I/usr/local/include']
In file included from ../common/JackDebugClient.cpp:21:
../common/JackEngineControl.h:67:5: error: requested alignment is less than
minimum alignment of 8 for type 'Jack::JackTransportEngine'
alignas(UInt32) JackTransportEngine fTransport;
^
../common/JackEngineControl.h:89:5: error: requested alignment is less than
minimum alignment of 8 for type 'Jack::JackFrameTimer'
alignas(UInt32) JackFrameTimer fFrameTimer;
^
2 errors generated. |
1.9.20 19 Jan 2022 10:44:09 |
Hans Petter Selasky (hselasky) |
audio/jack: Update to 1.9.20 release.
The FreeBSD specific changes have been upstreamed, we can fetch the original
sources again. Development of the client examples and tools has been split
from the JACK server, move them to the new port jack-example-tools.
This also includes a fix for missing library symbols, see bug #257696.
Take maintainership of audio/jack and audio/jack-example-tools .
PR: 257696
PR: 261256
Submitted by: Florian Walpen <dev@submerge.ch>
Approved by: pi (implicit) |
1.9.16_1 09 Oct 2021 07:29:51 |
Thomas Zander (riggs) |
audio/jack: Remove celt support (deprecated upstream).
PR: 258658
Reported by: diizzy |
1.9.16 02 Aug 2021 16:03:15 |
Yuri Victorovich (yuri) |
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) |
0.125.0_12 06 Apr 2021 14:31:13 |
Mathieu Arnold (mat) |
all: Remove all other $FreeBSD keywords. |
0.125.0_12 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.125.0_12 08 Jan 2021 07:47:03 |
fluffy |
devel/doxygen: Update to 1.9.0
- regen patches by 'make makepatch'
- adjust consumers which affected by new doxygen styles
- take maintainersip
Changelog: https://www.doxygen.nl/manual/changelog.html#log_1_9_0
PR: 242347
Submitted by: fluffy
Reported by: Naram Qashat (ex-maintainer)
Exp-run by: antoine |
0.125.0_10 12 Jul 2020 09:30:29 |
tobik |
audio/sndio: Update to 1.7.0 |
0.125.0_9 18 Nov 2019 09:39:56 |
amdmi3 |
- Update WWW
Approved by: portmgr blanket |
0.125.0_9 26 Jul 2019 20:46:57 |
gerald |
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 |
0.125.0_8 04 Jun 2019 06:17:59 |
bapt |
Only print the message during the first installation,
not at each upgrades |
0.125.0_7 09 Apr 2019 14:04:50 |
sunpoet |
Update devel/readline to 8.0
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://tiswww.case.edu/php/chet/readline/CHANGES
PR: 236156
Exp-run by: antoine |
0.125.0_6 03 Jan 2019 20:24:31 |
riggs |
Fix SIGBUS with 24 bit content over OSS output
PR: 234574
Submitted by: dev@submerge.ch
MFH: 2019Q1 |
0.125.0_5 12 Dec 2018 01:35:36 |
gerald |
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 |
0.125.0_4 13 Oct 2018 15:53:57 |
riggs |
Fix build on powerpc64
PR: 231834
Submitted by: pkubaj@anongoth.pl
MFH: 2018Q4 (build fix blanket) |
0.125.0_4 01 Jul 2018 09:17:46 |
linimon |
Mark these ports broken on mips64 and/or mips.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
0.125.0_4 10 Jun 2018 17:11:05 |
riggs |
Fix startup script for FreeBSD 10: -o option is unknown
PR: 228266
Submitted by: takefu@airport.fm
MFH: 2018Q2 |
0.125.0_3 03 Jun 2018 11:08:25 |
linimon |
Mark as broken on powerpc64.
Approved by: portmgr (tier-2 blanket) |
0.125.0_3 06 Oct 2017 21:04:01 |
jbeich |
audio/jack: libuuid is completely unused after r440260
libuuid was used for a some time between 0.121.3 and 0.124 releases
but didn't propagate into any except for stray <uuid/uuid.h> include.
PR: 221314
Submitted by: tobik
Reviewed by: hselasky |
0.125.0_2 12 Aug 2017 08:26:24 |
riggs |
Enable COOKEDMODE for more versatile soundcard support; use GitHub
Detailed log:
* Add COOKEDMODE option that turns on SNDCTL_DSP_COOKEDMODE.
Without the cooked mode Jack's OSS driver currently fails for some
soundcards (it chooses wrong sample rate). It's better to have
COOKEDMODE=on by default since it often appears broken otherwise.
Professionals probably want COOKEDMODE=off, after they make sure their
soundcard works with jack.
* Switch to github for fetching the sources.
* Include the merged upstream pull request #60 to enable the realtime
mode (-R).
* Add USES=autoreconf (github source doesn't include a configure script)
* Install more manpages.
PR: 220785
Submitted by: yuri@rawbw.com
MFH: 2017Q3 |
0.125.0_1 27 Jun 2017 13:46:53 |
sunpoet |
Update devel/readline to 7.0 patch 3
- Bump PORTREVISION for shlib change
Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES
https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html
https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html
Differential Revision: https://reviews.freebsd.org/D11172
PR: 219947
Exp-run by: antoine |
0.125.0 06 May 2017 12:58:55 |
riggs |
Update to upstream version 0.125.0, add SNDIO option
PR: 218338
Submitted by: tobik |
0.124.1_6 21 Jan 2017 15:51:08 |
riggs |
Added rc.d script to start jackd
PR: 215889
Submitted by: yuri@rawbw.com |
0.124.1_5 21 Oct 2016 12:51:41 |
mat |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight |
0.124.1_5 08 Aug 2016 13:46:50 |
mat |
USE_BDB cleanup.
- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx -> USES=bdb:xx.
Other modernisations when I see them.
PR: 209183
Sponsored by: Absolight |
0.124.1_5 26 Jul 2016 16:51:16 |
mat |
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.
With hat: portmgr
Sponsored by: Absolight |
0.124.1_5 01 Apr 2016 13:29:17 |
mat |
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat: portmgr
Sponsored by: Absolight |
0.124.1_5 09 Feb 2016 09:59:05 |
marino |
audio/jack: properly specify readline dep (detected by Synth)
No portrevision bump necessary as this change does not alter the
package contents. It just fixes the deps specification. |
0.124.1_5 19 Aug 2015 13:30:00 |
mat |
Convert ports to use the options helpers in categories [abc]*, and minor fixes.
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3412? |
0.124.1_5 17 Aug 2015 14:20:41 |
mat |
Remove UNIQUENAME and LATEST_LINK.
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.
Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.
Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)
Reviewed by: antoine, bapt
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3336 |
0.124.1_5 03 Aug 2015 06:53:03 |
kwm |
Drop :keepla from the libtool USES.
PR: 202048
Submitted by: Ting-Wei Lan <lantw44@gmail.com> |
0.124.1_4 14 Jun 2015 15:05:10 |
riggs |
Fix support for 24-bit and 32-bit resolution
While on it:
- Pet portlint
PR: 199558
Submitted by: hselasky@FreeBSD.org |
0.124.1_3 30 May 2015 14:13:05 |
bapt |
Remove dependency on portaudio
This drops a circular dependency between portaudio and jack. Given jack supports
OSS there is no real point in using portaudio as a backend |
0.124.1_2 25 Jan 2015 00:46:12 |
pawel |
Fix detection of libportaudio libraries
PR: 196427
Submitted by: myself
Approved by: hselasky, stephen, marcus, maintainer timeout from others |
0.124.1_2 16 Dec 2014 08:58:41 |
kwm |
Allow jack to be upgraded when already installed. [1]
Move doxygen depend and docs out of DOCS option. [2]
PR: 195533 [1], 195573 [2]
Submitted by: Mikhail T. <mi@ALDAN.algebra.com> [1], amdmi3@ [2] |
0.124.1_2 08 Dec 2014 16:48:41 |
tijl |
Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it. Bump PORTREVISION on their dependent
ports except the ones that depend on these:
audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt
In these cases the same trick as in the recent gettext update is used. (Only the first 15 lines of the commit message are shown above ) |
0.124.1_1 28 Nov 2014 19:35:49 |
nox |
- Switch USE_BDB from 48 to 48+ .
- Bump PORTREVISION.
PR: 195001
Submitted by: turutani@scphys.kyoto-u.ac.jp |
0.124.1 27 Oct 2014 19:31:53 |
nox |
- Update to 0.124.1 .
- Add patch to fix handling of signals during read/write operations.
PR: 194545
Submitted by: hselasky |
0.121.3_5 22 Sep 2014 09:50:54 |
bapt |
Cleanup plist |
0.121.3_5 09 Aug 2014 19:39:09 |
antoine |
Update devel/doxygen to 1.8.7
Update dependent ports to build with it
Most of work by: pi@
Exp-run: self
PR: ports/190943 |
0.121.3_4 11 Jun 2014 14:50:00 |
tijl |
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above ) |
0.121.3_4 11 Jun 2014 09:13:05 |
amdmi3 |
- Add missing USES=libtool
Approved by: portmgr blanket |
0.121.3_3 31 Oct 2013 15:51:08 |
wg |
audio/jack: fix readline depend and allow staging
- Fix readline depend [1] (based on)
- Allow staging
- Use options helpers
PR: ports/170517 [1]
Submitted by: A.J. Kehoe IV <g5ypsazo nanoman.ca> [1] |
0.121.3_2 20 Sep 2013 14:36:37 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio) |
0.121.3_2 30 Aug 2013 02:04:53 |
bapt |
Add an explicit dependency on pkgconf |
0.121.3_2 28 Mar 2013 12:19:45 |
danfe |
- Trim Makefile header per new guidelines
- Tighten COMMENT text
- Drop shlib ABI versions from LIB_DEPENDS
- Rename DOCS option to DOXYGEN to reflect its evil nature, and disable
it by default (of course)
- Clean up Makefile while here, reformat port description |
0.121.3_2 17 Mar 2013 13:45:27 |
danfe |
In categories starting with 'a', remove empty lines from pkg-plist (except
for `archivers/rpm5' where it looks like they're being used deliberately). |
0.121.3_2 09 Sep 2012 17:39:58 |
beat |
- Fix pkg-plist
Reported by: pointyhat
Approved by: multimedia (bapt) |
0.121.3_2 30 May 2012 11:27:09 |
bapt |
Convert to new options framework |
0.121.3_2 24 May 2012 19:35:56 |
nox |
- Fix alsa driver.
- Bump PORTREVISION.
PR: ports/167971
Submitted by: amdmi3 |
0.121.3_1 09 Dec 2011 10:50:58 |
sylvio |
- Fix pkg-plist incorrect when options are not default
- BUMP PORTREVISION
PR: ports/163054
Submitted by: "Edward.Sanford.Sutton, III" <mirror176@cox.net>
Feature safe: yes |
0.121.3 01 Oct 2011 18:36:16 |
bapt |
upgrade to 0.121.3 |
0.121.2 23 Sep 2011 22:26:39 |
amdmi3 |
- 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 |
0.121.2 18 Sep 2011 21:13:30 |
nox |
- Update to 0.121.2 .
- Cleanup flags handling and make docs building an OPTION. [1]
- Update WWW.
Submitted by: "b. f." <bf1783@googlemail.com> on -multimedia@ [1]
Approved by: multimedia (kwm, via irc) |
0.118.0_4 11 Aug 2011 19:20:17 |
kwm |
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.
PR: ports/159624
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> |
0.118.0_4 12 Apr 2011 10:36:16 |
bapt |
- chase celt library bump |
0.118.0_3 16 Dec 2010 17:34:13 |
makc |
Add optional support for ALSA, off by default
Remove md5 sum while here
PR: ports/153187
Approved by: kwm (with multimedia hat) |
0.118.0_2 06 Dec 2010 03:49:34 |
nork |
Fix pkg-plist, and bump PORTREVISION. |
0.118.0_1 05 Dec 2010 15:19:54 |
kwm |
Correct alsa-lib depend. s/libasound.2/asound.2/ |
0.118.0_1 05 Dec 2010 14:56:54 |
nork |
Add implict dependency on alsa-lib, and bump PORTREVISION. |
0.118.0 09 May 2010 00:02:05 |
sylvio |
- Fixed location of include endian.h to file drivers/alsa/memops.c
PR: ports/146407
Submitted by: Richard Kolkovich <richard@sigil.org> |
0.118.0 16 Apr 2010 13:18:50 |
wxs |
- Update to 0.118.0
PR: ports/145487
Submitted by: Joseph S. Atkinson <jsa@wickedmachine.net>
Approved by: multimedia@ (maintainer, via sylvio@) |
0.116.2_4 28 Mar 2010 06:47:48 |
dinoex |
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi |
0.116.2_3 13 Nov 2009 09:39:34 |
trasz |
Fix build after audio/celt upgrade. PORTREVISION bumped, as the upgrade
also breaks the ABI.
Approved by: portmgr (pav) |
0.116.2_2 12 May 2009 11:28:17 |
itetcu |
Fix LIB_DEPENDS on devel/readline: its sh lib version was bumped recently from
5 to 6.
Forgotten by: araujo@
Reported by: QAT |
0.116.2_1 11 May 2009 19:08:02 |
trasz |
Fix plist. The source tarball is strange - it comes with HTML documentation,
but it refuses to install it if there is no doxygen installed. If there is
Doxygen installed, it regenerates the docs.
While here, remove that weird DOCS handling and make it respect NOPORTDOCS.
Tested by: itetcu@ |
0.116.2 11 May 2009 15:29:18 |
trasz |
Unbreak. Files with names without '-source' contain reference, files with
'-source' in the name contain prettyprinted C includes. |
0.116.2 11 May 2009 11:12:00 |
itetcu |
Mark broken, the port installs reference/html/*source.html both as
_source.html and -source.html; I doubt they both should be installed so I'll
let the maintainer fix this.
Submitted by: QAT |
0.116.2 30 Mar 2009 18:21:21 |
trasz |
Update to 0.116.2.
Approved by: maintainer timeout |
0.109.2_1 05 Jan 2009 17:27:29 |
pav |
- Remove conditional checks relevant only on FreeBSD 5.x and older |
0.109.2_1 31 Oct 2008 16:36:26 |
gahr |
- Fix PLIST
Notified by: erwin, makc |
0.109.2 07 Oct 2008 23:46:21 |
gahr |
- Update to 0.109.2 |
0.103.0_1 26 Mar 2008 15:15:34 |
naddy |
remove unused audio/flac dependency |
0.103.0 20 Mar 2008 09:19:39 |
pav |
- Remove USE_GETOPT_LONG which is a no-op since March 2007 |
0.103.0 23 Jul 2007 09:36:52 |
rafan |
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them. This is determined by running ``configure --help'' in
do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
subdirectory detection.
PR: ports/111470
Approved by: portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by: pointyhat exp run |
0.103.0 16 Apr 2007 19:29:59 |
ahze |
- fix DOCSDIR [1]
- Disable mlock workaround [2]
PR: ports/111157 [1]
ports/111235 [2]
Submitted by: trasz <trasz@pin.if.uz.zgora.pl> [1] [2]
Reported by: mezz |
0.103.0 16 Apr 2007 17:39:04 |
ahze |
Update to 0.103.0 |
0.102.28.20061216_1 16 Apr 2007 03:34:03 |
edwin |
[patch] audio/alac - cleanup non-supported FreeBSD versions
[patch] audio/grip - cleanup non-supported FreeBSD versions
[patch] audio/jack - cleanup non-supported FreeBSD versions
[patch] audio/libcddb - cleanup non-supported FreeBSD versions
PR: ports/111646, ports/111660, ports/111662, ports/111668
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Appproved by: Michael Johnson <ahze@> |
0.102.28.20061216_1 23 Jan 2007 20:23:18 |
mezz |
Fix the plist with WITH_DOCS. Bump the PORTREVISION.
Submitted by: trasz <trasz@pin.if.uz.zgora.pl> |
0.102.28.20061216 23 Jan 2007 19:58:43 |
mezz |
Update to 0.102.28.20061216, a SVN version. A new port, ghostess, needs this
SVN version.
PR: ports/108114
Submitted by: trasz <trasz@pin.if.uz.zgora.pl> |
0.102.20_1 21 Dec 2006 13:23:33 |
lofi |
o/` One more time, we're gonna fix four-ehehex, oh yeah, all right o/`
PR: ports/106982
Submitted by: KATO Tsuguru <tkato432@yahoo.com> |
0.102.20_1 19 Dec 2006 21:56:25 |
lofi |
Revert last commit |
0.102.20_1 19 Dec 2006 21:19:54 |
lofi |
Update to KDE 3.5.5 / KOffice 1.6.1
Approved by: portmgr |
0.102.20_1 10 Dec 2006 22:39:21 |
mezz |
Fix the build if there is no -O in the CFLAGS. To fix it by makes
VIDEO_SYNC_PERIOD constant.
PR: ports/106571
Reported by: Gerard Seibert <gerard@seibercom.net>
Reviewed by: marcus (in IRC, FreeNode/#freebsd-gnome) |
0.102.20_1 07 Dec 2006 19:42:00 |
mezz |
- Fix the jackd getting into infinite loop on client disconnect. [1] [2]
- Fix a Linuxish, md5sum -> md5 -q (thanks flz) that will put a correct info
in one of header (jack_md5.h).
- Remove 'Author' from pkg-descr.
- Bump the PORTREVISION.
PR: ports/99323 [1] and ports/106428 [2]
Reported by: markzero <markzero@corolla.ath.cx> [1]
Submitted by: trasz <trasz@pin.if.uz.zgora.pl> [2] |
0.102.20 06 Dec 2006 19:10:16 |
miwi |
- Update to 0.102.20
PR: ports/106410
Submitted by: trasz
Approved by: Multimedia Team (ahze on irc) |