Based on PR 38953 from Joel CARNAT. Thanks! Changes since last packaged version: Show correct geometry on mouse resize(FS#203); Fix build issues with simple POSIX shell. Fix focus handling on new window managing with multi monitors (FS#188); Add support for mouse with up to 9 buttons. Fix cache invalidation when swapping clients Fix handling of keycode and keysyms (FS#64) Do not focus new client if current client is maximized (FS#182) Documentation update Fix a bug with UTF-8 strings rendering Fix titlebar map/unmap Allow NULL in command for widgets (FS#175) Documentation update; Store KeySym not KeyCode in keys bindings (FS#161); Fix some drawing problems. Documentation update; Fix placement for maximized apps; Give focus when clicking with Button1 on titlebars; Use mwfact lower and upper limits in mouse; Fix opacity focused issue; Fix focus on arrange for multi head; Allow multiple bindings for mouse events. Support for multiple image format, using Imlib2 (default) or GTK pixbuf (FS#82); Use pango for font display instead of Xft; Better documentation: the documentation is now autogenerated from source code: everything is now in the manpage and will always be (FS#101); awesome-menu: a dmenu clone (FS#7); Support for styles section; mwfact lower and upper limits are configurable (FS#92); widget_tell now allows to change widget properties like colors, etc. (FS#144, FS#36) Errors and warnings messages are more clear and consistent, prefixed with E or W and indicating in which function it fails; Add titlebar support for windows (FS#38); Fix support for SDL apps (you can play Xmoto and Quake); New option for progressbar with ticks (FS#81); New emptybox widget which deprecated padding options of various widgets; New opacity_focused option; Widget graph can grow right/left; Add support for shadowed text (FS#90); Probably more.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2008/07/15 14:31:12 ahoka Exp $
|
|
#
|
|
|
|
DISTNAME= awesome-2.3.2
|
|
CATEGORIES= wm
|
|
MASTER_SITES= http://awesome.naquadah.org/download/
|
|
|
|
MAINTAINER= adam.hoka@gmail.com
|
|
HOMEPAGE= http://awesome.naquadah.org/
|
|
COMMENT= Tiling window manager based on dwm
|
|
|
|
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
|
|
EGDIR= ${PREFIX}/share/examples/awesome
|
|
|
|
USE_LANGUAGES= c99
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= pkg-config
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/awesomerc ${DESTDIR}${EGDIR}
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../devel/confuse/buildlink3.mk"
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../graphics/imlib2/buildlink3.mk"
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.include "../../x11/libXrandr/buildlink3.mk"
|
|
.include "../../x11/libXinerama/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|