cf118ccf87
Reported by: lwhsu
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
PORTNAME= swaylock
|
|
DISTVERSION?= 1.5
|
|
PORTREVISION?= 2
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT?= Screen locker for Wayland
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= wayland-protocols>=1.14:graphics/wayland-protocols
|
|
LIB_DEPENDS= libwayland-client.so:graphics/wayland \
|
|
libxkbcommon.so:x11/libxkbcommon
|
|
|
|
CONFLICTS_INSTALL= ${PORTNAME}-*
|
|
|
|
USES= compiler:c11 gnome meson pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT?= swaywm
|
|
USE_GNOME= cairo pango
|
|
PLIST_FILES= "@(,,4755) bin/${PORTNAME}" \
|
|
etc/pam.d/${PORTNAME} \
|
|
share/bash-completion/completions/${PORTNAME} \
|
|
share/fish/vendor_completions.d/${PORTNAME}.fish \
|
|
share/zsh/site-functions/_${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= MANPAGES PIXBUF
|
|
OPTIONS_DEFAULT=MANPAGES PIXBUF
|
|
|
|
MANPAGES_BUILD_DEPENDS= scdoc:textproc/scdoc
|
|
MANPAGES_MESON_ENABLED= man-pages
|
|
MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz
|
|
|
|
PIXBUF_USE= GNOME=gdkpixbuf2
|
|
PIXBUF_MESON_ENABLED= gdk-pixbuf
|
|
|
|
post-patch:
|
|
# Extract (snapshot) version from the port instead of meson.build
|
|
@${REINPLACE_CMD} -i .nogit -e 's/git.found()/false/' \
|
|
-e '/project_version/s/@0@/${DISTVERSIONFULL}/' \
|
|
${WRKSRC}/meson.build
|
|
|
|
.include <bsd.port.mk>
|