The script now depends on two tools abi-dumper and vtable-dumper. The
only purpose of the tools is to provide neccessary services to the
abi-compliance-checker, so I included all of them into the updated
port, instead of providing dependencies.
Sponsored by: The FreeBSD Foundation
Reviewed, tested and approved by: ehaupt
Differential revision: https://reviews.freebsd.org/D9315
- Update zathura-cb to 0.1.6 [1]
- Update zathura-djvu to 0.2.6 [2] [3]
- Update zathura-pdf-mupdf to 0.3.1 [4]
- Update zathura-pdf-poppler to 0.2.7 [2]
- Update zathura-ps to 0.2.4 [1]
- Move main master site to https
- Provide alternative download due to problems getting these files
from the master site from the FreeBSD cluster
PR: 216001 [1], 216002 [2] [3], 216067 [4]
Submited by: Michael Danilov <mike.d.ft402@gmail.com> (maintainer) [1] [2]
Zsolt Udvari <udvzsolt@gmail.com> (maintainer) [4]
Approved by: quentin.stievenart@gmail.com (maintainer) [3]
Not any gcc will suffice, stack needs exactly the gcc from lang/gcc.
The previous specification would match any gcc found on the search path,
e.g. a base compiler.
Approved by: just-fix-it
Interestingly, since I created a release tag in the same date format
used by the PORTVERSION, portscout thinks there is a new version
available (2006.01.31 => 2017.01.24).
Since the PORTVERSION is never going to change, disable portscout
entirely. As the maintainer of the github repo, I'll know when a new
release is available anyway.
- move to official github project
- update comment to changes in project focus
- add license file
- drop use of compiler:c1++11-lib, no longer needed
- remove patch for pci.cpp, no longer needed
- update pkg-descr with text from new website
PR: 215897
Approved by: imp (maintainer, timeout: 16 days)
Upstream breaking change: StringTooLong exception is now
IterableTooLong. All iterables are caught now, not just str.
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D9329
This version blocks TTY signals to and from background processes, allowing
lang/sbcl to build as well as avoiding disruption of an active ncurses
display by "you've got mail" message.
It also includes a minor duration time formatting fix on build logs and
the many-thousands-open-file-descriptor problem fix on purge-distfiles
command provided by 1.66_1 between releases.
There is also a change in the build order algorithm. Previously the
categories were ordered alphabetically, but rather scanned in the order
that appears by walking the directory. Now when the "nothing depends on
these ports" ports block starts building, it's in A-Z order by category/
portname whereas before ony the portname was ordered A-Z (the categories
were blocks in random order). There is no real benefit to the reordering;
it's mainly to satisfy those bothered by disorder.
Changelog:
* new : your account, added expand/collapse button
* wish : #1653350 cvs import default category for payee
* wish : #1645126 remember the size of columns listview in the main window
* wish : #1530784 easy way to see closed accounts in account list
* wish : #1164643 totals per Financial Institution in account summary
* bugfix: #1658047 Euro major Lithuanian template corrections
* bugfix: #1658045 Euro major settings: list countries alphabetically
* bugfix: #1658043 Euro major feature calculates amounts incorrectly
* bugfix: #1656531 account combobox can be default set to disabled account
* bugfix: #1653957 Importing QIF file with existing accounts
* bugfix: #1652994 Sorting for account in Statistics Report doesn't work
* bugfix: #1652527 Balance report crash when no result
* bugfix: #1649081 Exclude from budget option seems ignored
* bugfix: #1649078 Remind operations are included in "today" balance calculation
* bugfix: #1648856 balance report "select all" is not working
This port was first created by kwm@ then updated and improved by Johannes
Lundberg
Wayland is intended as a simpler replacement for X, easier to develop and
maintain. GNOME and KDE are expected to be ported to it.
Wayland is a protocol for a compositor to talk to its clients as well as
a C library implementation of that protocol. The compositor can be a
standalone display server running on Linux kernel modesetting and evdev
input devices, an X application, or a wayland client itself. The clients can
be traditional applications, X servers (rootless or fullscreen) or other
display servers.
Please report bugs to the FreeBSD bugtracker!
WWW: http://wayland.freedesktop.org/
small epoll implementation using kqueue; includes all features needed for
libinput/libevdev
The project was initially created here:
https://github.com/jiixyj/epoll-shim/
Forked and expected on the FreeBSDDesktop github
https://github.com/FreeBSDDesktop/epoll-shim
It is required for Wayland import
Submitted by: Johannes Lundberg <yohanesu75@gmail.com>
Environment (LXDE) which allows view and change global keyboard shortcuts
for Window Manager actions, including ones to start applications.
WWW: http://www.lxde.org/
- Adjust dependencies
- Add WEATHER (set by default), and ALSA (unset) options
- Rewrite patches plugins in order to use sysctl calls instead the Linux
proc and sys file system
In 2006, Sun Microsystems released math and vector math libraries as
part of their effort to open-source Solaris:
libmvec - vector math library
This library contains function to evaluate common mathematical functions
for several arguments at once. The argument values are specified by one
or more vectors (arrays) of data, and the corresponding result values
are stored in another vector.
libm - C99 math library
Functions in this library provide common elementary mathematical
functions and floating point environment routines defined by System V,
ANSI C, POSIX, and so on. Additional functions in this library provide
extended support for handling floating point exceptions.
The original source has been modified to build on FreeBSD and DragonFly
using GCC or clang and the GNU assembler. All fixes introduced by Nexenta
and Illumos projects have also been incorporated. Missing x86_64 variants
of lrint and lround have added. The floating-point exception logging
including address->symbol tranlation has also been implemented.