When built against GTK2, label names are improperly ellipsized, making the user
interface somewhat useless. Remove the OPTIONS to choose between GTK2 and GTK3
and always build the GTK3 version which does not have this problem.
Bump PORTREVISION.
PR: 228873
Reported by: samy.mahmoudi@gmail.com
most cases, the failure mode is the same. Also, mark them broken on
mips when necessary.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
As usual, it is recommended to rebuild or reinstall all the
dependent ports and the lang/ghc port itself in one of the following
ways:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
In case of pkg(8), it is probably safer to remove all the GHC-dependent
packages along with GHC and reinstall everything from scratch. For
example:
# pkg query "%ro" ghc > ghc-pkgs.txt
# pkg delete -y lang/ghc
In ghc-pkgs.txt, check and remove all the packages that have been moved
on the update, then use this command:
# pkg install -y `cat ghc-pkgs.txt`
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D16038
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
- Use the upstream release tarballs with a pregenerated configure, etc.
- Drop the seemingly unnecessary post-configure which was added in
r308039 but with no reason given for it in the associated PR or
log
- Update --help output to mention the sndio drivers too
- Patch audio driver list in the man pages too
- Follow WWW redirect
- Take maintainership
Changes: https://qsynth.sourceforge.io/qsynth-downloads.html
checking for successful build of ffmpeg.c...
cc1: error: unrecognized command line option "-std=gnu11"
no
configure failed.
track_info.o: In function `track_info_new':
track_info.c:(.text+0x2c): undefined reference to `__atomic_fetch_add_8'
Allow build on powerpc64 again as the error in BROKEN looks to be
same as the first error on powerc.
Previously clang 6 narrowing errors were silenced by adding
-Wno-narrowing to CXXFLAGS. However, the older gcc on powerpc64
(and probably some other Tier-2 platforms) does not support
this flag, so un-break the build by removing this flag and
fixing narrowing issues on the code level.
- 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
- While here also add license information
checking for working sidplay2 library and headers... /usr/local/lib, /usr/local/include
configure: error:
sidplay2 build test failed with found library and header files.
Please check your installation!
In file included from conftest.cc:27:
...
/usr/include/stdlib.h:97:17: error: declaration of 'exit' has a different language linkage
_Noreturn void exit(int);
^
conftest.cc:11:6: note: previous declaration is here
void exit (int);
http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/errors/sidplay2-2.0.9_4.log
This will primarily help powerpc64.
For archs where clang is the default compiler, these changes will have no
effect, as the base compiler already has these capabilities (primarily, but
not exclusively, c++-11).
Tested for no-harm on amd64.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)