Date: Sun, 12 Jan 2020 10:21:42 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522775 - in head/sysutils: . kio-fuse kio-fuse/files Message-ID: <202001121021.00CALgbF006374@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sun Jan 12 10:21:41 2020 New Revision: 522775 URL: https://svnweb.freebsd.org/changeset/ports/522775 Log: [New port] sysutils/kio-fuse: FUSE Interface for KIO 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 Added: head/sysutils/kio-fuse/ head/sysutils/kio-fuse/Makefile (contents, props changed) head/sysutils/kio-fuse/distinfo (contents, props changed) head/sysutils/kio-fuse/files/ head/sysutils/kio-fuse/files/patch-CMakeLists.txt (contents, props changed) head/sysutils/kio-fuse/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jan 12 09:49:29 2020 (r522774) +++ head/sysutils/Makefile Sun Jan 12 10:21:41 2020 (r522775) @@ -557,6 +557,7 @@ SUBDIR += kfloppy SUBDIR += khelpcenter SUBDIR += kiconvtool + SUBDIR += kio-fuse SUBDIR += kldfind SUBDIR += kldpatch SUBDIR += kops Added: head/sysutils/kio-fuse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/kio-fuse/Makefile Sun Jan 12 10:21:41 2020 (r522775) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= kio-fuse +DISTVERSIONPREFIX= v +DISTVERSION= 4.90.0 +CATEGORIES= sysutils kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= FUSE Interface for KIO + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libfuse3.so:sysutils/fusefs-libs3 + +USES= cmake kde:5 pkgconfig qt:5 +USE_KDE= config coreaddons kio service +USE_QT= concurrent core dbus network \ + buildtools_build qmake_build +USE_GITHUB= yes +GH_ACCOUNT= kde + +PLIST_FILES= lib/libexec/kio-fuse \ + share/dbus-1/services/org.kde.KIOFuse.service + +.include <bsd.port.mk> Added: head/sysutils/kio-fuse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/kio-fuse/distinfo Sun Jan 12 10:21:41 2020 (r522775) @@ -0,0 +1,3 @@ +TIMESTAMP = 1578817979 +SHA256 (kde-kio-fuse-v4.90.0_GH0.tar.gz) = c384af233a7d7c78849973ad1d552cd78fbd64f275506ca156d042d1633c3403 +SIZE (kde-kio-fuse-v4.90.0_GH0.tar.gz) = 44446 Added: head/sysutils/kio-fuse/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/kio-fuse/files/patch-CMakeLists.txt Sun Jan 12 10:21:41 2020 (r522775) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2020-01-12 09:41:08 UTC ++++ CMakeLists.txt +@@ -58,7 +58,9 @@ target_compile_definitions(kio-fuse PRIVATE FUSE_USE_V + target_link_options(kio-fuse PRIVATE ${FUSE3_LDFLAGS}) + target_link_libraries(kio-fuse PRIVATE Qt5::Core KF5::KIOCore ${FUSE3_LIBRARIES}) + install(TARGETS kio-fuse DESTINATION ${KDE_INSTALL_FULL_LIBEXECDIR}) +-install(FILES kio-fuse-tmpfiles.conf DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/tmpfiles.d) ++if(LINUX) ++ install(FILES kio-fuse-tmpfiles.conf DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/tmpfiles.d) ++endif() + kdbusaddons_generate_dbus_service_file(kio-fuse org.kde.KIOFuse ${KDE_INSTALL_FULL_LIBEXECDIR}) + + feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) Added: head/sysutils/kio-fuse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/kio-fuse/pkg-descr Sun Jan 12 10:21:41 2020 (r522775) @@ -0,0 +1,9 @@ +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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001121021.00CALgbF006374>