Hello ports, attached is an update to windowmaker 0.95.9.
* Removed some now superfluous patches * Switched HOMEPAGE to https:// * Taking MAINTAINER Tested on amd64. Regards Michael Index: Makefile =================================================================== RCS file: /cvs/ports/x11/windowmaker/Makefile,v retrieving revision 1.107 diff -u -p -u -p -r1.107 Makefile --- Makefile 12 Jul 2019 20:51:23 -0000 1.107 +++ Makefile 26 May 2020 10:46:04 -0000 @@ -3,12 +3,10 @@ COMMENT-main= window manager that emulates NEXTSTEP(tm) COMMENT-lang= language subpackage for Window Maker -V = 0.95.8 +V = 0.95.9 DISTNAME= WindowMaker-${V} PKGNAME-main= ${DISTNAME:L} -REVISION-main= 4 FULLPKGNAME-lang= windowmaker-lang-${V} -REVISION-lang= 0 SHARED_LIBS += WINGs 1.0 # 4.0 SHARED_LIBS += WMaker 0.0 # 1.1 @@ -17,7 +15,9 @@ SHARED_LIBS += wraster CATEGORIES= x11 x11/windowmaker -HOMEPAGE= http://windowmaker.org/ +HOMEPAGE= https://windowmaker.org/ + +MAINTAINER= Michael <michi+open...@dataswamp.org> # GPLv2+ PERMIT_PACKAGE= Yes Index: distinfo =================================================================== RCS file: /cvs/ports/x11/windowmaker/distinfo,v retrieving revision 1.9 diff -u -p -u -p -r1.9 distinfo --- distinfo 29 Mar 2017 08:51:24 -0000 1.9 +++ distinfo 26 May 2020 10:46:04 -0000 @@ -1,2 +1,2 @@ -SHA256 (WindowMaker-0.95.8.tar.gz) = nb9cVXG7ecSxWE9JbJYO4s1zea9F7w9YtLD0hyWd6Io= -SIZE (WindowMaker-0.95.8.tar.gz) = 3253515 +SHA256 (WindowMaker-0.95.9.tar.gz) = 8iNY/2AwFnDh4rUC+q0PLaf/iXZjLVOPlf5GOOnGtxQ= +SIZE (WindowMaker-0.95.9.tar.gz) = 3397167 Index: patches/patch-WINGs_Makefile_in =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WINGs_Makefile_in,v retrieving revision 1.9 diff -u -p -u -p -r1.9 patch-WINGs_Makefile_in --- patches/patch-WINGs_Makefile_in 29 Mar 2017 08:51:24 -0000 1.9 +++ patches/patch-WINGs_Makefile_in 26 May 2020 10:46:04 -0000 @@ -1,7 +1,8 @@ $OpenBSD: patch-WINGs_Makefile_in,v 1.9 2017/03/29 08:51:24 dcoppa Exp $ ---- WINGs/Makefile.in.orig Mon Mar 13 16:26:42 2017 -+++ WINGs/Makefile.in Wed Mar 29 09:09:48 2017 -@@ -516,6 +516,7 @@ libWUtil_la_SOURCES = \ +Index: WINGs/Makefile.in +--- WINGs/Makefile.in.orig ++++ WINGs/Makefile.in +@@ -553,6 +553,7 @@ libWUtil_la_SOURCES = \ AM_CFLAGS = AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \ Index: patches/patch-WINGs_wview_c =================================================================== RCS file: patches/patch-WINGs_wview_c diff -N patches/patch-WINGs_wview_c --- patches/patch-WINGs_wview_c 25 Aug 2017 11:01:17 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,38 +0,0 @@ -$OpenBSD: patch-WINGs_wview_c,v 1.1 2017/08/25 11:01:17 dcoppa Exp $ - -commit 83f0b764e607306feb7b17026a11034e5cf84785 -Author: Doug Torrance <dtorra...@piedmont.edu> -Date: Wed Mar 22 05:48:45 2017 - -WINGs: Set widget background pixmaps before realization. - -Previously, when WMSetWidgetBackgroundPixmap() was called prior to -WMRealizeWidget(), no background pixmap was actually set. - -This is because while the CWBackPixmap bit is correctly set to 1, the -CWBackPixel bit remains set to 1. When XCreateWindow() is finally -called during realization, the background pixel takes precendence over the -background pixmap. - -We fix this by setting CWBackPixel to 0 when setting CWBackPixmap to 1 and -vice versa. - -Index: WINGs/wview.c ---- WINGs/wview.c.orig -+++ WINGs/wview.c -@@ -490,6 +490,7 @@ void W_SetViewBackgroundColor(W_View * view, WMColor * - view->backColor = WMRetainColor(color); - - view->attribFlags |= CWBackPixel; -+ view->attribFlags &= ~CWBackPixmap; - view->attribs.background_pixel = W_PIXEL(color); - if (view->flags.realized) { - XSetWindowBackground(view->screen->display, view->window, W_PIXEL(color)); -@@ -504,6 +505,7 @@ void W_SetViewBackgroundPixmap(W_View *view, WMPixmap - view->backImage = WMRetainPixmap(pix); - - view->attribFlags |= CWBackPixmap; -+ view->attribFlags &= ~CWBackPixel; - view->attribs.background_pixmap = pix->pixmap; - if (view->flags.realized) { - XSetWindowBackgroundPixmap(view->screen->display, view->window, pix->pixmap); Index: patches/patch-WPrefs_app_Appearance_c =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WPrefs_app_Appearance_c,v retrieving revision 1.1 diff -u -p -u -p -r1.1 patch-WPrefs_app_Appearance_c --- patches/patch-WPrefs_app_Appearance_c 17 Jun 2016 11:49:33 -0000 1.1 +++ patches/patch-WPrefs_app_Appearance_c 26 May 2020 10:46:04 -0000 @@ -2,9 +2,10 @@ $OpenBSD: patch-WPrefs_app_Appearance_c, On OpenBSD, time_t is long long. ---- WPrefs.app/Appearance.c.orig Wed Jun 8 13:11:47 2016 -+++ WPrefs.app/Appearance.c Wed Jun 8 13:13:05 2016 -@@ -923,7 +923,7 @@ static char *makeFileName(const char *prefix) +Index: WPrefs.app/Appearance.c +--- WPrefs.app/Appearance.c.orig ++++ WPrefs.app/Appearance.c +@@ -926,7 +926,7 @@ static char *makeFileName(const char *prefix) char buf[30]; wfree(fname); Index: patches/patch-WPrefs_app_Makefile_in =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WPrefs_app_Makefile_in,v retrieving revision 1.2 diff -u -p -u -p -r1.2 patch-WPrefs_app_Makefile_in --- patches/patch-WPrefs_app_Makefile_in 29 Mar 2017 08:51:24 -0000 1.2 +++ patches/patch-WPrefs_app_Makefile_in 26 May 2020 10:46:04 -0000 @@ -1,7 +1,8 @@ $OpenBSD: patch-WPrefs_app_Makefile_in,v 1.2 2017/03/29 08:51:24 dcoppa Exp $ ---- WPrefs.app/Makefile.in.orig Mon Mar 13 16:26:42 2017 -+++ WPrefs.app/Makefile.in Wed Mar 29 09:09:48 2017 -@@ -458,6 +458,7 @@ WPrefs_SOURCES = \ +Index: WPrefs.app/Makefile.in +--- WPrefs.app/Makefile.in.orig ++++ WPrefs.app/Makefile.in +@@ -481,6 +481,7 @@ WPrefs_SOURCES = \ # Themes.c AM_CFLAGS = AM_CPPFLAGS = -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \ Index: patches/patch-WPrefs_app_Menu_c =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WPrefs_app_Menu_c,v retrieving revision 1.5 diff -u -p -u -p -r1.5 patch-WPrefs_app_Menu_c --- patches/patch-WPrefs_app_Menu_c 17 Jun 2016 11:49:33 -0000 1.5 +++ patches/patch-WPrefs_app_Menu_c 26 May 2020 10:46:04 -0000 @@ -1,7 +1,8 @@ $OpenBSD: patch-WPrefs_app_Menu_c,v 1.5 2016/06/17 11:49:33 dcoppa Exp $ ---- WPrefs.app/Menu.c.orig Tue Aug 11 20:41:14 2015 -+++ WPrefs.app/Menu.c Wed Jun 8 09:52:32 2016 -@@ -517,19 +517,19 @@ static void createPanel(_Panel * p) +Index: WPrefs.app/Menu.c +--- WPrefs.app/Menu.c.orig ++++ WPrefs.app/Menu.c +@@ -518,19 +518,19 @@ static void createPanel(_Panel * p) data = putNewItem(panel, pad, DirectoryInfo, _("Themes")); data->param.directory.command = "setstyle"; data->param.directory.directory = Index: patches/patch-WindowMaker_Defaults_Makefile_in =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WindowMaker_Defaults_Makefile_in,v retrieving revision 1.2 diff -u -p -u -p -r1.2 patch-WindowMaker_Defaults_Makefile_in --- patches/patch-WindowMaker_Defaults_Makefile_in 29 Mar 2017 08:51:24 -0000 1.2 +++ patches/patch-WindowMaker_Defaults_Makefile_in 26 May 2020 10:46:04 -0000 @@ -1,14 +1,13 @@ $OpenBSD: patch-WindowMaker_Defaults_Makefile_in,v 1.2 2017/03/29 08:51:24 dcoppa Exp $ ---- WindowMaker/Defaults/Makefile.in.orig Mon Mar 13 16:26:42 2017 -+++ WindowMaker/Defaults/Makefile.in Wed Mar 29 09:22:42 2017 -@@ -544,12 +544,14 @@ WMWindowAttributes: $(srcdir)/WMWindowAttributes.in - chmod 644 WMWindowAttributes +Index: WindowMaker/Defaults/Makefile.in +--- WindowMaker/Defaults/Makefile.in.orig ++++ WindowMaker/Defaults/Makefile.in +@@ -562,12 +562,13 @@ WMWindowAttributes: $(srcdir)/WMWindowAttributes.in WindowMaker: $(srcdir)/WindowMaker.in -- $(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \ -+ $(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" \ + $(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" \ + -e "s:#prefix#:$(prefix):" \ -+ $(srcdir)/WindowMaker.in \ + -e "s:#pixmapdir#:$(pixmapdir):" $(srcdir)/WindowMaker.in \ > WindowMaker ; \ chmod 644 WindowMaker Index: patches/patch-WindowMaker_Defaults_WindowMaker_in =================================================================== RCS file: patches/patch-WindowMaker_Defaults_WindowMaker_in diff -N patches/patch-WindowMaker_Defaults_WindowMaker_in --- patches/patch-WindowMaker_Defaults_WindowMaker_in 17 Jun 2016 11:49:33 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,29 +0,0 @@ -$OpenBSD: patch-WindowMaker_Defaults_WindowMaker_in,v 1.2 2016/06/17 11:49:33 dcoppa Exp $ ---- WindowMaker/Defaults/WindowMaker.in.orig Tue Aug 11 20:41:14 2015 -+++ WindowMaker/Defaults/WindowMaker.in Wed Jun 8 09:52:32 2016 -@@ -13,12 +13,10 @@ - "~/GNUstep/Library/Icons", - "#pkgdatadir#/Icons", - "#pkgdatadir#/Pixmaps", -- "/usr/include/X11/pixmaps", - "~/GNUstep/Library/WindowMaker/Pixmaps", - "~/GNUstep/Library/WindowMaker/CachedPixmaps", -- "/usr/share/icons", -- "/usr/local/share/pixmaps", -- "/usr/share/pixmaps" -+ "#prefix#/share/icons", -+ "#prefix#/share/pixmaps" - ); - PixmapPath = ( - "~/GNUstep/Library/WindowMaker/Pixmaps", -@@ -26,9 +24,7 @@ - "~/GNUstep/Library/WindowMaker/CachedPixmaps", - "#pkgdatadir#/Pixmaps", - "#pkgdatadir#/Backgrounds", -- "/usr/include/X11/pixmaps", -- "/usr/local/share/pixmaps", -- "/usr/share/pixmaps" -+ "#prefix#/share/pixmaps" - ); - WindowTitleBalloons = YES; - IconSize = 64; Index: patches/patch-WindowMaker_Makefile_in =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-WindowMaker_Makefile_in,v retrieving revision 1.8 diff -u -p -u -p -r1.8 patch-WindowMaker_Makefile_in --- patches/patch-WindowMaker_Makefile_in 29 Mar 2017 08:51:24 -0000 1.8 +++ patches/patch-WindowMaker_Makefile_in 26 May 2020 10:46:04 -0000 @@ -1,12 +1,15 @@ $OpenBSD: patch-WindowMaker_Makefile_in,v 1.8 2017/03/29 08:51:24 dcoppa Exp $ ---- WindowMaker/Makefile.in.orig Wed Mar 29 09:21:22 2017 -+++ WindowMaker/Makefile.in Wed Mar 29 09:22:00 2017 -@@ -814,7 +814,7 @@ uninstall-am: uninstall-dist_prefsdataDATA \ +Index: WindowMaker/Makefile.in +--- WindowMaker/Makefile.in.orig ++++ WindowMaker/Makefile.in +@@ -835,8 +835,8 @@ uninstall-am: uninstall-dist_prefsdataDATA \ $(GENERATED_MENUS): - $(AM_V_GEN)sed -e "s:#wprefs#:$(wpexecbindir)/WPrefs:" \ +- -e "s:#wmdatadir#:$(pkgdatadir):" $(srcdir)/$@.in > $@ + $(AM_V_GEN)sed -e "s:#wprefs#:${TRUEPREFIX}/bin/WPrefs:" \ - $(srcdir)/$@.in > $@ ++ -e "s:#wmdatadir#:${TRUEPREFIX}/share/WindowMaker:" $(srcdir)/$@.in > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. Index: patches/patch-WindowMaker_background_menu =================================================================== RCS file: patches/patch-WindowMaker_background_menu diff -N patches/patch-WindowMaker_background_menu --- patches/patch-WindowMaker_background_menu 8 Sep 2017 13:46:33 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,33 +0,0 @@ -$OpenBSD: patch-WindowMaker_background_menu,v 1.1 2017/09/08 13:46:33 dcoppa Exp $ - -commit 273d17a0be1a00435e3b98791359b47908dab443 -Author: Doug Torrance <dtorra...@piedmont.edu> -Date: Fri Aug 18 01:02:24 2017 - -menu: Include all aspect ratio options for background pixmap. - -The background menu was missing "centered", "maximized", and "filled". - -This closes Debian bug #85591 [1]: - The current default for the scaled backgrounds menu is to use - scaling without keeping the aspect ratio. - - This very rarely yields to a usable background. - - Could the default be changed to scaling with keeping the aspect - ratio ? - -[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=85591 - -Index: WindowMaker/background.menu ---- WindowMaker/background.menu.orig -+++ WindowMaker/background.menu -@@ -24,5 +24,8 @@ - "Images" MENU - "Tiled" OPEN_MENU LOCAL_BACKGROUNDS_DIR BACKGROUNDS_DIR USER_BACKGROUNDS_DIR WITH wmsetbg -u -t - "Scaled" OPEN_MENU LOCAL_BACKGROUNDS_DIR BACKGROUNDS_DIR USER_BACKGROUNDS_DIR WITH wmsetbg -u -s -+ "Centered" OPEN_MENU LOCAL_BACKGROUNDS_DIR BACKGROUNDS_DIR USER_BACKGROUNDS_DIR WITH wmsetbg -u -e -+ "Maximized" OPEN_MENU LOCAL_BACKGROUNDS_DIR BACKGROUNDS_DIR USER_BACKGROUNDS_DIR WITH wmsetbg -u -a -+ "Filled" OPEN_MENU LOCAL_BACKGROUNDS_DIR BACKGROUNDS_DIR USER_BACKGROUNDS_DIR WITH wmsetbg -u -f - "Image" END - "Background" END Index: patches/patch-WindowMaker_plmenu_in =================================================================== RCS file: patches/patch-WindowMaker_plmenu_in diff -N patches/patch-WindowMaker_plmenu_in --- patches/patch-WindowMaker_plmenu_in 29 Mar 2017 08:51:24 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,25 +0,0 @@ -$OpenBSD: patch-WindowMaker_plmenu_in,v 1.1 2017/03/29 08:51:24 dcoppa Exp $ ---- WindowMaker/plmenu.in.orig Mon Mar 13 16:25:53 2017 -+++ WindowMaker/plmenu.in Wed Mar 29 09:15:49 2017 -@@ -65,9 +65,9 @@ - ("Lock", EXEC, "xlock -allowroot -usefirst") - ), - ("Appearance", -- ("Themes", OPEN_MENU, "-noext #wmdatadir#/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"), -- ("Styles", OPEN_MENU, "-noext #wmdatadir#/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"), -- ("Icon Sets", OPEN_MENU, "-noext #wmdatadir#/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"), -+ ("Themes", OPEN_MENU, "-noext ${TRUEPREFIX}/share/WindowMaker/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"), -+ ("Styles", OPEN_MENU, "-noext ${TRUEPREFIX}/share/WindowMaker/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"), -+ ("Icon Sets", OPEN_MENU, "-noext ${TRUEPREFIX}/share/WindowMaker/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"), - ("Background", - ("Solid", - ("Black", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, black)'"), -@@ -89,7 +89,7 @@ - ("Grey Shades", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#636380\", \"#131318\")'"), - ("Wine Shades", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'") - ), -- ("Images", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t") -+ ("Images", OPEN_MENU, "-noext ${TRUEPREFIX}/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t") - ), - ("Save Theme", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""), - ("Save IconSet", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""), Index: patches/patch-configure =================================================================== RCS file: /cvs/ports/x11/windowmaker/patches/patch-configure,v retrieving revision 1.5 diff -u -p -u -p -r1.5 patch-configure --- patches/patch-configure 29 Mar 2017 08:51:24 -0000 1.5 +++ patches/patch-configure 26 May 2020 10:46:04 -0000 @@ -1,7 +1,8 @@ $OpenBSD: patch-configure,v 1.5 2017/03/29 08:51:24 dcoppa Exp $ ---- configure.orig Mon Mar 13 16:26:41 2017 -+++ configure Wed Mar 29 09:09:48 2017 -@@ -17102,7 +17102,7 @@ else +Index: configure +--- configure.orig ++++ configure +@@ -17612,7 +17612,7 @@ else wm_cv_imgfmt_xpm=no wm_save_LIBS="$LIBS" if wm_fn_lib_try_link "XpmCreatePixmapFromData" "$XLFLAGS $XLIBS -lXpm"; then : Index: patches/patch-util_wmmenugen_parse_xdg_c =================================================================== RCS file: patches/patch-util_wmmenugen_parse_xdg_c diff -N patches/patch-util_wmmenugen_parse_xdg_c --- patches/patch-util_wmmenugen_parse_xdg_c 25 Aug 2017 11:01:17 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,33 +0,0 @@ -$OpenBSD: patch-util_wmmenugen_parse_xdg_c,v 1.1 2017/08/25 11:01:17 dcoppa Exp $ - -commit e037ae3684928a2fbf4a3994562a322f5d3b0c71 -Author: Christophe CURIS <christophe.cu...@free.fr> -Date: Sun Jul 2 21:01:49 2017 - -util: fix parsing of XDG menus with multiple groups - -The specification for XDG menu files allows having more than one group and -assumes no constraint on their order. The original code assumed that once -the proper group marker was found, everything after was part of it, causing -misinterpretation of some data, like taking the wrong launch command. - -This patch stops the parsing of the menu XDG file when a new group is -found, hence implementing the expected behaviour. - -Reported-by: Andreas Metzler <ametz...@bebt.de> - -Index: util/wmmenugen_parse_xdg.c ---- util/wmmenugen_parse_xdg.c.orig -+++ util/wmmenugen_parse_xdg.c -@@ -132,6 +132,11 @@ void parse_xdg(const char *file, cb_add_menu_entry *ad - /* start processing group */ - memset(buf, 0, sizeof(buf)); - continue; -+ } else if (p[0] == '[') { -+ /* If we find a new group and the previous group was the main one, -+ * we stop all further processing -+ */ -+ if (InGroup) break; - } - - if (!InGroup) { Index: pkg/PLIST-main =================================================================== RCS file: /cvs/ports/x11/windowmaker/pkg/PLIST-main,v retrieving revision 1.5 diff -u -p -u -p -r1.5 PLIST-main --- pkg/PLIST-main 29 Mar 2017 08:51:24 -0000 1.5 +++ pkg/PLIST-main 26 May 2020 10:46:04 -0000 @@ -5,9 +5,6 @@ GNUstep/Applications/ GNUstep/Applications/WPrefs.app @bin bin/WPrefs @bin bin/convertfonts -bin/get-wings-flags -bin/get-wraster-flags -bin/get-wutil-flags @bin bin/geticonset @bin bin/getstyle @bin bin/seticons @@ -31,16 +28,16 @@ include/WINGs/WINGsP.h include/WINGs/WUtil.h include/WMaker.h include/wraster.h -lib/libWINGs.a +@static-lib lib/libWINGs.a lib/libWINGs.la @lib lib/libWINGs.so.${LIBWINGs_VERSION} -lib/libWMaker.a +@static-lib lib/libWMaker.a lib/libWMaker.la @lib lib/libWMaker.so.${LIBWMaker_VERSION} -lib/libWUtil.a +@static-lib lib/libWUtil.a lib/libWUtil.la @lib lib/libWUtil.so.${LIBWUtil_VERSION} -lib/libwraster.a +@static-lib lib/libwraster.a lib/libwraster.la @lib lib/libwraster.so.${LIBwraster_VERSION} lib/pkgconfig/WINGs.pc @@ -60,9 +57,6 @@ lib/pkgconfig/wrlib.pc @comment man/cs/man1/wxpaste.1 @man man/man1/WPrefs.1 @man man/man1/WindowMaker.1 -@man man/man1/get-wings-flags.1 -@man man/man1/get-wraster-flags.1 -@man man/man1/get-wutil-flags.1 @man man/man1/geticonset.1 @man man/man1/getstyle.1 @man man/man1/seticons.1 @@ -77,7 +71,6 @@ lib/pkgconfig/wrlib.pc @man man/man1/wmsetbg.1 @man man/man1/wxcopy.1 @man man/man1/wxpaste.1 -@man man/man8/upgrade-windowmaker-defaults.8 @comment man/ru/ @comment man/ru/man1/ @comment man/ru/man1/geticonset.1 @@ -266,6 +259,7 @@ share/WindowMaker/README share/WindowMaker/README.themes share/WindowMaker/Sounds/ share/WindowMaker/Styles/ +share/WindowMaker/Styles/Adwaita.style share/WindowMaker/Styles/Autumn.style share/WindowMaker/Styles/Black.style share/WindowMaker/Styles/BlackTexture.style @@ -308,8 +302,12 @@ share/WindowMaker/Themes/OpenStep.style share/WindowMaker/Themes/Pastel.style share/WindowMaker/Themes/SteelBlueSilk.style share/WindowMaker/appearance.menu +share/WindowMaker/appearance.menu.fy +share/WindowMaker/appearance.menu.nl share/WindowMaker/autostart.sh share/WindowMaker/background.menu +share/WindowMaker/background.menu.fy +share/WindowMaker/background.menu.nl share/WindowMaker/exitscript.sh share/WindowMaker/menu share/WindowMaker/plmenu