Commit graph

10089 commits

Author SHA1 Message Date
Jan Beich
76c3374d36 x11/alacritty: update to g20180126
Changes:	b396a9a753...b82622e994
2018-01-30 00:54:35 +00:00
Yuri Victorovich
eed7d08a11 New port: x11/wmutils-opt: Optional addons to wmutils
See details here: https://github.com/wmutils/opt

PR:		225142
Submitted by:	Dmitri Goutnik <dg@syrec.org>
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D14112
2018-01-29 21:49:33 +00:00
Yuri Victorovich
d3518f2c4a New port: x11/wmutils-core: Set of window manipulation tools
PR:		225141
Submitted by:	Dmitri Goutnik <dg@syrec.org>
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D14113
2018-01-29 18:41:00 +00:00
Raphael Kubo da Costa
c34eda3cf0 Add a patch to drop CMake calls to QT5_WRAP_CPP().
The USE_QT5 code path already unconditionally sets CMAKE_AUTOMOC to on.

Calling QT5_WRAP_CPP() used to be just redundant, as antimicro_HEADERS_MOC
was never actually added as a source dependency of the antimicro target. In
other words, CMake's own automoc infrastructure was actually being used and
the moc invocations from QT5_WRAP_CPP() were not being made at all.

Starting with Qt 5.9.4, calling QT5_WRAP_CPP() disables the AUTOMOC property
on the macro's input files, which means neither CMake's automoc
infrastructure not QT5_WRAP_CPP()'s code were being used and we ended up
with several 'undefined reference to vtable' errors when linking.

Sent upstream: https://github.com/AntiMicro/antimicro/pull/207

PR:		225436
2018-01-29 11:40:33 +00:00
Raphael Kubo da Costa
8a81409481 Switch to an out-of-source CMake build 2018-01-28 23:16:12 +00:00
Rene Ladan
ee75b181e6 Remove expired evolution-mapi from x11/gnome3 2018-01-28 11:21:34 +00:00
Jan Beich
b964b053b6 multimedia/libvpx: update 1.7.0
Changes:	https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI:		https://abi-laboratory.pro/tracker/timeline/libvpx/
2018-01-25 21:20:12 +00:00
Don Lewis
6c39db471e Fix build of x11/gnome-pie with vala 0.36
PR:		225124, 221941
Submitted by:	cpm
Approved by:	nivit (maintainer, via private email)
2018-01-24 07:21:27 +00:00
Alexey Dokuchaev
0a5b12057c Update nVidia drivers to their latest versions which fix frequent kernel
panics reported by some users.

PR:	225346
2018-01-22 09:05:44 +00:00
Jan Beich
a6ecdf1bfe x11/alacritty: update to g20180118
Changes:	02953c2812...b396a9a753
2018-01-20 00:22:22 +00:00
Jan Beich
25beeff079 devel/boost-*: update to 1.66.0
Changes:	http://www.boost.org/users/history/version_1_66_0.html
PR:		223922
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D13279
2018-01-18 04:11:02 +00:00
Tobias C. Berner
94ac845319 Update KDE Frameworks to 5.42.0
PR:		225155
Exp-run by:	antoine
Reviewed by:	rakuco
Differential Revision:	https://reviews.freebsd.org/D13816
2018-01-17 10:21:32 +00:00
Alexey Dokuchaev
3e7acf54b8 - Update `x11/tint' to version 16.1
- Add missing DOCS knob to OPTIONS_DEFINE
- Remove EXAMPLES knob (no-op with 16.1)
- Add USES=gettext-runtime (libintl.so is always linked in)
- Add USE_XORG=xext per `stage-qa' warning
- Changes: https://gitlab.com/o9000/tint2/blob/16.1/ChangeLog

PR:		225166
Submitted by:	Dmitri Goutnik
2018-01-15 10:20:22 +00:00
Tobias Kortkamp
97cacf5cd1 x11/lemonbar: Update to 1.3
- Submitter becomes maintainer

