962324299f
Changes in beta release 2.5.14 (24-Aug-2005) * New features: - Fvwm now officially supports 64-bit architertures. - New Test conditions EnvIsSet, EnvMatch, EdgeHasPointer and EdgeIsActive. - New window condition FixedPosition. * New module features: - FvwmPerl module supports window context when preprocessing. - FvwmPerl module accepts new --export option that by default defines two fvwm functions "Eval" and ".", to be used like: FvwmPerl -x Eval $a = $[desk.n] - 2; cmd("GotoDesk 0 $a") if $a >= 0 . Exec xmessage %{2 + cos(0)}% # embedded calculator - New FvwmProxy option ProxyIconified. - New FvwmTaskBar option Pad to control the gap between buttons. * Bug Fixes: - Fixed a Solaris compiler error introduced in 2.5.13. - Fixed a hang with layers set by applications (e.g. AbiWord). - GotoDesk with a relative page argument now wraps around at the end of the given range as documented. (Bug #1396). - PopupDelayed menu style option was not copied on CopyMenuStyle. - Transparent Animated menus with non-transparent popup were not animated correctly. - Supported euc-jp class of encodings. - A window's default layer is no longer set to 0 durin a restart. - Fixed an annoying MouseFocus/SloppyFocus problem in conjunction with EdgeResistance + EdgeScroll (sometimes a window did noit get the focus as it should have). This problem first occured in 2.5.11. ------------------------------------------------------------------- Changes in beta release 2.5.13 (16-Jul-2005) * Bug Fixes: - The MoveToPage command did not work without arguments in 2.5.11 and 2.5.12. - Mouse/Key command no args possible core dump. - Direction with no args possible core dump. - FvwmScript periodic tasks run too often. - Perl modules did not work on 64 machines. - FvwmDebug did not report any extended messages. - fvwm-menu-desktop supports mandriva. - fvwm-menu-desktop when verifying executable, allow full path. * New module features: - FvwmIconMan: MaxButtonWidth and MaxButtonWidthByColumns options. - FvwmIconMan: added tool tips with Tips, TipsDelays, TipsFont, TipsColorset, TipsFormat, TipsBorderWidth, TipsPlacement, TipsJustification and TipsOffsets options. - FvwmButtons: PressColorset & ActiveColorset options for _individual_ buttons.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2005/10/29 23:45:02 epg Exp $
|
|
|
|
DISTNAME= fvwm-2.5.14
|
|
PKGNAME= ${DISTNAME:S/fvwm/&-devel/}
|
|
CATEGORIES= x11 wm
|
|
MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= epg@NetBSD.org
|
|
HOMEPAGE= http://www.fvwm.org/
|
|
COMMENT= Development version of X11 Virtual window manager
|
|
|
|
CONFLICTS= fvwm-[0-9]* fvwm1-[0-9]* fvwm2-[0-9]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_PKGLOCALEDIR= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_GNU_READLINE= YES
|
|
|
|
CONFIGURE_ARGS+= --disable-bidi
|
|
CONFIGURE_ARGS+= --without-gnome
|
|
CONFIGURE_ARGS+= --without-rplay-library
|
|
CONFIGURE_ARGS+= --without-stroke-library
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/fvwm
|
|
cd ${WRKSRC}/sample.fvwmrc && ${INSTALL_DATA} \
|
|
`${LS} | ${GREP} -v Makefile` \
|
|
${PREFIX}/share/examples/fvwm
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../fonts/Xft2/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/xpm/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|