I have "CPUTYPE?=znver1" in my /etc/make.conf and it broke build because
this port uses GCC 4.8.5 and it does not support recent processors.
Reviewed by: tijl
Given an absolute /path Linux programs first try to access
/compat/linux/path before trying /path. That means mkdir -p ${STAGEDIR}
will always create /compat/linux${STAGEDIR} when run as root and echo >
/dev/null will create /compat/linux/dev/null as a regular file. Fix this
by running configure with FreeBSD /bin/sh and build/install using FreeBSD
gmake. PATH is set to /compat/linux/usr/bin and MKDIR_P to /bin/mkdir -p
so all commands except mkdir are still Linux programs.
- Add USES=libtool:build because libtoolize is needed. [2]
- Add USES=pkgconfig.
- Remove -DFREEBSD_OSS_BUFSZ_P2 because it breaks some games. [3]
- Replace -nostdinc -isystem ... with --sysroot=${LINUXBASE}. [3]
- Include bsd.port.options.mk to get ARCH. [3]
PR: 240043
Reported by: VVD <vvd@unislabs.com> [1]
Reported by: Giacomo Olgeni <olgeni@olgeni.com> [2]
Reported by: Alex S <iwtcex@gmail.com> [3]
.src.rpm with patches derived from the audio/alsa-plugins port. This
should improve sound output from Linux programs.
CFLAGS contains -nostdinc -isystem ... because gcc searches
/usr/local/include before /usr/include otherwise and picks up headers from
/usr/local/include/alsa instead of /compat/linux/usr/include/alsa.
PR: 240043
September 05, 2019.
Today KDE released the first stability update for KDE Applications 19.08. This
release contains only bugfixes and translation updates, providing a safe and
pleasant update for everyone.
More than twenty recorded bugfixes include improvements to Kontact, Dolphin,
Kdenlive, Konsole, Step, among others.
Improvements include:
* Several regressions in Konsole's tab handling have been fixed
* Dolphin again starts correctly when in split-view mode
* Deleting a soft body in the Step physics simulator no longer causes a crash
You can find the full list of changes here:
https://kde.org/announcements/fulllog_applications-aether.php?version=19.08.1
Tuesday, 3 September 2019. Today KDE releases a Bugfix update to KDE Plasma 5,
versioned 5.16.5. Plasma 5.16 was released in June with many feature
refinements and new modules to complete the desktop experience.
This release adds a month's worth of new translations and fixes from KDE's
contributors. The bugfixes are typically small but important and include:
* [weather] [envcan] Add additional current condition icon mappings.
* [Notifications] Group only same origin and show it in heading.
* Volume Control: Fix speaker test not showing sinks/buttons.
Full changelog:
https://kde.org/announcements/plasma-5.16.4-5.16.5-changelog.php
FreeBSD doesn't support getauxval(), it has elf_aux_info() instead. Use this to fix build on powerpc64.
Disable VSX to not use VSX-related functions.
PR: 239870
Approved by: linimon (mentor), naddy (maintainer)
Differential Revision: https://reviews.freebsd.org/D21284
FOSS Mixer is a graphical mixer application for FreeBSD to control OSS
audio backend. Mixer can be use to control audio levels, set recording
source, and it includes white noise generator for testing the audio
output. It is pretty much what mixer(1) does. FOSS Mixer does not need
third party user interface library, it runs on plain X11/OpenGL.
PR: 239929
Submitted by: manwe@suomi24.fi