From owner-svn-ports-head@freebsd.org Sun Dec 20 16:54:13 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D83F94C68B6; Sun, 20 Dec 2020 16:54:13 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CzTGF5n0hz3Gl5; Sun, 20 Dec 2020 16:54:13 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8E6612E22; Sun, 20 Dec 2020 16:54:13 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BKGsDbF099579; Sun, 20 Dec 2020 16:54:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BKGsBCF099571; Sun, 20 Dec 2020 16:54:11 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012201654.0BKGsBCF099571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 20 Dec 2020 16:54:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558757 - in head: x11 x11-fonts x11-fonts/fcft x11/fuzzel X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: x11 x11-fonts x11-fonts/fcft x11/fuzzel X-SVN-Commit-Revision: 558757 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2020 16:54:13 -0000 Author: jbeich Date: Sun Dec 20 16:54:11 2020 New Revision: 558757 URL: https://svnweb.freebsd.org/changeset/ports/558757 Log: x11/fuzzel: add new port Fuzzel is a Wayland-native application launcher, similar to rofi's 'drun' mode. Features: - Wayland native - Rofi drun-like mode of operation - dmenu mode where newline separated entries are read from stdin - Emacs key bindings - Icons! - Remembers frequently launched applications https://codeberg.org/dnkl/fuzzel Added: head/x11-fonts/fcft/ head/x11-fonts/fcft/Makefile (contents, props changed) head/x11-fonts/fcft/distinfo (contents, props changed) head/x11-fonts/fcft/pkg-descr (contents, props changed) head/x11-fonts/fcft/pkg-plist (contents, props changed) head/x11/fuzzel/ head/x11/fuzzel/Makefile (contents, props changed) head/x11/fuzzel/distinfo (contents, props changed) head/x11/fuzzel/pkg-descr (contents, props changed) Modified: head/x11-fonts/Makefile (contents, props changed) head/x11/Makefile (contents, props changed) Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Sun Dec 20 15:43:59 2020 (r558756) +++ head/x11-fonts/Makefile Sun Dec 20 16:54:11 2020 (r558757) @@ -51,6 +51,7 @@ SUBDIR += fantasque-sans-mono SUBDIR += fanwood SUBDIR += farsifonts + SUBDIR += fcft SUBDIR += fifteen SUBDIR += fira SUBDIR += firacode Added: head/x11-fonts/fcft/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fcft/Makefile Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= fcft +DISTVERSION= 2.3.2 +CATEGORIES= x11-fonts +MASTER_SITES= https://codeberg.org/dnkl/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Simple library for font loading and glyph rasterization + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= tllist>=1.0.1:devel/tllist \ + scdoc:textproc/scdoc +LIB_DEPENDS= libfreetype.so:print/freetype2 \ + libfontconfig.so:x11-fonts/fontconfig + +USES= compiler:c11 meson pkgconfig xorg +USE_LDCONFIG= yes +USE_XORG= pixman +WRKSRC= ${WRKDIR}/${PORTNAME} + +OPTIONS_DEFINE= HARFBUZZ +OPTIONS_DEFAULT=HARFBUZZ + +HARFBUZZ_DESC= HarfBuzz for text shaping +HARFBUZZ_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz +HARFBUZZ_MESON_ENABLED= text-shaping + +.include Added: head/x11-fonts/fcft/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fcft/distinfo Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,3 @@ +TIMESTAMP = 1608296676 +SHA256 (fcft-2.3.2.tar.gz) = 726fdebb1d29bc40c665015666fd9037981c0b4d0ba3ecafa1994053091e7fa8 +SIZE (fcft-2.3.2.tar.gz) = 313133 Added: head/x11-fonts/fcft/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fcft/pkg-descr Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,14 @@ +fcft is a small font loading and glyph rasterization library built +on-top of FontConfig, FreeType2 and pixman. + +It can load and cache fonts from a fontconfig-formatted name string, +e.g. "Monospace:size=12", optionally with user configured fallback fonts. + +After a font has been loaded, you can rasterize glyphs. When doing so, +the primary font is first considered. If it does not have the +requested glyph, the user configured fallback fonts (if any) are +considered. If none of the user configured fallback fonts has the +requested glyph, the FontConfig generated list of fallback fonts are +checked. + +WWW: https://codeberg.org/dnkl/fcft Added: head/x11-fonts/fcft/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fcft/pkg-plist Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,16 @@ +include/fcft/fcft.h +include/fcft/stride.h +lib/libfcft.so +lib/libfcft.so.3 +lib/libfcft.so.3.3.1 +libdata/pkgconfig/fcft.pc +man/man3/fcft_capabilities.3.gz +man/man3/fcft_clone.3.gz +man/man3/fcft_destroy.3.gz +man/man3/fcft_from_name.3.gz +man/man3/fcft_glyph_rasterize.3.gz +man/man3/fcft_grapheme_rasterize.3.gz +man/man3/fcft_kerning.3.gz +man/man3/fcft_precompose.3.gz +man/man3/fcft_set_scaling_filter.3.gz +man/man3/fcft_size_adjust.3.gz Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sun Dec 20 15:43:59 2020 (r558756) +++ head/x11/Makefile Sun Dec 20 16:54:11 2020 (r558757) @@ -71,6 +71,7 @@ SUBDIR += flruler SUBDIR += fpc-x11 SUBDIR += fstobdf + SUBDIR += fuzzel SUBDIR += gdm SUBDIR += glcapsviewer SUBDIR += gmrun Added: head/x11/fuzzel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/fuzzel/Makefile Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,41 @@ +# $FreeBSD$ + +PORTNAME= fuzzel +DISTVERSION= 1.4.2 +CATEGORIES= x11 +MASTER_SITES= https://codeberg.org/dnkl/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ + +PATCH_SITES= https://github.com/jbeich/${PORTNAME}/commit/ +PATCHFILES+= d0ce4f2081a5.patch:-p1 # memfd_create +PATCHFILES+= 7637fdf4133b.patch:-p1 # _POSIX_C_SOURCE +PATCHFILES+= 816d7e5c06a3.patch:-p1 # epoll-shim + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Application launcher for wlroots-based Wayland compositors + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= tllist>=1.0.1:devel/tllist \ + wayland-protocols>0:graphics/wayland-protocols \ + scdoc:textproc/scdoc +LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ + libwayland-client.so:graphics/wayland \ + libfcft.so:x11-fonts/fcft \ + libxkbcommon.so:x11/libxkbcommon + +USES= compiler:c11 gnome meson pkgconfig xorg +USE_GNOME= cairo librsvg2 +USE_XORG= pixman +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz \ + share/zsh/site-functions/_${PORTNAME} + +# XXX Drop after FreeBSD 12.1 EOL +.if exists(/usr/lib/clang/8.0.1) +# prompt.c:45:21: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces] +CFLAGS+= -Wno-error=missing-braces +.endif + +.include Added: head/x11/fuzzel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/fuzzel/distinfo Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,9 @@ +TIMESTAMP = 1597681217 +SHA256 (fuzzel-1.4.2.tar.gz) = e4acd9afa299abd0a1995f85ffd13b05648178d71326aa1c749187f113de4817 +SIZE (fuzzel-1.4.2.tar.gz) = 77698 +SHA256 (d0ce4f2081a5.patch) = 401477768a8f7a1ca7987062152de691d58d46ebf46bd89c3ec26c661dc02289 +SIZE (d0ce4f2081a5.patch) = 2222 +SHA256 (7637fdf4133b.patch) = 8b4a8462bd191ab8bf0578d73554059d52337ba401d744ab55eeb4734266e126 +SIZE (7637fdf4133b.patch) = 2728 +SHA256 (816d7e5c06a3.patch) = 4f3a48b85fd249eea0e08b842a0536c97a6db22aafb7fd9dc2559f78258a0a8b +SIZE (816d7e5c06a3.patch) = 2594 Added: head/x11/fuzzel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/fuzzel/pkg-descr Sun Dec 20 16:54:11 2020 (r558757) @@ -0,0 +1,12 @@ +Fuzzel is a Wayland-native application launcher, similar to rofi's +"drun" mode. + +Features: +- Wayland native +- Rofi drun-like mode of operation +- dmenu mode where newline separated entries are read from stdin +- Emacs key bindings +- Icons! +- Remembers frequently launched applications + +WWW: https://codeberg.org/dnkl/fuzzel