mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
b0aaad873b
- Remove I3 option: i3 has had native EWMH support for a while now so the i3 workarounds are no longer needed with rofi >= 1.2.0 Changes: https://github.com/DaveDavenport/rofi/releases PR: 218397 Approved by: mat (mentor), nomoo@nomoo.ru (maintainer) Differential Revision: https://reviews.freebsd.org/D11437
36 lines
895 B
Makefile
36 lines
895 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rofi
|
|
PORTVERSION= 1.3.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= https://github.com/DaveDavenport/rofi/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= nomoo@nomoo.ru
|
|
COMMENT= Window switcher, run dialog and dmenu replacement
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification \
|
|
libxcb-ewmh.so:x11/xcb-util-wm \
|
|
libxcb-icccm.so:x11/xcb-util-wm \
|
|
libxcb-util.so:x11/xcb-util \
|
|
libxcb-xrm.so:x11/xcb-util-xrm \
|
|
libxkbcommon-x11.so:x11/libxkbcommon
|
|
|
|
USES= gmake pkgconfig shebangfix
|
|
USE_GNOME= cairo pango
|
|
USE_XORG= xcb
|
|
|
|
GNU_CONFIGURE= yes
|
|
SHEBANG_FILES= script/get_git_rev.sh \
|
|
script/rofi-sensible-terminal
|
|
bash_CMD= /bin/sh
|
|
|
|
post-patch:
|
|
# Fix rofi-theme-selector which assumes we have GNU sed
|
|
@${REINPLACE_CMD} 's|$${SED} -i |$${SED} -i "" |' \
|
|
${WRKSRC}/script/rofi-theme-selector
|
|
|
|
.include <bsd.port.mk>
|