3f4fa4c6b9
- Fixed crash with long titles in the window list menu (buffer overflow) - fixed crash when removing menu entry for Window List or Workspace submenu - Replaced almost all sprintf() calls with snprintf() - Fixed some non-portable shell constructs used in installed scripts - removed FocusFollowMouse from wmaker and WPrefs - fixed problem with alpha images showing a blue tint on big endian machines - fixed problem with WINGs based apps exiting with a "X_RotateProperties" related error when text was selected in a textfiled (including WPrefs.app and Window Maker itself). - fixed bug with maximization of windows with fixed resize increments - added None geometry display type - fixed window enumeration bug - removed GNUisms from wsetfont - added slovakian translations - added WINGs i18n patch - fixed wmsetbg.c to work in servers capable of multiple depths (overlay) - added HMaximizeKey - fixed bad SIGPIPE handling setup across forks - added workaround for bug in locale handling on font set creation
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.42 2001/08/01 09:04:41 wilfried Exp $
|
|
|
|
COMMENT= 'window manager that emulates NEXTSTEP(tm)'
|
|
|
|
DISTNAME= WindowMaker-0.65.1
|
|
PKGNAME= ${DISTNAME:L}
|
|
CATEGORIES= x11 x11/windowmaker
|
|
NEED_VERSION= 1.433
|
|
|
|
HOMEPAGE= http://www.windowmaker.org/
|
|
|
|
MAINTAINER= Peter Stromberg <wilfried@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_WINDOWMAKER}
|
|
MASTER_SITE_SUBDIR= beta/srcs
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
LIB_DEPENDS= PropList.2::devel/libproplist \
|
|
jpeg.62::graphics/jpeg \
|
|
tiff.35::graphics/tiff \
|
|
png.2::graphics/png \
|
|
gif.4.1::graphics/giflib
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
USE_X11= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--enable-static \
|
|
--with-pixmapdir="${PREFIX}/share/WindowMaker/Pixmaps" \
|
|
--with-nlsdir="${LOCALBASE}/share/locale"
|
|
|
|
FLAVORS= i18n
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mi18n}
|
|
LIB_DEPENDS+= intl::devel/gettext
|
|
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ENV+= LINGUAS='bg cs da de el es et fi fr gl hr hu it ja ko nl no pl pt ro ru sk sv tr zh_CN zh_TW.Big5'
|
|
.endif
|
|
|
|
SYSCONFDIR= ${PREFIX}/share/WindowMaker/Defaults
|
|
|
|
post-patch:
|
|
@perl -pi -e "s|%%PREFIX%%|${PREFIX}|g" \
|
|
${WRKSRC}/WINGs/wapplication.c \
|
|
${WRKSRC}/WPrefs.app/Menu.c \
|
|
${WRKSRC}/WPrefs.app/Paths.c
|
|
# Rename wrongly named locale files
|
|
@mv ${WRKSRC}/WindowMaker/menu.cz ${WRKSRC}/WindowMaker/menu.cs
|
|
@mv ${WRKSRC}/WindowMaker/menu.se ${WRKSRC}/WindowMaker/menu.sv
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/WindowMaker/Sounds
|
|
|
|
.include <bsd.port.mk>
|