2d82895f79
way. This makes chrome (and probably other apps, too) receive changes of the _NET_ACTIVE_WINDOW and thus show its bookmark dialog properly (upstream git commit 4f26d6f2a1a0efb7fa15999f9cc00d8673220e97) Bugfix: only ignore EnterNotify events after UnmapNotifies from managed windows. This fixes some focus follows mouse problems (upstream git commit 47fd15649ad63f3becef8870276e51c6214300fc) Bugfix: force a new sequence number after UnmapNotify. This fixes the problem where legitimate EnterNotify arrived with the same sequence as the UnmapNotify and was ignored (upstream git commit 7a4d8ed6ed67c4d0d958458f58e4db1598c9cd75) Bugfix: position floating windows exactly where their geometry specified (upstream git commit cb4c9b9d27a095047a5ac22ae75f6ee17475ba18) Bugfix: fix coordinates when the rect of an output changes (upstream git commit 077d2433a7186550ee349284b1849ec2048af69c)
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.25 2012/01/25 10:29:30 dcoppa Exp $
|
|
|
|
COMMENT = improved dynamic tiling window manager
|
|
|
|
DISTNAME = i3-4.1.1
|
|
REVISION = 2
|
|
CATEGORIES = x11
|
|
|
|
EXTRACT_SUFX = .tar.bz2
|
|
HOMEPAGE = http://i3wm.org/
|
|
MASTER_SITES = ${HOMEPAGE}/downloads/
|
|
MAINTAINER = David Coppa <dcoppa@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += X11 Xcursor c ev m xcb xcb-atom xcb-aux
|
|
WANTLIB += xcb-event xcb-icccm xcb-keysyms
|
|
WANTLIB += xcb-property xcb-randr xcb-xinerama yajl
|
|
WANTLIB += pcre startup-notification-1
|
|
|
|
MODULES = converters/libiconv
|
|
LIB_DEPENDS = devel/libev \
|
|
devel/libyajl>=2.0.0 \
|
|
devel/pcre \
|
|
devel/startup-notification
|
|
BUILD_DEPENDS = devel/bison \
|
|
devel/flex
|
|
RUN_DEPENDS = x11/dmenu
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.if defined(DEBUG)
|
|
MAKE_FLAGS += DEBUG=1
|
|
.endif
|
|
|
|
FAKE_FLAGS = PREFIX=${PREFIX} \
|
|
SYSCONFDIR=${PREFIX}/share/examples \
|
|
INSTALL_DATA="${INSTALL_DATA}" \
|
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
INSTALL_SCRIPT="${INSTALL_SCRIPT}"
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/i3.config \
|
|
${WRKSRC}/i3.config.keycodes \
|
|
${WRKSRC}/src/cfgparse.y \
|
|
${WRKSRC}/src/config.c
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKBUILD}/{i3bar/doc,man}/*.1 \
|
|
${PREFIX}/man/man1/
|
|
${SUBST_CMD} -o ${SHAREOWN} -g ${SHAREGRP} \
|
|
-c ${WRKBUILD}/man/i3-config-wizard.1 \
|
|
${PREFIX}/man/man1/i3-config-wizard.1
|
|
${SUBST_CMD} -o ${SHAREOWN} -g ${SHAREGRP} \
|
|
-c ${WRKBUILD}/man/i3.1 \
|
|
${PREFIX}/man/man1/i3.1
|
|
@rm -f ${PREFIX}/man/man1/i3-wsbar.1 \
|
|
${PREFIX}/man/man1/i3-sensible*.1
|
|
|
|
.include <bsd.port.mk>
|