freebsd-ports/x11-wm/river/Makefile

81 lines
2.4 KiB
Makefile
Raw Normal View History

PORTNAME= river
DISTVERSIONPREFIX= v
DISTVERSION= 0.2.4
2022-07-01 10:00:55 +02:00
CATEGORIES= x11-wm wayland
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Dynamic tiling Wayland compositor
WWW= https://github.com/riverwm/river
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
x11-wm/river: unbreak build after 5d998836b36f ./river/c.zig:18:20: error: C import failed pub usingnamespace @cImport({ ^ ./zig-cache/o/daef1847f9aadef85fa78182104dcc98/cimport.h:4:10: note: 'linux/input-event-codes.h' file not found ^ ./river/Cursor.zig:173:14: error: container 'c' has no member called 'setenv' if (c.setenv("XCURSOR_SIZE", size_str, 1) < 0) return error.OutOfMemory; ^ ./river/Cursor.zig:124:5: note: referenced here try self.setTheme(null, null); ^ ./river/Seat.zig:105:5: note: referenced here try self.cursor.init(self); ^ ./river/InputManager.zig:131:5: note: referenced here try seat_node.data.init(default_seat_name); ^ ./river/Server.zig:121:5: note: referenced here try self.input_manager.init(); ^ ./river/main.zig:97:5: note: referenced here try server.init(); ^ ./river/InputConfig.zig:291:11: error: container 'c' has no member called 'libinput_device' *c.libinput_device, ^ ./river/command/input.zig:200:22: error: container 'c' has no member called 'libevdev_event_code_from_name' const ret = c.libevdev_event_code_from_name(c.EV_KEY, args[3]); ^ ./river/command/input.zig:116:30: error: container 'c' has no member called 'libevdev_event_code_get_name' mem.sliceTo(c.libevdev_event_code_get_name(c.EV_KEY, scroll_button.button), 0), ^ ./river/command/map.zig:158:25: error: container 'c' has no member called 'libevdev_event_code_from_name' const event_code = c.libevdev_event_code_from_name(c.EV_KEY, name); ^ ./river/command/map.zig:85:24: note: referenced here const event_code = try parseEventCode(allocator, args[3], out); ^ ./river/command/spawn.zig:44:14: error: container 'c' has no member called 'setsid' if (c.setsid() < 0) unreachable; ^ Pointy hat to: manu
2021-11-10 10:24:08 +01:00
BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto \
wayland-protocols>0:graphics/wayland-protocols \
wlroots>=0.16.0:x11-toolkits/wlroots \
zig>=0.10.0:lang/zig
LIB_DEPENDS= libevdev.so:devel/libevdev \
libwayland-server.so:graphics/wayland \
libwlroots.so:x11-toolkits/wlroots \
libinput.so:x11/libinput \
libxkbcommon.so:x11/libxkbcommon
USES= pkgconfig xorg
USE_GITHUB= yes
USE_XORG= pixman
GH_ACCOUNT= riverwm
GH_TUPLE= ifreund:zig-pixman:4a49ba1:zig_pixman/deps/zig-pixman \
ifreund:zig-wayland:ace6aee:zig_wayland/deps/zig-wayland \
ifreund:zig-xkbcommon:bfd1f97:zig_xkbcommon/deps/zig-xkbcommon \
swaywm:zig-wlroots:04bcd67:zig_wlroots/deps/zig-wlroots
MAKE_ENV= DESTDIR="${STAGEDIR}"
CONFIGURE_ARGS= --prefix "${PREFIX}" \
${WITH_DEBUG:D:U-Drelease-fast} \
${WITH_PIE:D-Dpie} \
${STRIP:C/.+/-Dstrip/} \
-Dcpu=${CPUTYPE:Ubaseline} \
--verbose
NO_INSTALL= yes # strip(1) breaks runtime
PLIST_FILES= bin/${PORTNAME} \
bin/${PORTNAME}ctl \
bin/${PORTNAME}tile \
libdata/pkgconfig/${PORTNAME}-protocols.pc \
share/${PORTNAME}-protocols/${PORTNAME}-layout-v3.xml \
share/bash-completion/completions/${PORTNAME}ctl \
share/fish/vendor_completions.d/${PORTNAME}ctl.fish \
share/zsh/site-functions/_${PORTNAME}ctl \
${NULL}
# https://github.com/ziglang/zig/issues/12170 (pixman)
MAKE_ENV+= PKG_CONFIG_SYSTEM_LIBRARY_PATH="${LOCALBASE}/lib"
OPTIONS_DEFINE= MANPAGES X11
OPTIONS_DEFAULT=MANPAGES X11
MANPAGES_BUILD_DEPENDS= scdoc:textproc/scdoc
MANPAGES_CONFIGURE_ON= -Dman-pages=true
MANPAGES_CONFIGURE_OFF= -Dman-pages=false
MANPAGES_PLIST_FILES= share/man/man1/${PORTNAME}.1.gz \
share/man/man1/${PORTNAME}ctl.1.gz \
share/man/man1/${PORTNAME}tile.1.gz \
${NULL}
X11_CONFIGURE_ON= -Dxwayland=true
X11_CONFIGURE_OFF= -Dxwayland=false
post-patch:
# Respect devel/pkgconf default search
@${REINPLACE_CMD} -e '/pkgconfig/s/share/libdata/' \
${WRKSRC}/build.zig
# Respect PREFIX in path references
@${REINPLACE_CMD} -e 's,/usr,${LOCALBASE},' \
${WRKSRC}/doc/${PORTNAME}ctl.1.scd
do-build:
@(cd ${WRKSRC} && ${MAKE_ENV} zig build ${CONFIGURE_ARGS})
do-test:
@(cd ${WRKSRC} && ${TEST_ENV} zig build test ${CONFIGURE_ARGS})
.include <bsd.port.mk>