fa4065deec
Patch provided by Sergey Svishchev in PR 32469. Changes: # 1.2.23: 2005-08-14 * make taskbar pop out even when collaped * Slovak translation update (Zdenko Podobny) # 1.2.23pre1: 2005-07-31 * fix crash when hiding the taskbar and "collapse" button is hidden * fix repeated drag over taskbar icon not working * fix problems with Unmap events being handled incorrectly * customizable placement order options for minimized window icons (MiniIconsPlaceHorizontal, MiniIconsRightToLeft, MiniIconsBottomToTop) - (Konstantin Korikov - lostclus) # 1.2.22: 2005-07-17 * AutoShowDelay setting (opposite of AutoHideDelay) * use Workspace status window instead of showing the taskbar when workspace changes if taskbar autohide is enabled # 1.2.22pre3: 2005-07-15 * fix focusing after window minimized or hidden # 1.2.22pre2: 2005-07-10 * Remember last focused window per-workspace * Enable the LockCommand functionality only if command found (Eduard Bloch) * new Korean translation (Ken Yeo) # 1.2.22pre1: 2005-06-28 * Latvian translation (Kristaps Kaupe) * Double click activates workspace in window list * Fixes to taskbar layout when only tasks visible * Made network status applets show/hide dynamically again * Add image to taskbar collapse button * Fix MinimizeToDesktop windows getting out of desktop area * Added key binding: KeySysCollapseTaskBar * Fixed UTF-8 input support in AddressBar # 1.2.21: 2005-05-31 * translation: Vietnamese (Phan Vinh Thinh) * translation: Indonesian (Arif E. Nugroho) * translation update: Simplified Chinese (Hiweed Leng) * translation update: French (Frederic Bothamy) * APM applet support for NetBSD (Iain Hibbert (plunky)) * add new winoption: noFocusOnMap * fix ClientWindowMouseActions for Window-Drag combination # 1.2.21pre1: 2005-03-20 * improve selection of "urgent" windows with alt+tab * fix possible crash (Grant McDorman) * fix 64bit usage of Xft (Marcus Meissner) * cleanup warning on still-open file descriptors * disabled some Ctrl+Alt+Del commands by default since they need some configuring to work on all systems * fix desktop layer setting for nautilus
64 lines
1.7 KiB
Text
64 lines
1.7 KiB
Text
# $NetBSD: Makefile.common,v 1.48 2006/01/06 20:49:20 rillig Exp $
|
|
|
|
DISTNAME= icewm-1.2.23
|
|
CATEGORIES= x11 wm
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=icewm/}
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.icewm.org/
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
USE_PKGLOCALEDIR= yes
|
|
BUILD_USES_MSGFMT= yes
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../wm/icewm/distinfo
|
|
FILESDIR= ${.CURDIR}/../../wm/icewm/files
|
|
PATCHDIR= ${.CURDIR}/../../wm/icewm/patches
|
|
|
|
CONFIGURE_ARGS+= --enable-gradients
|
|
CONFIGURE_ARGS+= --enable-antialiasing
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+= --with-cfgdir=${PKG_SYSCONFDIR:Q}
|
|
.if !exists(${X11BASE}/include/X11/extensions/Xinerama.h)
|
|
CONFIGURE_ARGS+= --disable-xinerama
|
|
.endif
|
|
|
|
PKG_SYSCONFSUBDIR= icewm
|
|
|
|
.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD"
|
|
CXXFLAGS+= -DSTART_PIXMAP="\"bsd-daemon.xpm\""
|
|
.endif
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
. if !empty(OS_VERSION:M1.*)
|
|
CONFIGURE_ARGS+= --disable-i18n
|
|
. else
|
|
CONFIGURE_ARGS+= --with-unicode-set=utf-32
|
|
. include "../../converters/libiconv/buildlink3.mk"
|
|
. endif
|
|
.else
|
|
. include "../../converters/libiconv/buildlink3.mk"
|
|
.endif
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/icewm
|
|
HTMLDIR= ${PREFIX}/share/doc/icewm/html
|
|
INSTALL_TARGET= install-base install-nls
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/bsd-daemon.xpm ${WRKSRC}/lib/taskbar
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA_DIR} ${HTMLDIR}
|
|
for file in BUGS CHANGES COPYING README README.wm-session TODO; do\
|
|
${INSTALL_DATA} ${WRKSRC}/$${file} ${DOCDIR}; \
|
|
done
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${HTMLDIR}
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../fonts/Xft2/buildlink3.mk"
|
|
.include "../../x11/Xrandr/buildlink3.mk"
|