* complete rewrite using xcb * 100% backwards compatible * way more responsive and snappy * Tons of warts fixed * cygwin works again * xft fonts * Added support for Xcursor. * Fixed several fullscreen layout issues. * Improved focus handling so related windows are raised when appropriate. * Fixed several focus issues. * Fixed several issues that could cause segfaults. * Fixed startup issue where certain windows might not get managed. * Fixed delay when moving/resizing windows via keyboard. * Fix scan_xrandr to fallback when a scan results in no new regions. * Add tilde ~ expansion to autorun command in the config. Tested on amd64 and zaurus. Ok kili@ portswise (i didn't test it)
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.4 2012/09/05 20:33:43 gonzalo Exp $
|
|
|
|
COMMENT= small tiling window manager
|
|
|
|
SHARED_LIBS= swmhack 1.0
|
|
|
|
DISTNAME= spectrwm-2.0.2
|
|
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.4.1
|
|
|
|
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>
|