aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/retroshare
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* graphics/opencv: update to 4.5.1 -- and make port more easily maintainableTobias C. Berner2021-01-301-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a major upgrade from 3.x to 4.x. Changelog from versions 3.4.1--4.5.1 can be found here: https://github.com/opencv/opencv/wiki/ChangeLog Note: this has explicitely not been added as a new graphics/opencv4 port, but replaces the previous graphics/opencv[3] port. Again, to improve maintainability by not giving ports the option to pick the "wrong one" - this leads however to some abandoned ports being broken. The port has been greatly simplified: * graphics/opencv-core which existed to enable ffmpeg to depend on opencv, and vice versa has been removed. ffmpeg no longer can depend on opencv. * graphics/py-opencv has been integrated into graphics/opencv, the default versions python bindings will be built unless the PYTHON option is explicitely turned off. * graphics/opencv-java has been integrated into graphics/opencv -- it is off by default, but can be enabled by toggling the JAVA option -- there are no consumers in the tree, so that option might go away in the future. * All the previous options have been removed and replaced by a (hopefully) sane set of dependencies that make the port and package most usable for the majority of consumers. - Please let me know if you think there are better defaults (i.e. anything that is missing, or something that should not be dependet on). - If you think something should be added or removed, please open a bug report. - If you think something should be added as an optional dependency, please open a bug report (with a good reason [tm]). The depending ports have been updated to work against opencv4, or marked broken. * Ports broken: - graphics/rubygem-objectdetect: OpenCV4 no longer ships opencv-1.0 API - graphics/p5-Image-ObjectDetect: OpenCV4 no longer ships opencv-1.0 API - graphics/gimp-gmic-plugin: OpenCV4 no longer ships opencv-1.0 API * Backports: - misc/visp: https://github.com/lagadic/visp/commit/dfa7e4bd47c24cd2e631477e6afb18806733ff8a - multimedia/zart: https://github.com/c-koi/zart/commit/6ca1964690afbbc78627d7c868a692401043a584, https://github.com/c-koi/zart/commit/d3a2931b1a07ec0322211f253468000363c4b6cb * Others: - misc/actiona: switch to pkgconfig 'opencv4' - multimedia/libav: drop opencv support - misc/darknet: already failed to build prior to the upgrade - math/saga: remove patching added to work against opencv3 Notes: svn path=/head/; revision=563430
* www/libmicrohttpd: Update to 0.9.71Tobias C. Berner2020-10-311-0/+2
| | | | | | | | | | | | | | | - mark dependent ports broken, where there was no action from the maintainers in due time. PR: 249453 PR: 250101 PR: 250083 PR: 250100 Submitted by: daniel.engberg.lists@pyret.net Approved by: gaod@hychen.org (maintainer) Notes: svn path=/head/; revision=553747
* net-p2p/retroshare: prepare for Qt5-5.15Tobias C. Berner2020-05-304-1/+32
| | | | Notes: svn path=/head/; revision=537072
* Add USES=xorg USES=gl, ports categories nNiclas Zeising2019-11-061-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'n'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516920
* multimedia/ffmpeg: update to 4.2Jan Beich2019-08-051-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.2:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=508216
* net-p2p/retroshare: Switch from devel/upnp to net/miniupnpcTobias Kortkamp2019-04-224-14/+15
| | | | | | | | | | | | | RetroShare does not build with upnp >= 1.8. Upstream does not have a solution for this yet other than suggesting to switch to using miniupnpc as a workaround. PR: 237406 Submitted by: tobik Approved by: peter@netkey.at (maintainer) Notes: svn path=/head/; revision=499614
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Update Qt5 to 5.12.0Tobias C. Berner2018-12-161-0/+25
| | | | | | | | | | | | http://blog.qt.io/blog/2018/12/06/qt-5-12-lts-released/ - This breaks support for libressl again. Patches are welcome. PR: 233705 Exp-run by: antoine Notes: svn path=/head/; revision=487594
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-0/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=484273
* Fix build with Qt 5.11Jason E. Hale2018-08-312-2/+8
| | | | | | | | | | USE_GNOME requires USES=gnome PR: 230884 Obtained from: upstream Notes: svn path=/head/; revision=478554
* net-p2p/retroshare: Update to 0.6.4Steve Wills2018-06-285-10/+52
| | | | | | | | PR: 229367 Submitted by: peter@netkey.at (maintainer) Notes: svn path=/head/; revision=473509
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Bump PORTREVISION on more opencv consumers due to opencv updateSteve Wills2018-05-091-1/+1
| | | | Notes: svn path=/head/; revision=469466
* net-p2p/retroshare: unbreak with ffmpeg 4.0Jan Beich2018-05-022-2/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gui/VideoProcessor.cpp:456:40: error: use of undeclared identifier 'CODEC_CAP_TRUNCATED' if (encoding_codec->capabilities & CODEC_CAP_TRUNCATED) ^ gui/VideoProcessor.cpp:457:36: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' encoding_context->flags |= CODEC_FLAG_TRUNCATED; ^ gui/VideoProcessor.cpp:458:32: error: use of undeclared identifier 'CODEC_FLAG_PSNR' encoding_context->flags |= CODEC_FLAG_PSNR;//Peak signal-to-noise ratio ^ gui/VideoProcessor.cpp:459:32: error: use of undeclared identifier 'CODEC_CAP_PARAM_CHANGE' encoding_context->flags |= CODEC_CAP_PARAM_CHANGE; ^ gui/VideoProcessor.cpp:552:39: error: use of undeclared identifier 'CODEC_CAP_TRUNCATED' if(decoding_codec->capabilities & CODEC_CAP_TRUNCATED) ^ gui/VideoProcessor.cpp:553:36: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' decoding_context->flags |= CODEC_FLAG_TRUNCATED; // we do not send complete frames ^ gui/VideoProcessor.cpp:555:33: error: use of undeclared identifier 'CODEC_FLAG2_CHUNKS' decoding_context->flags2 |= CODEC_FLAG2_CHUNKS; ^ PR: 227726 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=468858
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-0/+3
| | | | | | | | | | | | | | | - FFSERVER support was removed upstream - libressl now uses libtls backend instead of patching openssl one - Clang i386 no longer uses 16-byte aligned stack Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 227726 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15175 Notes: svn path=/head/; revision=468844
* net-p2p/retroshare: Update to 0.6.3Yuri Victorovich2018-02-226-462/+514
| | | | | | | | | | | | | | | Additional port changes: * Changed to DISTVERSION * Added LICENSE_FILE * Updated USE_GNOME, USE_QT5 * Removed INSTALLS_ICONS PR: 224661 Submitted by: peter@netkey.at (maintainer) Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=462567
* Fix build of net-p2p/retroshare with recent versions of clang.Dimitry Andric2017-12-212-5/+12
| | | | | | | | | | Approved by: portmgr blanket Submitted by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at> PR: 216637 MFH: 2017Q4 Notes: svn path=/head/; revision=456947
* Mark broken on arm due to regression in clang 4.0.Mark Linimon2017-12-191-0/+4
| | | | | | | | | PR: 216637 Submitted by: jbeich Approved by: portmgr (tier-2 blanket), maintainer timeout (peter@netkey.at, several months) Notes: svn path=/head/; revision=456703
* multimedia/ffmpeg: update to 3.4Jan Beich2017-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine Notes: svn path=/head/; revision=452570
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-1/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* graphics/opencv: back out r423216 and r423063 (replaying r423316)Jan Beich2017-04-141-3/+3
| | | | | | | | | | | | Renaming didn't help to unblock 3.x progress as co-existence with 2.x was no less complex than simply fixing consumers. This commit also restores directory-level history accidentally lost via git-svn. PR: 210505 Pointy hat to: jbeich (should've discussed first) Notes: svn path=/head/; revision=438490
* Update to 0.9.52Sunpoet Po-Chuan Hsieh2017-01-231-1/+1
| | | | | | | | | | | | | - While I'm here: - Remove USE_OPENSSL: it is not required after libmicrospdy removal - Bump PORTREVISION for dependent ports Changes: https://gnunet.org/git/libmicrohttpd.git/tree/ChangeLog PR: 216382 Submitted by: Hung-Yi Chen <gaod@hychen.org> (maintainer) Notes: svn path=/head/; revision=432286
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-1/+1
| | | | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog PR: 207547 Submitted by: riggs, ebirth@b0ss.net (libressl fix) Exp-run by: antoine (3 tries) Notes: svn path=/head/; revision=428352
* Update security/gpgme-* to 1.8.0Jason E. Hale2016-11-261-1/+1
| | | | | | | | | | | | | | | In this version, libgpgme-pthread.so has been removed in favor of just using libgpgme.so as the thread-safe library. PORTREVISION has been bumped on all ports depending on security/gpgme so that any that may have linked to -lgpgme-pthread will link to -lgpgme instead. The Python module provided by security/py-gpgme has been renamed upstream from pyme3 to gpg. This removes the conflict with security/py-pyme, although security/py-gpgme is still the direct replacement of that module. Notes: svn path=/head/; revision=427185
* Remove wrongly used QT-related plist-subs from plistTobias C. Berner2016-10-281-2/+2
| | | | | | | | | | | %%QT_BINDIR%% and %%QT_LIBDIR%% represent the relative location of the Qt binaries and libraries respectively -- they are only 'bin' and 'lib' by chance, and should not be used that way. Approved by: portmgr (blanket), rakuco (mentor) Notes: svn path=/head/; revision=424838
* Use version tagnamePawel Pekala2016-10-132-4/+4
| | | | | | | Submitted by: mat Notes: svn path=/head/; revision=423938
* Update to version 0.6.1Pawel Pekala2016-10-122-7/+6
| | | | | | | | | PR: 213339 Submitted by: Christian Sturm Approved by: maintainer Notes: svn path=/head/; revision=423897
* graphics/opencv: add suffix to make room for 3.x seriesJan Beich2016-10-031-3/+3
| | | | | | | | | | | | To avoid confusion, the main port is to track the latest release. Whether to rename includes/libraries as well making it possible to install 2.x and 3.x side-by-side remains to be investigated. PR: 210505 (for tracking) Inspired by: PkgSrc Notes: svn path=/head/; revision=423216
* net-p2p/retroshare: Update fixing connectivity problems in 0.6.0Kurt Jaeger2016-09-048-109/+13
| | | | | | | | | | | | | | | | - Updates to the current revision to 9f7ef8b - Deletes no longer relevant patches - Makes RS show the code revision when GH_TAGNAME is explicitly defined - Changes PORTVERSION to 0.6.0e to reflect the fact that extra commits are added - Bumps PORTREVISION - also fixes the build in C++11 mode (See PR#212365) PR: 210682 Submitted by: Yuri Victorovich <yuri@rawbw.com> (maintainer) Approved by: peter@netkey.at (maintainer) Notes: svn path=/head/; revision=421336
* net-p2p/retroshare: update WWWKurt Jaeger2016-05-271-1/+1
| | | | | | | PR: 207550 Notes: svn path=/head/; revision=415956
* net-p2p/retroshare: 0.5.5c -> 0.6.0Kurt Jaeger2016-05-2125-320/+706
| | | | | | | | | | | | | Changes: https://retroshareteam.wordpress.com/2016/02/07/release-notes-for-final-0-6-0/ - distsite moved to github PR: 207550 Submitted by: w.schwarzenfeld@aon.at, Yuri Victorovich <yuri@rawbw.com>, peter@netkey.at (maintainer) Reviewed by: feld Notes: svn path=/head/; revision=415583
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* Don't lie about having a configure script.Mathieu Arnold2016-04-251-1/+0
| | | | | | | | Reported by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=414007
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-7/+7
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.Koop Mast2014-11-191-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up. This commit removes the old GNOME 2 desktop, bindings and some ports that can't be compiled. A few ports where updated to more recent versions to allow them to compile with this update. Apart from updating ports to newer versions GDM is more integrated with gnome-shell now, and handles several things for the GNOME desktop such as screen locking. If you want to use GNOME 3 via startx, you will have to add your own lock screen/screensaver. For example xscreensaver can be used for sessions started without GDM. Shell Extensions can be installed via https://extensions.gnome.org/ , we have ported a few that can't be installed via this way. The old gnome-utils and gnome-games ports where split up into single ports and where converted to meta-ports. gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but if you use startx you need to do this yourself. Upgrade instructions: Delete the old and conflicting packages: # pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \ guile gcalctool gnome-media libgnomekbd # pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \ evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center For package users the following lines will be enough: # pkg upgrade # pkg install gnome3 For ports users should do the following: # portmaster -a # portmaster x11/gnome3 We are currently aware of two issues. The first issue is a bug in the file monitoring code in the glib20 port. This bug causes glib programs to crash when files in a monitored directory are added or removed. Upstream is aware of the problem, but since the problem is quite complex there is no solution yet. This problem isn't restricted to BSD. The second issue is that on certain video cards totem will display a purple/pink overlay on the video. It not clear yet where the issues comes from. Major thanks goes to Gustau Perez for being a driving force behind getting GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs. This update was also made possible by: Joe Maloney Kris Moore Beeblebrox Ryan Lortie Antoine Jacoutot and everyone I missed Notes: svn path=/head/; revision=372768
* Cleanup plistAntoine Brodin2014-11-121-3/+0
| | | | Notes: svn path=/head/; revision=372503
* - Fix missing library problems when the linker enforces explicit linkingTijl Coosemans2014-08-263-24/+22
| | | | | | | | | PR: 192062 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=366215
* security/libgcrypt: 1.5.3_3 -> 1.6.1Kurt Jaeger2014-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | - Update to 1.6.1 - Remove some unneeded patches - Fix pkg-plist - report configure bug upstream https://bugs.g10code.com/gnupg/issue1668 - report API breakage downstream and find that MacPorts had the same issue https://rt.cpan.org/Ticket/Display.html?id=97201 - bump PORTREVISION for dependent ports (approx. 100 ports) - Thanks to exp-run by antoine@ to find ports that break - patch ports that would otherwise break security/shishi with PR 192164 is already committed [1] devel/ccrtp [2] editors/abiword [3] security/p5-Crypt-GCrypt PR: 191256, 192162 [1], 192163 [2], 192166 [3] Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com> Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit) Notes: svn path=/head/; revision=363436
* - Add USES=libtool to devel/upnp and bump dependent portsTijl Coosemans2014-07-111-0/+1
| | | | | | | | | | - Add USES=pathfix and INSTALL_TARGET=install-strip - Add a patch to fix definitions of ITHREAD_MUTEX_* Approved by: portmgr (implicit, bump unstaged port) Notes: svn path=/head/; revision=361520
* net-p2p/retroshare: update to 0.5.5cWilliam Grzybowski2014-06-207-16/+211
| | | | | | | | | | - Fix build with clang PR: 189806 Submitted by: maintainer Notes: svn path=/head/; revision=358625
* Convert to USES=dos2unixBaptiste Daroussin2014-05-261-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=355288
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* Convert n* to USES=zipBaptiste Daroussin2014-03-101-2/+1
| | | | Notes: svn path=/head/; revision=347778
* - Convert to USES=qmake (and other USES while I'm here)Max Brazhnikov2013-11-221-6/+2
| | | | | | | | | | - Add state support - Convert LIB_DEPENDS to new style, adjust USE_QT4 components, etc. Approved by: portmgr (blanket approval) Notes: svn path=/head/; revision=334586
* net-p2p/retroshare: update to 0.5.5aWilliam Grzybowski2013-11-068-140/+80
| | | | | | | | | | | | - Update to 0.5.5a - Convert lib depends to new format - Allow staging PR: ports/183520 Submitted by: Peter Klett <peter netkey.at> (maintainer) Notes: svn path=/head/; revision=333005
* - Update security/gpgme to 1.4.3Jason E. Hale2013-10-201-1/+1
| | | | | | | | | | | | | | - Use USE_GNOME= ltverhack to correct the library version number to what the author intended. This effectively rolls the version number backwards, but should prevent future unneccesary version bumps. - Support staging - Use options helpers - Use new LIB_DEPENDS syntax - Bump PORTREVISION on dependent ports Notes: svn path=/head/; revision=331057