quietly stopped working over the years. It would not come up on 64-bit
at all, and, even where it worked, the copy/pasting was broken due to,
apparently, some unwarranted assumptions about X11, that were no longer
true with modern Xorg.
This change makes use of a major patch, that provides for reasonably
warning-free compile -- which, by itself, fixes the crashes. Also
included in the patch are fixes for copy/pasting as well for parallel
building. (Awareness raised upstream.)
Because BR_Parser.y is among the patched files, bison is now needed at
build-time (found by KATO Tsuguru).
Bump PORTREVISION and take maintainership for the time being.
Reviewed by: KATO Tsuguru
Sponsored by: Fatherly Love
once it builds again on 8 and 9:
QEMU is a FAST! processor emulator using dynamic translation to achieve
good emulation speed.
QEMU has two operating modes:
* Full system emulation. In this mode, QEMU emulates a full system
(for example a PC), including a processor and various peripherials.
It can be used to launch different Operating Systems without rebooting
the PC or to debug system code.
* User mode emulation. In this mode, QEMU can launch
Linux processes compiled for one CPU on another CPU. It can be used to
launch the Wine Windows API emulator or to ease cross-compilation and
cross-debugging.
As QEMU requires no host kernel patches to run, it is very safe and easy to use.
http://wiki.qemu.org/Main_Page
This is building sbruno's bsd-user github branch:
WWW: https://github.com/seanbruno/qemu-bsd-user/commits/bsd-user
Disable SIMD option, the --with-gcc-arch only takes recent cpus into account.
And doesn't propperly check the host cpu for the flags. [1]
PR: 196188 [1]
Submitted by: mi@ALDAN.algebra.com
Update totem to 3.14 now that we have gstreamer 1.4 and minor gnome updates.
Update evolution suite to 3.12.9.
Make sure gtk30 pulls in adwait-icon-theme, since it now the default theme [3].
PR: 195290 [1], 195289 [2], 195455 [3]
Obtained from: gnome devel repo
script to assume the BUILD_CONFIG is set to bootstrap-debug, instead of
letting it auto-detect.
With clang 3.5.0 this auto-detection can fail, due to a discrepancy [1]
[2] in its debug information, when objects are produced with and without
-g. When the auto-detection fails, gcc will compare objects with full
debug information during the stage comparisons, and this sometimes
causes those stage comparisons to fail unexpectedly.
[1] http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20141222/250134.html
[2] http://llvm.org/PR22046
Approved by: gerald (maintainer)
This is required for the upcoming CMake 3.1.0 update: pkg-config was
already required before to properly find and define qjson's version
number, but in 3.1.0 CMake is stricter when checking if a version >=
the minimum one has been found.
- update xpad to 4.5.0
- add documentation to installation
- lessen dependency count by using smaller icon package
- remove patches, as they were committed upstream (see Changelog)
- adjust conflicts for deskutils/xpad3
build with the upcoming CMake 3.1.0.
- Add missing dependency on libXi, and set PORTREVISION only once while
here.
Approved by: fluffy (maintainer, implicit)
- add dependency on security/py-service_identity. It fixes this warning
when running deluge, for example:
"""
/usr/local/lib/python2.7/site-packages/twisted/internet/_sslverify.py:184:
UserWarning: You do not have the service_identity module installed.
Without the service_identity module and a recent enough pyOpenSSL tosupport it,
Twisted can perform only rudimentary TLS client hostnameverification.
Many valid certificate/hostname mappings may be rejected.
verifyHostname, VerificationError = _selectVerifyImplementation()
"""
- define LICENSE_FILE
- update comment
- bump PORTREVISION because of dependency change
- add libgomp.so, as gcc already comes with a
dangling link to it.
Differential Revision: https://reviews.freebsd.org/D1397
Spotted by: Jason Bacon <bacon@uwm.edu>
Approved by: koobs (mentor)
r375798 made the OPTIONS prompt show up on every build because
bsd.port.pre.mk was being included too early. Move the inclusion down one
section.
PR: 196374
Submitted by: Tomoaki AOKI <junchoon@dec.sakura.ne.jp>