8c5d26c940
- Fixed a bug that crashed wmaker when closing a window if multiple screens were managed by wmaker - Fixed a problem that crashed wmaker when trying to read an unexisting WMState.<number> file on multihead system - Fixed problem with keyboard shortcuts executed an every screen for multihead systems - Updated traditional chinese translations - Fixed buglet in non-caching rootmenu option - Added Malay translation - Fixed problem with kcalc not having a miniaturize button - Added "Hide Others" to the window menu - Fixed text in info panel for multibyte - Separated the font caches for normal fonts and fontsets in WINGs (they can have the same names and collide in the cache giving unwanted results) - Fixed Legal Panel not to display rectangles in place of new lines - Fixed problem with losing focus when changing to an empty workspace and back - Fixed another focus related problem when changing workspaces - Fixed problem with saving session when shared appicon is enabled (not all instances were saved in the session, only one per shared appicon) - Added support for the ukrainian language in wsetfont - Fixed a bug that crashed Window Maker when setting the "Emulate AppIcon" option for a window using the window Inspector - Let XRender transparent window be see-through to desktop - Added Greek (el) language pixmap - Fixes icons being reduced twice when icon size != 64x64 - Fixed a bug that crashed wmaker when selecting the "Start alternate window manager" option in the crashing dialog panel - Window Maker will now use the WINDOWMAKER_ALT_WM environment variable (if it is defined) to overwrite the default hardcoded fallback window manager - Fixed marks for menu entries to be grayed as the text for disabled entries - Fixed Clip's "Autoraise" option to be marked as disabled when the "Keep on Top" option is active - Added ability to browse for files/directories in the WPrefs menu editor - Added Czech translations of documentation - Fixed segfault with incomplete WM_CLASS specifications - Fixed a bug about arranging subviews in a WMBox after removing a subview and a memleak occuring in the same situation - Fixed a bug in wdread - Fixed bug with windows that have WM_HINTS.take_focus = False. These windows will not receive focus at all - Fixed a buffer overflow in winmenu.c
88 lines
2.8 KiB
Makefile
88 lines
2.8 KiB
Makefile
# $NetBSD: Makefile,v 1.27 2002/08/25 21:50:49 mjl Exp $
|
|
|
|
VERS= 0.80.1
|
|
DISTNAME= WindowMaker-${VERS}
|
|
PKGNAME= windowmaker-${VERS}
|
|
# PKGREVISION= 1
|
|
CATEGORIES= x11 wm
|
|
MASTER_SITES= ftp://ftp.windowmaker.org/pub/source/release/ \
|
|
ftp://ftp.ics.es.osaka-u.ac.jp/mirrors/WindowMaker/source/release/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://www.windowmaker.org/
|
|
COMMENT= GNUStep-compliant NEXTSTEP(tm) window manager clone
|
|
|
|
BUILD_USES_MSGFMT= YES
|
|
|
|
USE_BUILDLINK2= YES
|
|
USE_X11BASE= YES
|
|
USE_LIBTOOL= YES
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-usermenu \
|
|
--with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
CONFIGURE_ENV+= LINGUAS=yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# WINDOWMAKER_OPTIONS is a space-separated list of compile-time options
|
|
# to support. Currently supported options:
|
|
#
|
|
# kde enable support for kde/kwm window manager hints
|
|
# gnome enable support for GNOME window manager hints
|
|
# openlook enable support for OPEN LOOK(tm) window manager hints
|
|
# lite remove Window Maker redundancies with KDE and GNOME
|
|
# (this option is broke in WindowMaker 0.65.x)
|
|
#
|
|
WINDOWMAKER_OPTIONS?= gnome kde openlook
|
|
|
|
BUILD_DEFS+= WINDOWMAKER_OPTIONS
|
|
|
|
.for OPTION in ${WINDOWMAKER_OPTIONS}
|
|
CONFIGURE_ARGS+= --enable-${OPTION}
|
|
.endfor
|
|
|
|
post-extract:
|
|
${RM} -f ${WRKSRC}/WindowMaker/Defaults/WMState \
|
|
${WRKSRC}/WindowMaker/Defaults/WMWindowAttributes \
|
|
${WRKSRC}/WindowMaker/Defaults/WindowMaker \
|
|
${WRKSRC}/po/zh_TW.Big5.po
|
|
for manfile in ${WRKSRC}/doc/*.1x ${WRKSRC}/doc/*/*.1x; \
|
|
do \
|
|
${MV} $${manfile} `${ECHO} $${manfile} | ${SED} "s/1x$$/1/"`; \
|
|
done;
|
|
cd ${WRKSRC} && \
|
|
for f in WINGs/wapplication.c WindowMaker/Defaults/WindowMaker.in \
|
|
WPrefs.app/Paths.c WindowMaker/menu* WindowMaker/plmenu*; do \
|
|
${SED} "s|/usr/local|${PREFIX}|g" $$f > $$f.new && \
|
|
${MV} $$f.new $$f; \
|
|
done
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/WindowMaker/SoundSets
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/WindowMaker/Sounds
|
|
${TOUCH} ${PREFIX}/share/WindowMaker/SoundSets/.directory
|
|
${TOUCH} ${PREFIX}/share/WindowMaker/Sounds/.directory
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/WindowMaker
|
|
cd ${WRKSRC}; ${INSTALL_DATA} \
|
|
README README.GNOME README.KDE README.definable-cursor \
|
|
FAQ FAQ.I18N \
|
|
${PREFIX}/share/doc/WindowMaker
|
|
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
.include "../../graphics/hermes/buildlink2.mk"
|
|
.include "../../graphics/libungif/buildlink2.mk"
|
|
.include "../../graphics/jpeg/buildlink2.mk"
|
|
.include "../../graphics/png/buildlink2.mk"
|
|
.include "../../graphics/tiff/buildlink2.mk"
|
|
.include "../../graphics/xpm/buildlink2.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
# "egcs" has an optimizer problem on "arm32".
|
|
.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "arm32"
|
|
CFLAGS:= -O0
|
|
.endif
|