84be692f90
Most noticeable changes (there's more than one year worth of them, anyway): * Potentially blocking status meters are now in a separate ion-statusd program. Please write your additional status meters that do not monitor the state of Ion itself for ion-statusd (and contribute them in the Ion3 scripts repository at http://iki.fi/tuomov/repos/ion-scripts-3/). For help on writing such status meters, see e.g. source for statusd_load in ext_statusbar/ion-statusd. * Line editor now supports history search; Control+Up/Down only scrolls through history entries with matching initial part. * Arbitrary winprop matching criteria is supported. Lua scripts have access to X properties. * So-called "placeholders". With the help of these the positions of full-screen windows are remembered in their original frames, and don't just get inserted after currently active window when returning from full-screen mode. Under a session manager placeholders are also used to remember the original order of windows. * Experimental auto-show-completions support, which is also on by default now. In this mode the Tab key can be used to cycle forward through the completions, and Shift+Tab backwards. Modify the settings seen in the new mod_query.lua to get normal Tab-completion, or change the completion delay.
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2006/02/11 10:03:48 cube Exp $
|
|
#
|
|
|
|
DISTNAME= ion-3ds-20060107
|
|
PKGNAME= ${DISTNAME:S/-3ds-/3-/}
|
|
CATEGORIES= wm x11
|
|
MASTER_SITES= http://modeemi.cs.tut.fi/~tuomov/ion/dl/
|
|
|
|
MAINTAINER= cube@NetBSD.org
|
|
HOMEPAGE= http://iki.fi/~tuomov/ion/
|
|
COMMENT= Keyboard friendly tiling window manager
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_PKGLOCALEDIR= YES
|
|
BUILD_USES_MSGFMT= YES
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ENV+= PKGLOCALEDIR=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
|
|
PKG_SYSCONFSUBDIR= ion3
|
|
EGDIR= ${PREFIX}/share/examples/ion3
|
|
EGFILES= cfg_bindings.lua cfg_dock.lua cfg_floatws.lua \
|
|
cfg_ion.lua cfg_ionws.lua cfg_kludges.lua \
|
|
cfg_menu.lua cfg_menus.lua cfg_panews.lua \
|
|
cfg_pwm.lua cfg_pwm_bindings.lua \
|
|
cfg_pwm_menus.lua cfg_query.lua cfg_sp.lua \
|
|
cfg_statusbar.lua \
|
|
dock-draw.lua look.lua look_brownsteel.lua \
|
|
look_clean.lua look_cleanios.lua \
|
|
look_cleanviolet.lua look_dusky.lua \
|
|
look_greyviolet.lua look_ios.lua \
|
|
look_simpleblue.lua look_wheat2.lua \
|
|
lookcommon_clean.lua lookcommon_emboss.lua
|
|
.for f in ${EGFILES}
|
|
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|