Changes:	https://github.com/LemonBoy/bar/releases/tag/v1.3
PR:		225121
Submitted by:	Dmitri Goutnik <dg@syrec.org>
Approved by:	evgeni.dimitrov@gmail.com (maintainer)
2018-01-14 15:21:26 +00:00
Dmitry Marakasov
0d59cd33c6 - Fix missing python flavor 2018-01-11 20:01:45 +00:00
Alexey Dokuchaev
7b85b686ee Remove superfluous linefeeds and fix some other minor whitespace bugs. 2018-01-11 16:53:44 +00:00
Tijl Coosemans
cd35fb4e1e Remove unneeded USE_AUTOTOOLS. 2018-01-11 14:45:54 +00:00
Alexey Dokuchaev
a247b2f47d Do not abuse INSTALL_MAN when installing documentation, examples, and
other miscellaneous files that are not actually manual pages (part 2).
2018-01-11 14:18:01 +00:00
Tobias Kortkamp
0786140fcf New port: x11/polybar
The main purpose of Polybar is to help users create awesome status
bars.  It has built-in functionality to display information about the
most commonly used services.  Some of the services included so far:

    Systray icons
    Window title
    Playback controls and status display for MPD using libmpdclient
    ALSA volume controls
    Workspace and desktop panel for bspwm and i3
    Workspace module for EWMH compliant window managers
    Keyboard layout and indicator status
    CPU and memory load indicator
    Battery display
    Network connection details
    Backlight level
    Date and time label
    Time-based shell script execution
    Command output tailing
    User-defined menu tree
    Inter-process messaging
    And more...

WWW: https://github.com/jaagr/polybar

https://forums.freebsd.org/threads/62494/

Submitted by:		capt_redbeard@protonmail.com
Reviewed by:		6yearold_gmail.com, adridg, mat, lbdm@privacychain.ch, tobik
Differential Revision:	https://reviews.freebsd.org/D13634
2018-01-11 06:23:22 +00:00
Raphael Kubo da Costa
6459814572 Explicitly build with -std=gnu++98.
clang 6.0 defaults to -std=gnu++14, but the port fails with too many errors
when built in C++11 (or later) mode.

PR:		224945
2018-01-09 21:47:55 +00:00
Jan Beich
e94dbf2c3d x11/alacritty: update to g20180108
Changes:	8ce553f28a...02953c2812
2018-01-09 00:52:25 +00:00
Tobias C. Berner
1e8ad06e51 x11/kdelibs4, fix build on i386 with clang6
The previous fixes in r458314 were not enough for i386.
Backport fix from x11/kf5-kdelibs4support.

PR:		224945
2018-01-08 17:41:58 +00:00
Kirill Ponomarev
4ec78a610c Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade. 2018-01-08 14:44:54 +00:00
Tobias C. Berner
c30ec1f85f x11/kdelibs4 fix build with clang6
PR:		224945
2018-01-07 11:57:50 +00:00
Tobias C. Berner
c2e67fd35c x11/qimageblitz, fix build with clang6
PR:		224945
Reported by:	jbeich
2018-01-06 18:48:32 +00:00
Antoine Brodin
5748efd302 Fix LICENSE_FILE
Reported by:	pkg-fallout
2018-01-06 07:41:45 +00:00
Steve Wills
768fb0d8c8 x11/radare-cutter: create port
A Qt and C++ GUI for radare2 reverse engineering framework

