The port has USES=makeinfo which helps to build the info files but the
distfile ships with pre built info files in ${WRKSRC}/info hence
makeinfo is not a hard requirement for the building of emacs itself. And
the build time error can easily be avoided with BINARY_ALIAS to
makeinfo.
As we are utilizing the default info files instead of the generated info
hence bumping PORTREVISION.
PR: 274570
Approved by: emacs (jrm)
Building editors/libreoffice with lld 17 results in the following link
errors:
ld: error: version script assignment of 'PRIVATE_1.4' to symbol '_ZN3sal13backtrace_getEm' failed: symbol not defined
ld: error: version script assignment of 'GLIBCXX_3.4' to symbol '_ZNSs4_Rep20_S_empty_rep_storageE' failed: symbol not defined
Add -Wl,--undefined-version to LDFLAGS to suppress these error, as the
previous fix did not work in all cases.
PR: 274697
Approved by: office (blanket)
Fixes: 6338934b7c
MFH: 2024Q4
This reverts commit 6338934b7c:
Building editors/libreoffice with lld 17 results in the following link
errors:
ld: error: version script assignment of 'PRIVATE_1.4' to symbol '_ZN3sal13backtrace_getEm' failed: symbol not defined
ld: error: version script assignment of 'GLIBCXX_3.4' to symbol '_ZNSs4_Rep20_S_empty_rep_storageE' failed: symbol not defined
Upstream fixed this only for Linux with:
baddc742c3
Add the same block to the more generic unxgcc.mk makefile, so it gets
picked up for FreeBSD too.
PR: 274697
Author: Dimitry Andric <dim@FreeBSD.org>
Lazarus is the class libraries for Free Pascal that emulate Delphi.
Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K
and more. Free Pascal is designed to be able to understand and compile
Delphi syntax, which is of course OOP.
Lazarus is the part of the missing puzzle that will allow you to
develop Delphi-like programs in all of the above platforms. Unlike Java
which strives to be a write once run anywhere, Lazarus and Free Pascal
strives for write once compile anywhere. (devel version)
- Update pkg-message.in file
- Add -p to ${INSTALL_DATA} to preserves the access and modification times. It
avoids issues with checksum changes and it improves compile time when lazarus
ide is rebuild by users.
- Update CONFLICTS
- editors/lazarus-qt5: Bump PORTREVISION. qt5pas was updated
- editors/lazarus-*: Add -p to ${INSTALL_DATA} to Add -p to ${INSTALL_DATA} to
preserves the access and modification times. It avoid issues with checksum
changes and it improves compile time when lazarus ide is rebuild by users.
- Bump PORTREVISION
Changes in this release:
* New command set-tab-width to change the tabulator width on a per-buffer
basis.
* Let the space-to-tabstop command move to the right position even if
the line contains tabs, control characters, or non-ASCII bytes.
* Fall back to /bin/sh if $SHELL is undefined.
* Fix parsing of tag files with duplicate entries. Instead of erroring
out, ignore duplicates. Fixes using /var/db/libc.tags again.
* Change the visit-tags-table command to immediately load the tag
file, and drop the lazy mechanics.
* Do not leak memory in pop-tag-mark if it fails to switch buffers.
* Fix a read buffer overrun caused by -u arguments longer than 1023 bytes.
* Fix a write buffer overrun on the stack caused by blink-and-insert
matching a very long line that is not currently visible in the
window.
* Skip checking permissions of conffile with access(2).
* Resurrect no-tab-mode and add it to the list of modes that can be
set with set-default-mode.
From: https://www.openbsd.org/74.html
PR: 274611
Building editors/libreoffice with lld 17 results in the following link
errors:
ld: error: version script assignment of 'PRIVATE_1.4' to symbol '_ZN3sal13backtrace_getEm' failed: symbol not defined
ld: error: version script assignment of 'GLIBCXX_3.4' to symbol '_ZNSs4_Rep20_S_empty_rep_storageE' failed: symbol not defined
Upstream fixed this only for Linux with:
baddc742c3
Add the same block to the more generic unxgcc.mk makefile, so it gets
picked up for FreeBSD too.
PR: 274697
Author: Dimitry Andric <dim@FreeBSD.org>
KDE Gear 23.08.2
Thursday, 12 October 2023
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.
Today they all get new bugfix source releases with updated translations,
including:
* kdeconnect: Avoid adding duplicate devices to Dolphin's side panel
(Commit, fixes bug #461872)
* merkuro: Fix shifting of date by one day/month (Commit, fixes bug
#473866)
* kdenlive: Fix multiple audio streams broken by MLT's new astream
property (Commit, fixes bug #474895)
Full changelog: https://kde.org/announcements/changelogs/gear/23.08.2/
Rather than conflicting with xxd (which presents a dependency problem
for users who don't want to install vim), add an option to depend on
xxd. So, the vim port will no longer install xxd, but the option is
on by default so most users won't see a difference (other than the new
dependency).
PR: 274104
Reported by: corvink
- Update xfce.mk to avid forcing too many dependencies on consumers
- Change dependency on garcon to reference libgarcon-1.so (main
library)
- Explicitly add USE_XFCE components to the ports actually needing
them.
- Cleanup dependencies, adding/removing missing/extra dependencies
- Change the referenced library in some LIB_DEPENDS to the actually
linked one (avoids false positives in poudriere Q/A tests)
- Bump PORTREVISION on all touched ports, even indirectly due to
the effect of removing forced dependencies on certain components
- Remove USES=fuse from gigolo. I could not find any kind f reference
to fuse in the code.
- xfce4-bsdcpufreq-plugin: Also remove empty comment at the top of
the Makefile
https://github.com/lichray/nvi2/releases/tag/v2.2.1
Changes since V2.2.0:
- Display control chars in altnotation.
- Intuitively jump between troff paragraphs.
- Keep correct count for unprintable character sequences in
opts_print().
- Do a full reformat when ^L/^R redrawing.
- Fix printing of line number when the 's' command is used with
the 'c' flag and the number option is set.
- Fix wide buffer growth when expanding filenames.
- Fix segmentation fault when window size changes.
- Fix buffer overflow in ex_comm_search.
- Fix segmentation fault in number increment.
- Fix for terminal state corruption on q from ex-mode.
- Fix core dump when tags file pattern has a trailing '\'.
Reported by: Zhihao Yuan