2ab5ea23e4
* Avoid a free on an uninitialized variable by setting optval to NULL. * Fix fparseln flags to remove escape characters in the result. * Fix issue where rapid window crossing events might get ignored. * Validate bound spawn programs after conf is loaded. * Fix move/resize to bail if the window gets destroyed. * Fix bar clock not getting updated during periods of inactivity. Ok aja@
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.6 2012/12/04 16:39:54 gonzalo Exp $
|
|
|
|
COMMENT= small tiling window manager
|
|
|
|
SHARED_LIBS= swmhack 1.0
|
|
|
|
DISTNAME= spectrwm-2.1.1
|
|
EXTRACT_SUFX= .tgz
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= https://opensource.conformal.com/wiki/spectrwm
|
|
MAINTAINER= Gonzalo L. R. <gonzalo@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += X11 X11-xcb Xcursor Xft c util xcb xcb-aux xcb-icccm
|
|
WANTLIB += xcb-keysyms xcb-randr xcb-xtest
|
|
|
|
MASTER_SITES= http://opensource.conformal.com/snapshots/spectrwm/
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
RUN_DEPENDS= x11/dmenu>=4.5
|
|
|
|
MAKE_FLAGS= BINDIR="${TRUEPREFIX}/bin" \
|
|
MANDIR="${TRUEPREFIX}/man/man" \
|
|
SHLIB_MAJOR=${LIBswmhack_VERSION:R} \
|
|
SHLIB_MINOR=${LIBswmhack_VERSION:E}
|
|
|
|
pre-configure:
|
|
@${SUBST_CMD} ${WRKSRC}/spectrwm.c
|
|
|
|
post-install:
|
|
ln -s ${TRUEPREFIX}/bin/spectrwm ${PREFIX}/bin/scrotwm
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/spectrwm
|
|
${INSTALL_SCRIPT} ${WRKSRC}/baraction.sh ${PREFIX}/share/examples/spectrwm
|
|
${INSTALL_SCRIPT} ${WRKSRC}/initscreen.sh ${PREFIX}/share/examples/spectrwm
|
|
${INSTALL_SCRIPT} ${WRKSRC}/screenshot.sh ${PREFIX}/share/examples/spectrwm
|
|
${INSTALL_DATA} ${WRKSRC}/spectrwm.conf ${PREFIX}/share/examples/spectrwm
|
|
|
|
.for i in es cz fr fr_ch se us
|
|
${INSTALL_DATA_DIR} ${WRKSRC}/spectrwm_$i.conf
|
|
mv ${WRKSRC}/spectrwm_$i.conf ${PREFIX}/share/examples/spectrwm
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|