#!/bin/sh if [ "$2" != "POST-DEINSTALL" ]; then exit 0 fi PATH=/bin:/usr/sbin USER=sancp GROUP=${USER} LOG_DIR=/var/log/sancp # Remove the log directory if [ -d ${LOG_DIR} ]; then rmdir ${LOG_DIR} >/dev/null 2>&1; fi if pw user show "${USER}" >/dev/null 2>&1; then if ! pw userdel ${USER} ; then echo "Unable to remove user: ${USER}, remove it manually" fi fi if pw group show "${GROUP}" >/dev/null 2>&1; then if ! pw groupdel ${GROUP} ; then echo "Unable to remove group: ${GROUP}, remove it manually" fi fi rel='vcs-git' href='https://phantom.tfcis.org/~lantw44/git/freebsd-ports-gnome' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/x11
Commit message (Collapse)AuthorAgeFilesLines
* Update the MATE DE to 1.12.kwm2016-01-2523-107/+219
| | | | | | | | | | | | * Still build MATE against gtk+ 2 due to gtk+ 3 support not ready for prime time. * Fix loading of a number of applets. We rename a number of applets but didn't change the "config" files the "add applet to panel" dialog uses. [1] * Unbreak the creation of new notes with the stickynotes applet [2] PR: 205391 [1], 200349 [2] Obtained from: GNOME devel repo
* x11/tilda: Promote vte3 from BUILD_DEPENDS to include RUN_DEPENDSmarino2016-01-252-0/+3
| | | | | | | | | | | | | | User got error message, 'Shared object "libvte-2.91.so.0" not found, required by tilda' when launching tilda. Manually installing x11-toolkits/vte3 fixed the issue, so vte3 is clearly more than a build dependency. I've specified RUN_DEPENDS rather than convert BUILD_* to LIB_* given how vte3 was already specified and the fact there's no generic library in pkg-plist. while here, fix the pkg-plist error that showed during build testing by adding share/appdata/tilda.appdata.xml to the list approved by: just fix it.
* Update Qt5 to 5.5.1.rakuco2016-01-252-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the latest stable release at time of writing. Release announcement: http://blog.qt.io/blog/2015/07/01/qt-5-5-released/ New features in Qt 5.5: https://wiki.qt.io/New_Features_in_Qt_5.5 As usual, huge thanks to Tobias Berner (tcberner@gmail.com) for all his work on these ports in kde@'s experimental area51 repository. He's the one who started the update and did a lot of the initial work on Qt 5.5. Ralf Nolden (nolden@kde.org) has contributed the initial version of most of our new Qt5 ports. Also thanks to Yuri Victorovich (yuri@rawbw.com) for contributing PR 205805 with his own patch for the 5.5.1 update. Some of his changes there prompted additional fixes and changes present in the final patch generated from our experimental repository. New ports: - comms/qt5-connectivity, comms/qt5-sensors, devel/qt5-location, graphics/qt5-3d, net/qt5-enginio, x11-toolkits/qt5-canvas3d, x11-toolkits/qt5-uiplugin. General changes in all Qt5 ports: - All Qt5 ports are now built with -Wl,--as-needed to avoid overlinking, which is a problem with qmake-based because the libraries passed to the linker come from the modules .pri files and many are not necessary. - With this change, several ports had their USE_QT5 lines adjusted to explicitly include some libraries that were pulled in implicitly, and to exclude libraries no longer required with -Wl,--as-needed. Changes in specific ports: - devel/qt5: Drop the SQL_PLUGINS and TOOLS options and depend on all Qt5 ports by default. It makes the Makefile much simpler, and those options were already on by default. - devel/qt5-core: The clang+base libstdc++ workaround has been expanded and more C++11 features have been disabled when that combination is used by a port (basically, FreeBSD 9 with USES=compiler:c++11-lang). The disabled features have explanations for why they were disabled in the patched header itself. - devel/qt5-designer: uiplugins has been split out following a similar change upstream. By depending on qt5-uiplugin, qt5-uitools avoids having to depend on the big qt5-designer port. - multimedia/qt5-multimedia: The port now uses GStreamer 1.0 instead of 0.10. - net/qt5-network: The port now depends on libproxy for proxy settings. Using libproxy allows proxy settings to be read from different sources, and also allows .pac files to work with Qt. - www/qt5-webkit: The port now uses GStreamer 1.0 instead of 0.10. PR: 205805 PR: 206435
* Upgrade to 9.22.thierry2016-01-242-4/+3
| | | | Changelog at <http://cvs.schmorp.de/rxvt-unicode/Changes>.
* Update to 0.3.1olivierd2016-01-223-13/+20
| | | | | PR: 206261 Submitted by: <tkato432@yahoo.com>
* Update to 0.3.1olivierd2016-01-224-52/+38
| | | | | PR: 206260 Submitted by: <tkato432@yahoo.com>
* New port: x11/libfakekey.rakuco2016-01-226-0/+45
| | | | | | | | | libfakekey is a simple library for converting UTF-8 characters into 'fake' X key-presses. WWW: https://www.yoctoproject.org/tools-resources/projects/matchbox Submitted by: Tobias Berner <tcberner@gmail.com> to the area51 KDE repository
* Update poppler to 0.40.0. [1]kwm2016-01-222-1/+2
| | | | | | | | | Add patches to py-poppler [2] and rubygem-poppler [3] to fix the build of these ports with poppler 0.39+. PR: 206293 [1] Submitted by: olivierd@ [1] Obtained from: ubuntu [2], rubygem-poppler upstream [3]
* - Update to 0.8.3nivit2016-01-202-3/+3
| | | | | | PR: 206100 Submitted by: Neel Chauhan <neel@neelc.org> Release notes: https://github.com/Guake/guake/releases/tag/0.8.3
* - Update to 3.0.7sunpoet2016-01-171-10/+21
| | | | | | | | | - Remove duplicate CATEGORIES - Fix LICENSE - Add more RUN_DEPENDS and sort it Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Sponsored by: PortsCamp Taiwan
* On BSD, switching off ICANON does not disable LNEXT (^V) processing.naddy2016-01-162-0/+12
| | | | We explicitly need to unset IEXTEN.
* - Fix path to nvidia-driver's registry profilesamdmi32016-01-131-1/+3
| | | | | | PR: 204627 Submitted by: admin@vladiom.com.ua Approved by: maintainer timeout (bland, 7 weeks)
* Adopt x11/xtermcontrol and upgrade to version 3.3.olgeni2016-01-132-6/+4
| | | | | Remove run dependency on xterm: xtermcontrol can be installed on a headless server and control xterm remotely.
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"amdmi32016-01-1318-19/+18
| | | | Approved by: portmgr blanket
* Instead of simply removing pulseaudio provide an option (off by default)bapt2016-01-123-11/+16
|
* Update to 2.10bapt2016-01-127-152/+28
| | | | Add patches to remove support for pulseaudio
* - Update to 0.33.1danilo2016-01-122-3/+3
|
* Update tilda to 1.3.1rodrigo2016-01-123-7/+7
|
* x11/p5-X11-XCB: 0.12 -> 0.15pi2016-01-122-3/+3
| | | | Changes: added extension_present(), _screens_from_root()
* Fix a crash in gnome-control-center when the Region panel is selectedkwm2016-01-082-0/+12
| | | | | | | | | | on FreeBSD 11. When the region panel is selected it would crash right after printing: GnomeDesktop-WARNING **: locale 'kk_Cyrl_KZ.UTF-8' isn't valid This is because the gnome-desktop code that processes the locale doesn't handle multi language locales like the one above. And the code wasn't taking into account that language might be NULL.
* Update GStreamer1 to 1.6.2.kwm2016-01-042-2/+2
| | | | | | | | | | | | Update GStreamer1-vaapi to 0.7.0. * Spell GStreamer consistently. [1] * Fix typo in py3kplist in py3-gstreamer1 [1] * Improve plugins COMMENTS (more improvements welcome) * Actually include the gstreamer1-libav update this time. PR: 204204 [1] (based on) Submitted by: olivierd@ [1]
* Add patch to fix taglib version detectionjhale2016-01-041-0/+11
| | | | Reported by: pkg-fallout
* - Add upstream patch to fix taglib version detectionjhale2016-01-032-1/+36
| | | | | | | - Bump PORTREVISION as FindTaglib.cmake is modified Reported by: pkg-fallout Obtained from: https://quickgit.kde.org/?p=kdelibs.git&a=commit&h=967fc70300d5c2ae34d39b61757b717f6fca8805
* Install desktop entry filepawel2016-01-031-2/+11
| | | | | | PR: 205360 Submitted by: myself Approved by: maintainer timeout
* - Update to 1.5miwi2016-01-032-3/+3
| | | | | PR: 205463 Submitted by: jochen@jochen-neumeister.de
* Fix linking after r404875.rakuco2016-01-031-1/+1
| | | | | | | | | | | | | There was a typo in the line setting LDFLAGS: we need -L/some/dir, not /some/dir. From the logs: /usr/local/lib: file not recognized: Is a directory c++: error: linker command failed with exit code 1 (use -v to see invocation) Thanks to antoine for raising the issue, and sorry for the brain fart. MFH: 2015Q4
* Update to 322ehaupt2016-01-032-3/+3
|
* - Update to 0.33.0danilo2016-01-022-3/+3
|
* - Update to 0.1.4olivierd2016-01-023-8/+6
| | | | | | | | | - Adjust LICENSE blob - Sort USES PR: 205361 Submitted by: myself Approved by: <horia@racoviceanu.com> (maintainer, timeout 2 weeks)
* Chase update of x11/menu-cache, after revision r405055olivierd2016-01-022-1/+2
|
* Update to 1.0.1olivierd2016-01-023-4/+4
| | | | | | PR: 205101 Submitted by: myself Approved by: <horia@racoviceanu.com> (maintainer, timeout 1 month)
* Fix MASTER_SITES and unmark BROKEN.rakuco2016-01-021-4/+1
|
* Fix MASTER_SITES and unmark BROKEN.rakuco2016-01-021-3/+1
|
* Update to 321ehaupt2016-01-022-3/+3
|
* Update to 3.6.1.nobutaka2015-12-313-3/+45
|
* Finish fixing broken ports after r404856 and r404694.rakuco2015-12-311-0/+5
| | | | | | | | | | | | | | | | | | | | | * multimedia/obs-studio: Import some upstream commits that pass all required include directories to the compiler and reference libsysinfo.so with a full path instead of passing -lsysinfo and relying on ${LOCALBASE}/lib being in the linker search path. * textproc/sigil: Pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that upstream's build system references libhunspell-1.3.so and libpcre16.so without full paths (instead of finding them with the proper CMake commands it relies on pkg-config's output). * x11/antimicro: Also pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that several X11 and SDL2 libraries are referenced without full paths. I sent a pull request upstream to fix the X11 references, but SDL2 is still detected through pkg-config. MFH: 2015Q4
* - Update to 1.5.2olivierd2015-12-304-5/+6
| | | | - Adjust WWW entry
* - Switch to options helpersamdmi32015-12-281-2/+2
|
* - Add LICENSEamdmi32015-12-281-15/+8
| | | | | - Switch to USES=localbase - Switch to options helpers
* - Add LICENSEamdmi32015-12-283-11/+17
| | | | - Switch to options helpers
* - Add LICENSE_FILEamdmi32015-12-281-6/+5
| | | | - Switch to options helpers
* - Add LICENSE_FILEamdmi32015-12-281-2/+3
| | | | - Switch to options helpers
* - Add LICENSE_FILEamdmi32015-12-281-6/+6
| | | | - Switch to options helpers
* - Fix licenseamdmi32015-12-281-1/+4
| | | | | - Add LICENSE_FILE - Switch to options helpers
* - Add LICENSEamdmi32015-12-282-7/+6
| | | | | - Switch to options helpers - Don't install INSTALL
* - Add LICENSEamdmi32015-12-281-1/+4
| | | | - Switch to options helpers
* - Add LICENSEamdmi32015-12-281-4/+6
| | | | | - Switch to USES=localbase - Switch to options helpers
* - Add LICENSEamdmi32015-12-281-2/+4
| | | | - Switch to options helpers
* - Add LICENSE_FILEamdmi32015-12-281-1/+2
| | | | - Switch to options helpers
* - Switch to USES=localbaseamdmi32015-12-282-6/+7
| | | | | - Switch to options helpers - Fix WWW:
* x11/lemonbar: Fix man page, steamline makefile, fix build for FreeBSD 9marino2015-12-231-10/+10
| | | | | PR: 205512 Submitted by: maintainer
* Update libXi to 1.7.6.kwm2015-12-222-3/+3
|
* - Update to 0.15.10.jkim2015-12-222-4/+4
| | | | | | | - Assign maintainership to the submitter. PR: 205479 Submitted by: Matthew Rezny <matthew@reztek.cz>
* Add new port x11/lemonbar v1.1marino2015-12-224-0/+52
| | | | | | | | | | | | The PR was for bar-aint-recursive v1.0, but the project was renamed and got a new release since the PR was submitted nearly a year ago. PR: 196682 Submitted by: evgeni.dimitrov (gmail) bar is a lightweight bar entirely based on XCB. Provides full UTF-8 support, basic formatting, RandR and Xinerama support and EWMH compliance without wasting your precious memory.
* - Switch to options helpersamdmi32015-12-193-7/+8
| | | | - Regenerate patches with `make makepatch`
* Remove ${STAGEDIR} from pyc/pyo files installed with kdelibs's CMake macros.rakuco2015-12-195-13/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 200018 is caused by the .pyc/.pyo files installed by devel/py-pykde4 containing references to the stage directory in them. When editors/kate-plugin-pate is built by a user with write-access to those PyKDE4 .pyc/.pyo files, they are rewritten automatically by Python to point to their current location, which most of the times is different from the staging location of where devel/py-pykde4 was built. This at the very least leads to a filesystem violation in Poudriere. The fix I landed upstream involves making kdelibs's PythonCompile.py accept a --destination-dir parameter with the directory we want to register in the .pyc/.pyo files, just like several ports do in their build or post-install targets by calling Python's compileall.py module with -d. The patches in files/ look somewhat confusing because we already patch PythonMacros.cmake to build .pyo files and had to integrate the other patches into it. At least I have added some context to patch-cmake_modules_PythonMacros.cmake to reduce the confusion. Bump PORTREVISION in affected ports: - devel/py-pykde4: Install .pyc/.pyo files with ${STAGEDIR} in them. - games/kajongg: The plist now includes .pyo files, and was adjusted to work with Python 3 in the future if necessary. - x11/kdelibs4: Install new CMake files. - x11/plasma-scriptengine-python: Install .pyc/.pyo files with ${STAGEDIR} in them. PR: 200018 MFH: 2015Q4
* Fix usage of ${PERL5}.mat2015-12-181-3/+0
| | | | | | | | | | | | | | ${PERL5} points to a specific version of perl, say, perl5.22.1, it is fine to use it in a ports Makefile to do Perly things, but ports using it must use ${PERL}, that points to /usr/local/bin/perl so that if the minor version is updated, the shebang keep working. While there, make some ports use shebangfix, regen a few patches, and bump PORTREVISION where a shebang went from PERL5 to PERL. PR: 205367 With hat: portmgr Sponsored by: Absolight
* - Update to 0.15.9.jkim2015-12-163-22/+8
| | | | | | | | - Add options to disable Avahi and CUPS. - Fix dependencies for sound support. - Remove pkg-message with out-dated information. PR: 205338
* - Update to 1.2amdmi32015-12-153-12/+14
| | | | | | | | - Add NO_ARCH - Fix fetch PR: 205226 Submitted by: tkato432@yahoo.com
* At very long last land PyQt5 5.5.1 ports.rakuco2015-12-144-0/+36
| | | | | | | | | | | | Add the required bits to Uses/pyqt.mk along with all the PyQt5 ports. Thankfully this commit is mostly adding new ports, as the hard work was already done in r403297 and r403662. Huge kudos to Tobias Berner <tcberner@gmail.com> and, most importantly, Guido Falsi (madpilot@) for their initial work on these ports (see D2910 in Phabricator for an earlier version of the PyQt5 patch set). PR: 204672
* Update to 0.12.3olivierd2015-12-132-3/+3
| | | | | PR: 205073 Submitted by: <yamagi@yamagi.org> (maintainer)
* Update PyQt4 to 4.11.4, SIP to 4.17 and QScintilla2 to 2.9.1.rakuco2015-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Bring in some long overdue updates, some of which are required for us to later land the PyQt5 ports. One big change with this update is that the PyQt4 ports now install their .sip files into share/py-sip/PyQt4 instead of share/py-sip. This way we do not end up with directories like share/py-sip/QtCore, which are especially confusing once PyQt5 lands and starts installing files with the same names. Other noteworthy items: - PORTREVISION has been bumped on ports depending on devel/qscintilla2 because libqscintilla2.so's SOVERSION has changed. - graphics/seexpr has been converted to USE_PYQT, as the file it used to define a build-time dependency on x11-toolkits/py-qt4-gui has moved. Once again, big thanks to Tobias Berner <tcberner@gmail.com> and Guido Falsi (madpilot@) for their initial work on these ports as part of the effort to land PyQt5 into the tree (see D2910 in Phabricator for an earlier version of the PyQt5 patch set). PR: 205143
* x11/dmenu: simplify patching (like r403180)jbeich2015-12-133-61/+4
| | | | | | | Override variables instead of trying to fix them, sometimes incorrectly. PR: 205236 Approved by: portmgr blanket
* x11/dmenu: update to 4.6jbeich2015-12-134-24/+22
| | | | | | | | | | | | - Explicitly track direct fontconfig dependency - Define LICENSE_FILE as MIT has many styles https://fedoraproject.org/wiki/Licensing:MIT Changes: http://lists.suckless.org/dev/1511/27503.html PR: 205236 Reported by: Jakub Lach, Randy Westlund Pointy hat to: jbeich (timeout-happy) Approved by: r403178 regression
* x11/dmenu: make XINERAMA=on actually workjbeich2015-12-131-0/+3
| | | | | Approved by: portmgr blanket MFH: 2015Q4
* x11/rofi: update 0.15.7 -> 0.15.11junovitch2015-12-132-5/+15
| | | | | | | | | | - Update PORTVERSION, PLIST_FILES, SHEBANG_FILES, and distinfo 0.15.11 - LIB_DEPENDS: Add x11/startup-notification - USES: Sort and add shebangfix - Add I3 support option PR: 204675 Submitted by: nomoo@nomoo.ru (maintainer) (with several changes)
* Update to the lastest GNOME 3.16 releases.kwm2015-12-125-9/+6
|
* - Move print/py-cups to print/py-pycupssunpoet2015-12-111-2/+2
| | | | - Bump PORTREVISION for dependent ports
* - Switch to options helpersamdmi32015-12-111-1/+3
| | | | - Don't install useless and empty docs
* PyQt: Replace bsd.pyqt.mk with Uses/pyqt.mk.rakuco2015-12-092-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | In preparation for landing PyQt5 ports, generalize devel/py-qt4's bsd.pyqt.mk and make it a proper file in Uses/. Ports wishing to depend on PyQt4 ports can now do the following: USES= pyqt:4 USE_PYQT= foo bar_build baz_run Other changes include the renaming of the PYQT4_DIST variable to PYQT_DIST and the introduction of the PYQT_SIPDIR plist substitution variable. The rest of the contents of Uses/pyqt.mk are pretty much identical to what we had in bsd.pyqt.mk with additional processing of USE_PYQT. Even though this patch touches files in many different ports, the goal is for it to be a no-op from an end-user perspective (so that the basic infrastructure is landed before the other, riskier changes): no dependencies have been changed, PyQt/SIP/QScintilla have not been upgraded and the plists should remain exactly the same, since PYQT_SIPDIR currently contains the same value that used to be hardcoded in the plists. Huge thanks to Guido Falsi (madpilot@) for spearheading most of the work: he took the initiative to work on PyQt5 and sent D2910 to Phabricator with the original version of this patch. Tobias Berner (tcberner@gmail.com) later applied it to kde@'s experimental area51 repositories and did some more work on it.
* Don't use GH_TAGNAME when DISTVERSION* variables can be used.mat2015-12-082-2/+0
| | | | | With hat: portmgr Sponsored by: Absolight
* FPC ecosystem: Upgrade version 2.6.4 => 3.0.0marino2015-12-062-27/+1
| | | | | | | | | | | | | This is the first major release of FreePascal in nearly four years. There are a ton of new features, way more to list here. see: http://wiki.freepascal.org/FPC_New_Features_3.0 Several new unit ports were added, some were contracted. Most of those were absorbed into the main FPC packages, but two units are no longer supported: sndfile and matroshka. All 99 remaining ports (including Lazarus ports) were build tested on FreeBSD i386 and amd64 Release 10.2
* multimedia/x265: update to 1.8jbeich2015-12-051-0/+1
| | | | | | | ABI isn't compatible, so bump PORTREVISION in consumers. PR: 204990 Submitted by: Anton Sayetsky <vsasjason@gmail.com>
* Update giflib to 5.1.1antoine2015-12-041-1/+1
| | | | PR: 204492
* - Update to 3.3.3danilo2015-12-032-4/+4
|
* Make devel/qt4's clang+base libstdc++ patch work without changes to ↵rakuco2015-11-302-47/+5
| | | | | | | | | | | | | | x11/kdelibs4. Unconditionally including ciso646 in qglobal.h to check for libc++ makes including qglobal.h from C programs fail. qglobal.h is not supposed to be used in C programs, but kdelibs4's FindQt.cmake ends up calling CHECK_SYMBOL_EXISTS() instead of CHECK_CXX_SYMBOL_EXISTS() to check if some macros are defined. Since kdelibs4 is in maintenance mode, our changes to it can be avoided if we just check for __cplusplus before including ciso646 (<initializer_list> is not available in C anyway).
* Remove expired ports:rene2015-11-297-267/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2015-11-26 audio/pecl-id3: Broken for more than 6 months 2015-11-26 dns/geta: Broken for more than 6 months 2015-11-26 finance/openerp-web: Broken for more than 6 months 2015-11-26 devel/py-async: Further using of this module is not encouraged by upstream 2015-11-26 chinese/kon2: Depends on expiring chinese/cce 2015-11-26 games/linux-skulltag: Depends on expiring audio/linux-fmodapi 2015-11-26 archivers/wzip: Broken for more than 6 months 2015-11-26 databases/sybtcl: Broken for more than 6 months 2015-11-26 biology/povchem: Broken for more than 6 months 2015-11-26 audio/btc: Broken for more than 6 months 2015-11-26 astro/wmglobe: Broken for more than 6 months 2015-11-26 graphics/pyro: Broken for more than 6 months 2015-11-26 graphics/jpeg2ps: Broken for more than 6 months 2015-11-26 chinese/gugod-clean: Broken for more than 6 months 2015-11-26 comms/bforce: Broken for more than 6 months 2015-11-26 cad/geda-docs: Broken for more than 6 months 2015-11-26 chinese/cwtexttf: Broken for more than 6 months 2015-11-26 comms/zmtx-zmrx: Broken for more than 6 months 2015-11-26 astro/sky2000: Broken for more than 6 months 2015-11-26 deskutils/libopensync-plugin-file: Broken for more than 6 months 2015-11-26 databases/sqlite-ext-mobigroup: Broken for more than 6 months 2015-11-26 chinese/bg5ps: Broken for more than 6 months 2015-11-26 deskutils/x-tile: Broken for more than 6 months 2015-11-26 graphics/pure-gl: Broken for more than 6 months 2015-11-26 audio/dvda-author: Broken for more than 6 months 2015-11-26 chinese/oxim: Broken for more than 6 months 2015-11-26 editors/spe: Broken for more than 6 months 2015-11-26 audio/mpdscribble: Broken for more than 6 months 2015-11-26 cad/geda-symcheck: Broken for more than 6 months 2015-11-26 audio/linux-fmodapi: Broken for more than 6 months 2015-11-26 audio/pure-audio: Broken for more than 6 months 2015-11-26 editors/bpatch: Broken for more than 6 months 2015-11-26 benchmarks/geekbench: Broken for more than 6 months 2015-11-26 graphics/icoconvert: Broken for more than 6 months 2015-11-26 cad/geda-utils: Broken for more than 6 months 2015-11-26 deskutils/tomboy-plugin-wordcount: Broken for more than 6 months 2015-11-26 graphics/sketch: Broken for more than 6 months 2015-11-26 ftp/spegla: Broken for more than 6 months 2015-11-26 graphics/clutter-box2d: Broken for more than 6 months 2015-11-26 audio/scmpc: Broken for more than 6 months 2015-11-26 ftp/gnusget: Broken for more than 6 months 2015-11-26 comms/gpsk31: Broken for more than 6 months 2015-11-26 cad/geda-gschem: Broken for more than 6 months 2015-11-26 audio/ampache: Broken for more than 6 months 2015-11-26 cad/slffea: Broken for more than 6 months 2015-11-26 audio/cripple: Broken for more than 6 months 2015-11-26 cad/geda-gattrib: Broken for more than 6 months 2015-11-26 cad/findhier: Broken for more than 6 months 2015-11-26 biology/njplot: Broken for more than 6 months 2015-11-26 audio/wmmp: Broken for more than 6 months 2015-11-26 x11/avant-window-navigator: Broken for more than 6 months 2015-11-26 cad/geda-netlist: Broken for more than 6 months 2015-11-26 deskutils/libopensync-plugin-sunbird: Broken for more than 6 months 2015-11-26 biology/ortep3: Broken for more than 6 months 2015-11-26 astro/aa: Broken for more than 6 months 2015-11-26 french/belote: Broken for more than 6 months 2015-11-26 converters/p5-String-SetUTF8: Broken for more than 6 months 2015-11-26 cad/geda-examples: Broken for more than 6 months 2015-11-26 editors/yasnippet: Broken for more than 6 months 2015-11-26 audio/musica: Broken for more than 6 months 2015-11-26 graphics/rubyphoto: Broken for more than 6 months 2015-11-26 german/bsdpaste: Broken for more than 6 months 2015-11-26 audio/amrcoder: Broken for more than 6 months 2015-11-26 sysutils/bashburn: Broken for more than 6 months 2015-11-26 editors/e93: Broken for more than 6 months 2015-11-26 audio/tepsonic: Broken for more than 6 months 2015-11-26 astro/ephem: Broken for more than 6 months 2015-11-26 chinese/cce: Broken for more than 6 months 2015-11-26 graphics/qcread: Broken for more than 6 months 2015-11-26 databases/py-sqlkit: Broken for more than 6 months 2015-11-26 databases/usogres: Broken for more than 6 months 2015-11-26 cad/libgeda: Broken for more than 6 months 2015-11-26 chinese/p5-Lingua-ZH-BPMFConvert: Broken for more than 6 months 2015-11-26 french/alphabet_sounds_fr: Broken for more than 6 months 2015-11-26 deskutils/mrundlg: Broken for more than 6 months 2015-11-26 databases/erlang-mysql: Broken for more than 6 months 2015-11-26 graphics/linux-XnViewMP: Broken for more than 6 months 2015-11-26 deskutils/akamaru: Broken for more than 6 months 2015-11-26 dns/p5-Net-DNS-ZoneCheck: Broken for more than 6 months 2015-11-26 astro/dgpsip: Broken for more than 6 months 2015-11-26 databases/pecl-handlersocket: Broken for more than 6 months 2015-11-26 audio/cymbaline: Broken for more than 6 months 2015-11-26 french/dico: Broken for more than 6 months 2015-11-26 comms/qpage: Broken for more than 6 months 2015-11-26 audio/sonice: Broken for more than 6 months 2015-11-26 cad/geda-symbols: Broken for more than 6 months 2015-11-26 databases/java-mybatis: Broken for more than 6 months 2015-11-26 databases/openbase-jdbc: Broken for more than 6 months 2015-11-27 www/mediawiki119: Please upgrade to mediawiki-1.25 2015-11-28 www/R-cran-Rpad: Unmaintained upstream
* Mark BROKEN: unfetchableantoine2015-11-281-0/+2
| | | | Reported by: pkg-fallout
* Add patch for the port to build with CMake 3.4.0.rakuco2015-11-261-0/+15
|
* - Update to 3.3.2danilo2015-11-262-4/+4
|
* x11/thingylaunch - take back maintainershipgahr2015-11-251-1/+1
|
* Update babl to 0.1.14.kwm2015-11-244-4/+29
|
* - Update to 0.32.0danilo2015-11-232-3/+3
|
* Update appstream-glib to 0.5.4.kwm2015-11-221-1/+1
| | | | | Switch from custom code to using USES=libarchive. Adjust BUILD_DEPEND lines in where needed.
* Add CPE info, and fix some whitespace issues.kwm2015-11-221-3/+5
| | | | | PR: 204695 Submitted by: shun <shun.fbsd.pr@dropcut.net>
* x11/xxkb: 1.11 -> 1.11.1, change of license from ART10 to ART20pi2015-11-223-10/+10
| | | | | | PR: 204288 Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de> Approved by: alexander.pohoyda@gmx.net (maintainer timeout)
* When LANG is set to ru_RU.UTF-8 for example xfce4-keyboard-settings wouldkwm2015-11-193-0/+138
| | | | | | | | | segfault. This was due to libxklavier passing invalid UTF-8 strings to a few glib functions which require a UTF-8 string. Add code to libxklavier to pass correct UTF-8 string to glib. Submitted by: rum1cro@yandex.ru
* Fix lockscreen bypass.kwm2015-11-182-0/+208
| | | | | MFH: 2015Q4 Security: 68847b20-8ddc-11e5-b69c-c86000169601
* Update to 0.15.8.jkim2015-11-172-4/+3
| | | | MFH: 2015Q4
* Fixup issue with implicit pthread linkage.bland2015-11-151-1/+2
| | | | | | | Still curious to understand why it is needed at the first place as libgthread supposed to pull the dependency. PR: 203372
* multimedia/libvpx: update 1.5.0jbeich2015-11-151-0/+1
| | | | | | | | | | ABI isn't compatible, so bump PORTREVISION in consumers. Changes: https://chromium.googlesource.com/webm/libvpx/+log/e67d45d..v1.5.0 ACC report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0.488_1_to_1.5.0/compat_report.html PR: 204478 Exp-run by: antoine Approved by: ashish (maintainer)
* - Add LICENSE_FILEamdmi32015-11-141-2/+3
| | | | | | - Remove obsolete reinplace Approved by: portmgr blanket
* - Fix license handlingamdmi32015-11-141-3/+9
| | | | | - Optionize docs - Switch to options helpers
* - Clarify LICENSEamdmi32015-11-142-3/+6
| | | | | | - Add LICENSE_FILE - Switch to options helpers - Regenerate patches with `make makepatch`
* x11/xpra: Add patch to support build on malloc.h-free DFmarino2015-11-131-0/+11
|
* Update xkbcomp to 1.3.1.kwm2015-11-112-3/+3
|
* Mark a few ports BROKEN: unfetchableantoine2015-11-099-0/+18
|
* - Fix LICENSEamdmi32015-11-061-1/+4
| | | | - Strip library
* Fix ports that confused the meaning of WRKDIR and WRKSRC.mat2015-11-052-5/+5
| | | | | | | | PR: 204056 Submitted by: mat Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D2735
* - Update to 0.31.3danilo2015-11-032-3/+3
|
* Remove some debugs and works in progress that snuck in with previous commit.zeising2015-10-281-3/+2
| | | | MFH: 2015Q4
* Update to 5.34zeising2015-10-282-5/+6
| | | | | | | | This update fixes a lock bypass vulnerability, where the screen can be unlocked without authorization. MFH: 2015Q4 Security: 4b9393b8-7c0c-11e5-a010-080027ddead3
* - Fix shebang properlyamdmi32015-10-271-0/+2
| | | | Approved by: portmgr blanket
* - Update to Lumina 0.8.7kmoore2015-10-268-20/+37
|
* Deprecate ports broken for more than 6 monthsantoine2015-10-261-0/+2
|
* Avoid building unnecessary demos and tests.jmmv2015-10-211-0/+5
| | | | | | | | | | The pixmap package does not install neither the demos nor the tests it includes, yet these get built as part of "make all". Disable them to shorten build times and, particularly, to workaround ld(1) crashes triggered by them in powerpc64; see PR bin/202284 for details. Reviewed by: kwm (maintainer), bdrewery (mentor) Differential Revision: https://reviews.freebsd.org/D3372
* Update xinput to 1.6.2.kwm2015-10-202-3/+3
|
* Update xkbevd to 1.1.4.kwm2015-10-2040-86/+60
| | | | Obtained from: Xorg devel repo
* Update xkbprint to 1.0.4.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xlsatoms to 1.1.2.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xmag to 1.0.6.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xmh to 1.0.3.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xmodmap to 1.0.9.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xvinfo to 1.1.3.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xkeyboard-config to 2.16.kwm2015-10-204-16/+17
| | | | | | Regen patch because upstream changed whitespace. Obtained from: Xorg devel repo
* Update xproto to 7.0.28.kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xorg-docs to 1.7.1kwm2015-10-202-3/+3
| | | | Obtained from: Xorg devel repo
* Update xman to 1.1.4.kwm2015-10-203-27/+3
| | | | Obtained from: Xorg devel repo
* Update pixman to 0.32.8.kwm2015-10-203-5/+6
| | | | | | Add portscout macro to ignore devel versions. Obtained from: Xorg devel repo
* Update randrproto and libXrandr to 1.5.0.kwm2015-10-204-7/+6
| | | | Obtained from: Xorg devel repo
* Drop no longer needed EXTRACT_SUFX as our GitHub support gives sufficientlydanfe2015-10-202-3/+2
| | | | unique names to the distfiles.
* - Update to 0.15.7.jkim2015-10-205-43/+121
| | | | | | | - Add options to allow excluding some features. - Pass stage-qa and remove runtime dependency for audio/pulseaudio. [1] PR: 202549 [1]
* x11/virtualgl: 2.3.3 -> 2.4.1pi2015-10-209-58/+73
| | | | | | | | | Changes: https://github.com/VirtualGL/virtualgl/blob/master/ChangeLog.txt PR: 202804 Submitted by: Ultima1252@gmail.com, matthew@reztek.cz Approved by: David Mackay <davidjx8p@gmail.com> (maintainer)
* Improve shebangfix frameworkamdmi32015-10-193-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | - Support multiple values in *_OLD_CMD, i.e. we can now fix both "/usr/bin/python" and "/usr/bin/env python" at the same time - Default *_OLD_CMD values are now always appended, so you don't need to specify them in individual ports - Add lua support (depends on USES=lua) - Add more default values, such as "/usr/bin/env foo" for python, perl, bash, ruby and lua - Shebangfix now matches whole words, e.g. we will no longer (erroneously) replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is still (correctly) replaced with "${perl_CMD} -tt") Note that *_OLD_CMD items containing spaces must now be quoted (e.g. perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl") Update shebangfix usage according to new rules in many ports: - Remove *_OLD_CMD for patterns now replaced by default - Quote custom *_OLD_CMD which contain spaces Fix shebangfix usage in many ports (irrelevant to infrastructure change): - Remove redundant SHEBANG_LANG (no need to duplicate default langs) - Remove redundant *_CMD (such as python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present) - Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for exact string Approved by: portmgr (bapt) Differential Revision: D3756
* - Switch to options helpersamdmi32015-10-192-5/+6
| | | | | | - Fix WWW: Approved by: portmgr blanket
* - Unbreak the build on -CURRENT by explicitly linking against libm as adanfe2015-10-182-2/+15
| | | | | | | | | | | | | remedy to the following error: [100%] Linking C executable bmpanel2 /usr/bin/ld: undefined reference to symbol `truncf@@FBSD_1.0' (try adding -lm) //lib/libm.so.5: could not read symbols: Bad value - While here fix long standing issue of -L${LOCALBASE}/lib being required in LDFLAGS while USES=pkgconfig due to missing LINK_DIRECTORIES() call in the top-level `CMakeLists.txt'
* Drop 8 support.mat2015-10-152-8/+3
| | | | | | With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3694
* - Clarify LICENSEamdmi32015-10-151-6/+6
| | | | | | | | - Add LICENSE_FILE - Drop unneeded WX_UNICODE - Don't install empty and unneeded (INSTALL) docs - Switch to options helpers - Pet portlint
* Remove the 173.14.39 nvidia-driver. it doesn't support a xorg-server newerkwm2015-10-132-14/+0
| | | | | then 1.15. And also marked forbidden. (MOVED entry snuck in the xserver update itself).
* x11/xvkbd: Upgrade version 3.6 => 3.7marino2015-10-103-56/+59
| | | | | PR: 203486 submitted by: ports fury
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.tijl2015-10-103-11/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine)
* - Update to 0.31.2danilo2015-10-092-3/+3
|
* Properly check for the charging flag in the returned battery statusjhb2015-10-092-1/+29
| | | | | | | to determine if the battery is charging. Reviewed by: bapt (maintainer) Differential Revision: https://reviews.freebsd.org/D3849
* - Fix buildamdmi32015-10-091-1/+1
| | | | Approved by: portmgr blanket
* Remove trailing whitespace from Makefiles, M-X.olgeni2015-10-083-3/+3
|
* Add a way to cleanly handle terminfo.db file used by devel/ncursesamdmi32015-10-083-7/+14
| | | | | | | | | | | | | | | | | | | | | | This database contains compiled terminfo entries and is merged from a large part which comes with ncurses themselves and compiled .terminfo files installed by other ports (currently only rxvt-unicode and jfbterm) - Now the database is always kept up to date, regardless of port installation order (both ncurses installed before .terminfo files and the other way around work as expected) - All affected ports now support clean deinstallation and do not produce stage-qa errors - Affected ports are simplified, as they now only need to define USES=terminfo - rxvt-unicode no longer pulls in ncurses: the dependency is not really needed for anything beside updating it's own database - The patch contains Q/A test to check whether a port needs, or needs not USES=terminfo Approved by: portmgr (mat, bapt) Differential Revision: D3747
* - Drop 8.x supportamdmi32015-10-071-8/+1
| | | | Approved by: portmgr blanket
* - Switch to options helpersamdmi32015-10-072-8/+1
| | | | | | | - Only use pkg-message specific to WCHAR option when the option is enabled - Drop 8.x support Approved by: portmgr blanket
* - Add empty directories to plistamdmi32015-10-032-1/+3
| | | | Approved by: portmgr blanket
* - Update to 5.33madpilot2015-10-0210-78/+104
| | | | | | | | | | | | | - Resolves the obnoxious startup message issue [1] - Add options NLS and XFT - Convert to USES=autoreconf - Don't install pam file when PAM option is disabled - Regenerate patches PR: 201254 Submitted by: Will B. <will_brokenbourgh at yahoo.com> Approved by: Maintainer timeout MFH: 2015Q4 [1]
* - Update to 0.31.1danilo2015-10-022-3/+3
|
* - Drop 8.x supportamdmi32015-10-021-4/+0
| | | | Approved by: portmgr blanket
* - Drop 8.x supportamdmi32015-10-013-84/+19
| | | | | | | - Switch to options helpers - Fix installation command Approved by: portmgr blanket
* - Switch to options helpersamdmi32015-10-011-12/+6
|
* - Fix plist for WITHOUT=PAM caseamdmi32015-10-01