WWW: https://github.com/radareorg/cutter
2018-01-04 17:09:27 +00:00
Alexey Dokuchaev
cda22e4349 Add explicit run-time dependency on `x11/xrandr': the program fails to run
when xrandr(1) is not installed:

  $ hsetroot ...
  sh: xrandr: not found
2018-01-03 15:11:11 +00:00
Raphael Kubo da Costa
a9709471be Update SIP to 4.19.6, PyQt4 to 4.12.1 and PyQt5 to 5.9.2.
Upstream no longer ships the contents of misc/py-qt5-doc, so the port has been
removed.

This is also a requirement for updating the Qt5 ports, as the PyQt5 version
currently in the tree has license conflicts with later Qt versions.

Big thanks to tcberner for doing most of the work here, and antoine for the
exp-run.

PR:		224739
2018-01-02 20:21:34 +00:00
Danilo Egea Gondolfo
7362199f87 - Update to 3.5.0
- Add libpcre to LIB_DEPENDS as reported by Q/A
2018-01-01 15:39:41 +00:00
Sunpoet Po-Chuan Hsieh
d400f205f9 Add PORTSCOUT 2017-12-31 22:23:48 +00:00
Sunpoet Po-Chuan Hsieh
aa036c8bc9 Fix WWW
Approved by:	portmgr (blanket)
2017-12-30 00:16:13 +00:00
Jan Beich
2ae8c95687 x11/alacritty: update to g20171229
Changes:	2879830f1d...8ce553f28a
2017-12-30 00:08:55 +00:00
Sunpoet Po-Chuan Hsieh
be98bb9886 Update to 0.09
- Remove USE_PERL5=patch
- Strip shared library
- Regenerate patch file with makepatch:

Changes:	http://search.cpan.org/dist/X11-IdleTime/Changes
2017-12-29 18:47:37 +00:00
Antoine Brodin
e471a9d4c1 Fix previous commit 2017-12-29 09:25:58 +00:00
Antoine Brodin
377901b804 Simplify some USES=python
With hat:	portmgr
2017-12-29 09:01:54 +00:00
Ben Woods
087c4af633 x11/xfce4-whiskermenu-plugin: Update to 1.7.5
Changes this release:
  https://mail.xfce.org/pipermail/xfce-announce/2017-December/000571.html
2017-12-29 07:42:23 +00:00
Jan Beich
32ea2cb7fc multimedia/{lib,}x264: update to 0.152.2854
Changes:	https://git.videolan.org/?p=x264.git;a=shortlog;h=e9a5903edf8ca59ef20e6f4894c196f135af735e
2017-12-29 02:55:42 +00:00
Alexey Dokuchaev
64ad76ebd5 Unbreak the build (at least) on powerpc, powerpc64, sparc64, by moving the
`for' loop initial declaration variable outside; this was upsetting C99:

  hsetroot.c: In function 'load_image':
  hsetroot.c:196: error: 'for' loop initial declaration used outside C99 mode

Tested on:	powerpc, sparc64
2017-12-28 14:30:23 +00:00
Alexey Dokuchaev
b13e4c707e Add custom patch that introduces "sane" image rendering mode: it allows to
select the best aspect ratio and display image with minimal scaling yet not
centered.  This mode is useful when one wants to use an image with author's
copyright in the lower corner and wants to hide it.  Existing modes did not
always provide the best possible result.  While here, take maintainership.
2017-12-28 10:54:29 +00:00
Jan Beich
6e41f622d9 x11/alacritty: update to g20171224
Changes:	e17d38167e...2879830f1d
2017-12-27 22:40:28 +00:00
Danilo Egea Gondolfo
c463b1d3d4 - Update to 0.40.0 2017-12-26 21:32:54 +00:00
Alexey Dokuchaev
fb9ce1062c Update nVidia driver ports to their most recent versions, bringing assorted
bugfixes and support for X.Org xserver ABI 23 (xorg-server version 1.19).

PR:	224597
2017-12-26 18:55:18 +00:00
Ben Woods
9ff6e29133 x11/lightdm: Update to 1.24.0
There are no changes in this release:
  https://lists.freedesktop.org/archives/lightdm/2017-September/001074.html
2017-12-26 10:34:11 +00:00
Niclas Zeising
c2adc3a283 Sort this. 2017-12-25 22:37:16 +00:00
Niclas Zeising
a958ba30ea Update to 5.38 2017-12-25 22:36:46 +00:00
Niclas Zeising
e4c5564177 Update to 1.2.0
Use install-strip as install target.
2017-12-23 22:20:48 +00:00
Antoine Brodin
ddd8c8640e Change default version of samba from 4.4 to 4.6
Reviewed by:	mat
With hat:	portmgr
Differential Revision:	https://reviews.freebsd.org/D13529
2017-12-23 07:03:21 +00:00
Marcelo Araujo
a92d8470da Add the '.' on if that was deleted by mistake. 2017-12-22 02:54:09 +00:00
Marcelo Araujo
b0c1f47b11 - Update to 1.4.1.
- Pass maintainership to submitter.

PR:		ports/224306
Submitted by:	JT Pennington <jt@ixsystems.com>
Approved by:	kmoore (maintainer)
Sponsored by:	iXsystems, Inc.
2017-12-22 02:46:38 +00:00