pkgsrc/wm/ion/Makefile

46 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.36 2009/05/20 00:58:29 wiz Exp $
#
DISTNAME= ion-2-20040729
PKGNAME= ${DISTNAME:S/-2-/-/}
PKGREVISION= 7
CATEGORIES= wm x11
MASTER_SITES= http://iki.fi/tuomov/dl/archives/
MAINTAINER= cube@NetBSD.org
HOMEPAGE= http://modeemi.fi/~tuomov/ion/
COMMENT= Keyboard friendly tiling window manager
Update to version 20040407. Enable pkgviews installation and make good use of PKG_SYSCONFDIR. Thanks to Amitai Schlair. Changes: * Added a kludge to deal with waitrelease when modifiers have already been released. * Fixed assert-crash when attempting to split a frame not managed by a WIonWS. * Don't put input method failure complaints in startup error log. * Client window unmap handling fixes (?). * Made drawing engine objects inheritable and initialisation code reusable. * Improvements and fixes in keyboard mapping changes handling. * Slightly reduce flicker with apps that update title too often by removing a redundant change notify call. * Added a check in layout loading code to detect corrupt files with multiple instances of the same client window. * Updated Mozilla Firebird entries in menu configuration files to Mozilla Firefox. * Added important missing function WFloatWS.attach. * Take gravity better into account when reparenting windows on exit. * Made some goto_* routines return the region that will be focused and added asynchronity notices in documentation. * Some tab drag&drop fixes. * Startup errorlog display fixed when we didn't even open the display. * WIonWS load routines better handle corrupt sizes in layout savefile. * Object/proxy cache references to proxies weren't being cleared when objects were destroyed. * Added exported function to get line editor 'mark'. * Man pages fixes * Fixed toggle_tab on floatframes. * Move/resize display was never showing position. * Completions display wasn't being refreshed, if its size wasn't changed between completions. * Oops, warping on workspace switch had been broken at some point. * Some autoconf script portability and other fixes. * The function floatws_current was not being exported as WFloatWS.current. * Client window focusing routine was not setting "awaiting focus" status. * Removed superfluous debugging message. * querylib.query_renameworkspace documentation was out-of-date. * Mod1+Enter full screen toggle was not mentioned on the manual page.
2004-05-06 06:38:45 +02:00
PKG_INSTALLATION_TYPES= overwrite pkgviews
PKG_DESTDIR_SUPPORT= user-destdir
Update to version 20040407. Enable pkgviews installation and make good use of PKG_SYSCONFDIR. Thanks to Amitai Schlair. Changes: * Added a kludge to deal with waitrelease when modifiers have already been released. * Fixed assert-crash when attempting to split a frame not managed by a WIonWS. * Don't put input method failure complaints in startup error log. * Client window unmap handling fixes (?). * Made drawing engine objects inheritable and initialisation code reusable. * Improvements and fixes in keyboard mapping changes handling. * Slightly reduce flicker with apps that update title too often by removing a redundant change notify call. * Added a check in layout loading code to detect corrupt files with multiple instances of the same client window. * Updated Mozilla Firebird entries in menu configuration files to Mozilla Firefox. * Added important missing function WFloatWS.attach. * Take gravity better into account when reparenting windows on exit. * Made some goto_* routines return the region that will be focused and added asynchronity notices in documentation. * Some tab drag&drop fixes. * Startup errorlog display fixed when we didn't even open the display. * WIonWS load routines better handle corrupt sizes in layout savefile. * Object/proxy cache references to proxies weren't being cleared when objects were destroyed. * Added exported function to get line editor 'mark'. * Man pages fixes * Fixed toggle_tab on floatframes. * Move/resize display was never showing position. * Completions display wasn't being refreshed, if its size wasn't changed between completions. * Oops, warping on workspace switch had been broken at some point. * Some autoconf script portability and other fixes. * The function floatws_current was not being exported as WFloatWS.current. * Client window focusing routine was not setting "awaiting focus" status. * Removed superfluous debugging message. * querylib.query_renameworkspace documentation was out-of-date. * Mod1+Enter full screen toggle was not mentioned on the manual page.
2004-05-06 06:38:45 +02:00
USE_LIBTOOL= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
INSTALL_MAKE_FLAGS= INST_ETCDIR=${EGDIR:Q}
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
Update to version 20040407. Enable pkgviews installation and make good use of PKG_SYSCONFDIR. Thanks to Amitai Schlair. Changes: * Added a kludge to deal with waitrelease when modifiers have already been released. * Fixed assert-crash when attempting to split a frame not managed by a WIonWS. * Don't put input method failure complaints in startup error log. * Client window unmap handling fixes (?). * Made drawing engine objects inheritable and initialisation code reusable. * Improvements and fixes in keyboard mapping changes handling. * Slightly reduce flicker with apps that update title too often by removing a redundant change notify call. * Added a check in layout loading code to detect corrupt files with multiple instances of the same client window. * Updated Mozilla Firebird entries in menu configuration files to Mozilla Firefox. * Added important missing function WFloatWS.attach. * Take gravity better into account when reparenting windows on exit. * Made some goto_* routines return the region that will be focused and added asynchronity notices in documentation. * Some tab drag&drop fixes. * Startup errorlog display fixed when we didn't even open the display. * WIonWS load routines better handle corrupt sizes in layout savefile. * Object/proxy cache references to proxies weren't being cleared when objects were destroyed. * Added exported function to get line editor 'mark'. * Man pages fixes * Fixed toggle_tab on floatframes. * Move/resize display was never showing position. * Completions display wasn't being refreshed, if its size wasn't changed between completions. * Oops, warping on workspace switch had been broken at some point. * Some autoconf script portability and other fixes. * The function floatws_current was not being exported as WFloatWS.current. * Client window focusing routine was not setting "awaiting focus" status. * Removed superfluous debugging message. * querylib.query_renameworkspace documentation was out-of-date. * Mod1+Enter full screen toggle was not mentioned on the manual page.
2004-05-06 06:38:45 +02:00
PKG_SYSCONFSUBDIR= ion
EGDIR= ${PREFIX}/share/examples/ion
EGFILES= floatws.lua ion-bindings.lua ion-menus.lua \
ion.lua ionws.lua kludges.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 menu.lua \
query.lua draw.lua pwm.lua pwm-bindings.lua \
pwm-menus.lua dock.lua dock-draw.lua
.for f in ${EGFILES}
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
.endfor
2006-08-15 00:37:57 +02:00
INSTALLATION_DIRS= bin lib/ion libexec/ion ${PKGMANDIR}/man1
Update to version 20040407. Enable pkgviews installation and make good use of PKG_SYSCONFDIR. Thanks to Amitai Schlair. Changes: * Added a kludge to deal with waitrelease when modifiers have already been released. * Fixed assert-crash when attempting to split a frame not managed by a WIonWS. * Don't put input method failure complaints in startup error log. * Client window unmap handling fixes (?). * Made drawing engine objects inheritable and initialisation code reusable. * Improvements and fixes in keyboard mapping changes handling. * Slightly reduce flicker with apps that update title too often by removing a redundant change notify call. * Added a check in layout loading code to detect corrupt files with multiple instances of the same client window. * Updated Mozilla Firebird entries in menu configuration files to Mozilla Firefox. * Added important missing function WFloatWS.attach. * Take gravity better into account when reparenting windows on exit. * Made some goto_* routines return the region that will be focused and added asynchronity notices in documentation. * Some tab drag&drop fixes. * Startup errorlog display fixed when we didn't even open the display. * WIonWS load routines better handle corrupt sizes in layout savefile. * Object/proxy cache references to proxies weren't being cleared when objects were destroyed. * Added exported function to get line editor 'mark'. * Man pages fixes * Fixed toggle_tab on floatframes. * Move/resize display was never showing position. * Completions display wasn't being refreshed, if its size wasn't changed between completions. * Oops, warping on workspace switch had been broken at some point. * Some autoconf script portability and other fixes. * The function floatws_current was not being exported as WFloatWS.current. * Client window focusing routine was not setting "awaiting focus" status. * Removed superfluous debugging message. * querylib.query_renameworkspace documentation was out-of-date. * Mod1+Enter full screen toggle was not mentioned on the manual page.
2004-05-06 06:38:45 +02:00
INSTALLATION_DIRS+= share/doc/ion share/examples/ion share/ion
.include "../../devel/libltdl/buildlink3.mk"
2007-02-01 23:47:39 +01:00
.include "../../lang/lua/buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXinerama/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"