aboutsummaryrefslogtreecommitdiff
path: root/sysutils/kio-fuse
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update sysutils/kio-fuse to latest upstream releaseAdriaan de Groot2021-03-252-4/+4
| | | | | | | | | | | | There's no notes for this release, but a handful of bugfix commits in the repository and an announcement can be found on the kde-announce-apps mailing list. Our local patches have been submitted upstream as a MR, hopefully they will become unnecessary in a future release. Notes: svn path=/head/; revision=569196
* Fix up -descr and -message for sysutils/kio-fuseAdriaan de Groot2021-02-122-3/+13
| | | | Notes: svn path=/head/; revision=565032
* Update sysutils/kio-fuse to latest upstream releaseAdriaan de Groot2021-02-126-36/+63
| | | | | | | | | | | | | | kio-fuse does some FUSE magic to pass remote KIO paths (e.g. when browsing SMB or ftp from Dolphin) to non-KIO-aware applications (e.g. opening a text file with vi). This 5.0.0 release has been out for a while and is functionally equivalent to the previous one; now, however, there's real release tarballs and everything. Existing patches have been re-built for this release and then submitted upstream, which is why they now have git-hashes. Notes: svn path=/head/; revision=565031
* sysutils/kio-fuse: convert to USES=fuseTobias C. Berner2020-12-111-3/+1
| | | | | | | | PR: 251763 Submitted by: jbeich Notes: svn path=/head/; revision=557759
* sysutils/kio-fuse: fix build on GCC architecturesPiotr Kubaj2020-06-051-0/+12
| | | | | | | | | | | | | | | ENODATA is not defined on GCC systems: /wrkdirs/usr/ports/sysutils/kio-fuse/work/kio-fuse-4.95.0/kiofusevfs.cpp: In static member function 'static int KIOFuseVFS::kioErrorToFuseError(int)': /wrkdirs/usr/ports/sysutils/kio-fuse/work/kio-fuse-4.95.0/kiofusevfs.cpp:2323:55: error: 'ENODATA' was not declared in this scope 2323 | case KIO::ERR_NO_CONTENT : return ENODATA; Guard it behind ifdef. PR: 247009 Approved by: tcberner (maintainer) Notes: svn path=/head/; revision=538056
* Update sysutils/kio-fuse to latest upstreamAdriaan de Groot2020-05-264-37/+14
| | | | | | | | | | These are progressive betas, basically; this release drops Boost from the dependencies. Reported by: portscout Notes: svn path=/head/; revision=536630
* sysutils/kio-fuse: Fix buildAdriaan de Groot2020-02-082-3/+18
| | | | | | | | | | | | | | | While boost is an implicit dependency, make it explicit for the sake of the patch added in r525170. Also, on amd64 &c, wherever Boost headers end up isn't automatically in the C++ header search path, so find Boost in CMake and use those headers. Pointy hat: adridg (for approving the previous "fix") Reported by: fallout Notes: svn path=/head/; revision=525554
* sysutils/kio-fuse: fix build on GCC architecturesPiotr Kubaj2020-02-042-1/+12
| | | | | | | | | | | | As usual, C++11 compiler is necessary. Another issue is that ENODATA is not defined on GCC systems. Include boost/cerrno.hpp (boost is already indirect dependency) to have this macro. PR: 243870 Approved by: adridg (maintainer) Notes: svn path=/head/; revision=525170
* [New port] sysutils/kio-fuse: FUSE Interface for KIOTobias C. Berner2020-01-124-0/+51
KioFuse allows you to mount remote directories into the root hierarchy of your local file system, thereby exposing KDE's advanced access capabilities (SSH, SAMBA/Windows, FTP, TAR/GZip/BZip2, WebDav, etc) to POSIX-compliant applications such as Firefox, OpenOffice, GNOME apps, shell utilities and more. KioFuse works by acting as a bridge between KDE's KIO filesystem design and FUSE. WWW: https://github.com/KDE/kio-fuse Notes: svn path=/head/; revision=522775