summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-05-26Import mini-framework for paxctl(8) on NetBSD/{amd64,i386}khorben3-2/+58
This allows setting flags for PaX on select binaries. Two new variables are introduced for packages: NOT_PAX_ASLR_SAFE and NOT_PAX_MPROTECT_SAFE. They both expect a list of binaries are known to not support PaX ASLR and/or PaX MPROTECT, respectively. "Please commit" wiz@
2016-05-26Add devel/git-cvskhorben1-1/+3
2016-05-26Move dependency on devel/cvsps to the new git-cvs packagekhorben2-5/+5
As suggested by wiz@ Bumps PKGREVISION
2016-05-26Reflect the addition of devel/git-cvskhorben1-1/+2
2016-05-26Add git-cvskhorben1-1/+2
2016-05-26Add devel/git-cvskhorben2-0/+21
This simply moves the dependency of devel/git-base on cvsps away to a separate package, as already done for git-svn(1) in devel/git-svn.
2016-05-26Updated x11/xterm to 324nb1khorben1-1/+2
2016-05-26Add a patch to avoid consuming 100% CPU in hold modekhorben3-2/+20
Without this patch, this happens every time the child exits. To reproduce, simply run "xterm -hold -e true". Submitted upstream on March 29th 2016. Bumps PKGREVISION.
2016-05-26Updated security/py-yara to 3.4.0khorben1-1/+2
2016-05-26Update security/py-yara to version 3.4.0khorben1-5/+5
The changes include: * Short-circuit evaluation for conditions * New yr_rules_save_stream/yr_rules_load_stream APIs. * load() and save() methods in yara-python accept file-like objects * Improvements to the PE and ELF modules * Some performance improvements * New command-line option --print-module-data * Multiple bug fixes.
2016-05-26Updated security/yara to 3.4.0khorben1-1/+2
2016-05-26Update security/yara to version 3.4.0khorben3-8/+9
The changes include: * Short-circuit evaluation for conditions * New yr_rules_save_stream/yr_rules_load_stream APIs. * load() and save() methods in yara-python accept file-like objects * Improvements to the PE and ELF modules * Some performance improvements * New command-line option --print-module-data * Multiple bug fixes.
2016-05-26Remove obsolete argument to configurekhorben1-2/+1
2016-05-26Add support for CFLAGSkhorben1-3/+3
This fixes the build with PKGSRC_MKPIE.
2016-05-26Updated x11/gtk3 to 3.20.3nb1khorben1-1/+2
2016-05-26Register dependency on graphics/adwaita-icon-themekhorben1-1/+3
This fixes missing icons in applications using Gtk+ 3. Bumps PKGREVISION.
2016-05-26Updated devel/git-base to 2.8.3nb1khorben1-1/+2
2016-05-26Bump PKGREVISIONkhorben1-1/+2
As required for the new dependency on cvsps.
2016-05-26Register dependency on devel/cvsps for git-cvsimport(1)khorben1-1/+3
2016-05-26Updated graphics/png to 1.6.22wiz1-1/+2
2016-05-26Updated png to 1.6.22.wiz2-7/+7
Version 1.6.22beta01 [January 23, 2016] Changed PNG_USE_MKSTEMP to __COVERITY__ to select alternate "tmpfile()" implementation in contrib/libtests/pngstest.c Fixed NO_STDIO build of pngunknown.c to skip calling png_init_io() if there is no stdio.h support. Added a png_image_write_to_memory() API and a number of assist macros to allow an application that uses the simplified API write to bypass stdio and write directly to memory. Added some warnings (png.h) and some check code to detect *possible* overflow in the ROW_STRIDE and simplified image SIZE macros. This disallows image width/height/format that *might* overflow. This is a quiet API change that limits in-memory image size (uncompressed) to less than 4GByte and image row size (stride) to less than 2GByte. Revised workaround for false-positive Coverity issue in pngvalid.c. Version 1.6.22beta02 [February 8, 2016] Only use exit(77) in configure builds. Corrected error in PNG_IMAGE_PNG_SIZE_MAX. This new macro underreported the palette size because it failed to take into account that the memory palette has to be expanded to full RGB when it is written to PNG. Updated CMakeLists.txt, added supporting scripts/gen*.cmake.in and test.cmake.in (Roger Leigh). Relaxed limit checks on gamma values in pngrtran.c. As suggested in the comments gamma values outside the range currently permitted by png_set_alpha_mode are useful for HDR data encoding. These values are already permitted by png_set_gamma so it is reasonable caution to extend the png_set_alpha_mode range as HDR imaging systems are starting to emerge. Version 1.6.22beta03 [March 9, 2016] Added a common-law trademark notice and export control information to the LICENSE file, png.h, and the man page. Restored "& 0xff" in png_save_uint_16() and png_save_uint_32() that were accidentally removed from libpng-1.6.17. Changed PNG_INFO_cHNK and PNG_FREE_cHNK from 0xnnnn to 0xnnnnU in png.h (Robert C. Seacord). Removed dubious "#if INT_MAX" test from png.h that was added to libpng-1.6.19beta02 (John Bowler). Add ${INCLUDES} in scripts/genout.cmake.in (Bug report by Nixon Kwok). Updated LICENSE to say files in the contrib directory are not necessarily under the libpng license, and that some makefiles have other copyright owners. Added INTEL-SSE2 support (Mike Klein and Matt Sarett, Google, Inc.). Made contrib/libtests/timepng more robust. The code no longer gives up/fails on invalid PNG data, it just skips it (with error messages). The code no longer fails on PNG files with data beyond IEND. Options exist to use png_read_png (reading the whole image, not by row) and, in that case, to apply any of the supported transforms. This makes for more realistic testing; the decoded data actually gets used in a meaningful fashion (John Bowler). Fixed some misleading indentation (Krishnaraj Bhat). Version 1.6.22beta04 [April 5, 2016] Force GCC compilation to C89 if needed (Dagobert Michelsen). SSE filter speed improvements for bpp=3: memcpy-free implementations of load3() / store3(). call load3() only when needed at the end of a scanline. Version 1.6.22beta05 [April 27, 2016] Added PNG_FAST_FILTERS macro (defined as PNG_FILTER_NONE|PNG_FILTER_SUB|PNG_FILTER_UP). Various fixes for contrib/libtests/timepng.c Moved INTEL-SSE code from pngpriv.h into contrib/intel/intel_sse.patch. Fixed typo (missing underscore) in #define PNG_READ_16_TO_8_SUPPORTED (Bug report by Y.Ohashik). Version 1.6.22beta06 [May 5, 2016] Rebased contrib/intel_sse.patch. Quieted two Coverity issues in contrib/libtests/timepng.c. Fixed issues with scripts/genout.cmake.in (David Capello, Nixon Kwok): Added support to use multiple directories in ZLIBINCDIR variable, Fixed CMAKE_C_FLAGS with multiple values when genout is compiled on MSVC, Fixed pnglibconf.c compilation on OS X including the sysroot path. Version 1.6.22rc01 [May 14, 2016] No changes. Version 1.6.22rc02 [May 16, 2016] Removed contrib/timepng from default build; it does not build on platforms that don't supply clock_gettime(). Version 1.6.22rc03 [May 17, 2016] Restored contrib/timepng to default build but check for the presence of clock_gettime() in configure.ac and Makefile.am. Version 1.6.22 [May 26, 2016] No changes.
2016-05-26Updated security/libfprint to 0.0.6nb31wiz1-1/+2
2016-05-26Switch to ImageMagick6 to fix build. Bump PKGREVISION.wiz1-3/+3
2016-05-26Remove entry for the USE_X11BASE removal. Already done.kamil1-4/+1
2016-05-26Add kf5 packagesmarkd1-1/+63
2016-05-26Uncomment kf5, has a Makefile now.markd1-2/+2
2016-05-26Add DESCR and Makefile for KDE Frameworks 5.markd2-0/+90
2016-05-26Add kf5 packagesmarkd1-1/+17
2016-05-26Add KDE Frameworks 5.21.0 packages:markd76-0/+2862
frameworkintegration - provide components to allow applications to integrate with a KDE Workspace kactivities-stats - Core components for the KDE's Activities kactivities5 - Core components for the KDE's Activities kconfigwidgets - Widgets for KConfig kded - Extensible deamon for providing system level services kdesignerplugin - Integration of Frameworks widgets in Qt Designer/Creator kglobalaccel - Add support for global workspace shortcuts kguiaddons - Addons to QtGui kinit - Process launcher to speed up launching KDE applications kitemviews - Widget addons for Qt Model/View kjobwidgets - Widgets for tracking KJob instances ktextwidgets - Advanced text editing widgets kwidgetsaddons - Addons to QtWidgets kwindowsystem - Access to the windowing system kxmlgui - User configurable main windows plasma-framework - Plasma library and runtime components based upon KF5 and Qt5
2016-05-26Add kdewebkitmarkd1-1/+2
2016-05-26Add KDE Frameworks 5.21.0 packages:markd5-0/+67
kdewebkit - KDE Integration for QtWebKit
2016-05-26Add kf5 packagesmarkd1-1/+5
2016-05-26Add KDE Frameworks 5.21.0 packages:markd20-0/+642
kapidox - Frameworks API Documentation Tools kcodecs - Provide a collection of methods to manipulate strings using various encodings kcompletion - Text completion helpers and widgets sonnet - Spelling framework for Qt5
2016-05-26Add kf5 packagesmarkd1-1/+5
2016-05-26Updated net/php-baikal to 0.4.4wiz1-1/+2
2016-05-26Updated php55-baikal to 0.4.4.wiz3-11/+9
0.4.4 (2016-03-30) ------------------ * #517: Added the Sync plugin. Should speed things up and fix syncing bugs with Em Client. * Ships with sabre/dav 3.1.2 0.4.3 (2016-03-23) ------------------ * #513: Fixed error during installation, introduced with 0.4.2. * Ships with sabre/dav 3.1.2 0.4.2 (2016-03-21) ------------------ * #510: Fix PHP warning on fresh install. * #507: Disable installer if Baikal was already configured. * Ships with sabre/dav 3.1.2 0.4.1 (2016-03-17) ------------------ * #506: Fix Sqlite upgrades from people that are upgrading from 0.2.7 or earlier. * Ships with sabre/dav 3.1.2 0.4.0 (2016-03-15) ------------------ * #472: If you were using Sqlite, Cal- CardDAV clients might have missed updates from the server. * #482 / #490: Fix installation issue if Sqlite is not enabled. (@fabianwolf) * #491: Added CalDAV Scheduling plugin. * Added Property Storage plugin. * Removed features related to locking the admin interface. This means that you no longer have to create the `ENABLE_ADMIN` / `ENABLE_INSTALL` files. * Ships with sabre/dav 3.1.2
2016-05-26Add KDE Frameworks 5.21.0 packages:markd25-0/+981
baloo5 - Framework for searching and managing metadata kdbusaddons - Addons to QtDBus kfilemetadata5 - Library for extracting file metadata solid - Hardware integration and detection
2016-05-26Add kf5 packagesmarkd1-1/+4
2016-05-26Add KDE Frameworks 5.21.0 packages:markd16-0/+496
kauth - Abstraction to system policy and authentication features kdesu - Integration with su for elevated privileges kwallet - Secure and unified container for user passwords
2016-05-26Updated x11/libXfixes to 5.0.2wiz1-1/+2
2016-05-26Add kf5 packagesmarkd1-1/+4
2016-05-26Updated libXfixes to 5.0.2.wiz2-7/+8
Matt Turner (1): libXfixes 5.0.2 Michael Joost (1): Remove fallback for _XEatDataWords, require libX11 1.6 for it
2016-05-26Updated emulators/mame to 0.174wiz1-1/+2
2016-05-26Update mame to 0.174.wiz5-50/+25
Remove merged patches. We're pleased to announce the release of MAME 0.174! This new release includes some exciting newly-playable machines, including the Tiger Game.com handheld and the ultra-rare Seibu Kaihatsu title, Metal Freezer. Meanwhile, the Apple 2 driver now supports the Mockingboard 4C card, and the regressions in the IT Eagle (Golden Tee Fore) driver's colors from the previous release have been fixed. Last but not least, there should be better support for DirectInput 8 on Windows, including supporting older game controllers which previously only worked using the DirectInput 7 module. If you still have a controller which DirectInput 8 does not support that you regularly use, please contact us so that we know what controllers still do not work.
2016-05-26Add KDE Frameworks 5.21.0 packages:markd15-0/+497
kdnssd - Abstraction to system DNSSD features knewstuff - Support for downloading application assets from the network kxmlrpcclient - XML-RPC client library for KDE
2016-05-26Add kf5 packagesmarkd1-1/+4
2016-05-26Add KDE Frameworks 5.21.0 packages:markd15-0/+446
attica-qt5 - Qt5 library that implements the Open Collaboration Services API kemoticons - Support for emoticons and emoticons themes kunitconversion - Support for unit conversion
2016-05-26Add kf5 packagesmarkd1-1/+5
2016-05-26Add KDE Frameworks 5.21.0 packages:markd18-0/+12381
breeze-icons - Breeze icon themes kiconthemes - Support for icon themes kimageformats - Image format plugins for Qt5 kplotting - Lightweight plotting framework
2016-05-26Add kf5 packagesmarkd1-1/+21