diff --git a/x11-wm/libwraster/Makefile b/x11-wm/libwraster/Makefile index eb06f6558a85..7e2d57a58e03 100644 --- a/x11-wm/libwraster/Makefile +++ b/x11-wm/libwraster/Makefile @@ -1,55 +1,54 @@ PORTNAME= libwraster -PORTVERSION= 0.95.9 -PORTREVISION= 3 +PORTVERSION= 0.96.0 CATEGORIES= x11-wm windowmaker MASTER_SITES= http://windowmaker.org/pub/source/release/ DISTNAME= WindowMaker-${PORTVERSION} MAINTAINER= hrs@FreeBSD.org COMMENT= Window Maker raster graphics library WWW= https://www.windowmaker.org/ LICENSE= LGPL21 LIB_DEPENDS= libgif.so:graphics/giflib \ libpng.so:graphics/png \ libjbig.so:graphics/jbigkit \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp -USES= jpeg libtool localbase pathfix pkgconfig xorg +USES= gmake jpeg libtool localbase pathfix pkgconfig xorg USE_LDCONFIG= yes USE_XORG= x11 xext xft xinerama xmu xpm BUILD_WRKSRC= ${WRKSRC}/wrlib INSTALL_WRKSRC= ${WRKSRC}/wrlib GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ --with-localedir=${PREFIX}/share/locale \ --with-libs-from="-L${LOCALBASE}/lib" \ --with-incs-from="-I${LOCALBASE}/include" \ --with-gnustepdir="${PREFIX}/GNUstep" \ --enable-modelock \ --enable-xinerama \ --enable-usermenu \ --enable-wmreplace \ --with-x INSTALL_TARGET= install-strip OPTIONS_DEFINE= IMAGEMAGICK OPTIONS_DEFAULT= IMAGEMAGICK IMAGEMAGICK_USES= magick IMAGEMAGICK_CONFIGURE_OFF= --disable-magick .include post-patch-IMAGEMAGICK-on: .if ${IMAGEMAGICK_DEFAULT} == 6 @${REINPLACE_CMD} -e '/MagickWand\.h/s,MagickWand/,wand/,' \ ${WRKSRC}/configure ${WRKSRC}/wrlib/load_magick.c .endif pre-build: cd ${WRKSRC} && ${MAKE_CMD} config-paths.h .include diff --git a/x11-wm/libwraster/distinfo b/x11-wm/libwraster/distinfo index 3721787debdf..1bba940edf1b 100644 --- a/x11-wm/libwraster/distinfo +++ b/x11-wm/libwraster/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1597295266 -SHA256 (WindowMaker-0.95.9.tar.gz) = f22358ff60301670e1e2b502faad0f2da7ff8976632d538f95fe4638e9c6b714 -SIZE (WindowMaker-0.95.9.tar.gz) = 3397167 +TIMESTAMP = 1691413426 +SHA256 (WindowMaker-0.96.0.tar.gz) = 4fe130ba23cf4aa21c156ec8f01f748df537d0604ec06c6bbcec896df1926f6d +SIZE (WindowMaker-0.96.0.tar.gz) = 3443048 diff --git a/x11-wm/libwraster/files/patch-configure b/x11-wm/libwraster/files/patch-configure deleted file mode 100644 index 21de9e03d0bf..000000000000 --- a/x11-wm/libwraster/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2020-04-05 13:42:01 UTC -+++ configure -@@ -14305,7 +14305,7 @@ case "$host" in #( - *-*-linux*|*-*-cygwin*|*-gnu*) : - WM_OSDEP="linux" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600" ;; #( - *-*-freebsd*|*-k*bsd-gnu*) : -- WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD" ;; #( -+ WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=700 -DFREEBSD" ;; #( - *-*-netbsd*) : - WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -DNETBSD" ;; #( - *-*-openbsd*) : diff --git a/x11-wm/libwraster/files/patch-wrlib__wraster.h b/x11-wm/libwraster/files/patch-wrlib_wraster.h.in similarity index 86% rename from x11-wm/libwraster/files/patch-wrlib__wraster.h rename to x11-wm/libwraster/files/patch-wrlib_wraster.h.in index 164b7430dcd9..802c22548eea 100644 --- a/x11-wm/libwraster/files/patch-wrlib__wraster.h +++ b/x11-wm/libwraster/files/patch-wrlib_wraster.h.in @@ -1,20 +1,20 @@ ---- wrlib/wraster.h.orig 2015-08-11 18:41:14 UTC -+++ wrlib/wraster.h -@@ -61,10 +61,14 @@ +--- wrlib/wraster.h.in.orig 2023-03-02 14:20:26 UTC ++++ wrlib/wraster.h.in +@@ -58,10 +58,14 @@ * mechanism and define an internal macro appropriately. Please note that the macro are not considered being * part of the public API. */ -#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) +#ifndef __has_feature +#define __has_feature(x) 0 +#endif +#ifndef __has_extension +#define __has_extension __has_feature +#endif +#if __has_extension(attribute_depreated_with_message) #define __wrlib_deprecated(msg) __attribute__ ((deprecated(msg))) -#elif __GNUC__ >= 3 -#define __wrlib_deprecated(msg) __attribute__ ((deprecated)) #else #define __wrlib_deprecated(msg) #endif diff --git a/x11-wm/libwraster/pkg-plist b/x11-wm/libwraster/pkg-plist index 91881c7065c9..151f303228bc 100644 --- a/x11-wm/libwraster/pkg-plist +++ b/x11-wm/libwraster/pkg-plist @@ -1,6 +1,6 @@ include/wraster.h lib/libwraster.a lib/libwraster.so lib/libwraster.so.6 -lib/libwraster.so.6.0.0 +lib/libwraster.so.6.1.0 libdata/pkgconfig/wrlib.pc diff --git a/x11-wm/windowmaker/Makefile b/x11-wm/windowmaker/Makefile index 3051c8b1f82e..629cc5a866de 100644 --- a/x11-wm/windowmaker/Makefile +++ b/x11-wm/windowmaker/Makefile @@ -1,80 +1,80 @@ PORTNAME= windowmaker -PORTVERSION= 0.95.9 -PORTREVISION= 3 +PORTVERSION= 0.96.0 CATEGORIES= x11-wm windowmaker MASTER_SITES= http://windowmaker.org/pub/source/release/ DISTNAME= WindowMaker-${PORTVERSION} MAINTAINER= hrs@FreeBSD.org COMMENT= GNUstep-compliant NeXTstep window manager clone WWW= https://windowmaker.org/ LICENSE= GPLv2 LIB_DEPENDS= libgif.so:graphics/giflib \ libpng.so:graphics/png \ libjbig.so:graphics/jbigkit \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp \ libwraster.so:x11-wm/libwraster \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libexif.so:graphics/libexif RUN_DEPENDS= ${LOCALBASE}/share/WindowMaker/Themes/LeetWM.themed/style:graphics/wmicons -USES= cpe gnome jpeg libtool shebangfix pathfix perl5 pkgconfig xorg +USES= cpe gmake gnome jpeg libtool pathfix perl5 pkgconfig \ + shebangfix xorg USE_CSTD= c99 USE_GNOME= pango USE_LDCONFIG= yes USE_XORG= x11 xext xft xinerama xmu xpm SHEBANG_FILES= util/wkdemenu.pl GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_sys_inotify_h=no \ wm_cv_func_secure_getenv=no CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ --localedir=${PREFIX}/share/locale \ --with-libs-from="-L${LOCALBASE}/lib" \ --with-incs-from="-I${LOCALBASE}/include" \ --with-gnustepdir="${PREFIX}/GNUstep" \ --enable-modelock \ --enable-pango \ --enable-xinerama \ --enable-usermenu \ --enable-wmreplace \ --with-x CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog FAQ INSTALL \ INSTALL-WMAKER NEWS README README.definable-cursor \ README.i18n TODO The-perfect-Window-Maker-patch.txt OPTIONS_DEFINE= IMAGEMAGICK DOCS NLS OPTIONS_DEFAULT= IMAGEMAGICK OPTIONS_SUB= yes IMAGEMAGICK_USES= magick IMAGEMAGICK_CONFIGURE_OFF= --disable-magick NLS_USES= gettext NLS_CONFIGURE_ENV= LINGUAS="*" NLS_CONFIGURE_ENABLE= locale .include post-patch-IMAGEMAGICK-on: .if ${IMAGEMAGICK_DEFAULT} == 6 @${REINPLACE_CMD} -e '/MagickWand\.h/s,MagickWand/,wand/,' \ ${WRKSRC}/configure ${WRKSRC}/wrlib/load_magick.c .endif post-install: @${MKDIR} \ ${STAGEDIR}${PREFIX}/GNUstep/Applications/WPrefs.app/xpm \ ${STAGEDIR}${PREFIX}/share/WindowMaker/Sounds post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/x11-wm/windowmaker/distinfo b/x11-wm/windowmaker/distinfo index 2e733f723cf1..1bba940edf1b 100644 --- a/x11-wm/windowmaker/distinfo +++ b/x11-wm/windowmaker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1597295523 -SHA256 (WindowMaker-0.95.9.tar.gz) = f22358ff60301670e1e2b502faad0f2da7ff8976632d538f95fe4638e9c6b714 -SIZE (WindowMaker-0.95.9.tar.gz) = 3397167 +TIMESTAMP = 1691413426 +SHA256 (WindowMaker-0.96.0.tar.gz) = 4fe130ba23cf4aa21c156ec8f01f748df537d0604ec06c6bbcec896df1926f6d +SIZE (WindowMaker-0.96.0.tar.gz) = 3443048 diff --git a/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in b/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in index 248a18b90c87..cf7c2ac1e92c 100644 --- a/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in +++ b/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in @@ -1,19 +1,19 @@ --- WINGs/Examples/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ WINGs/Examples/Makefile.in @@ -359,14 +359,14 @@ top_srcdir = @top_srcdir@ wprefs_bindir = @wprefs_bindir@ wprefs_datadir = @wprefs_datadir@ AUTOMAKE_OPTIONS = -LDADD = $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ +LDADD = $(top_builddir)/WINGs/libWINGs.la -lwraster \ $(top_builddir)/WINGs/libWUtil.la \ - @XFTLIBS@ @INTLIBS@ @XLIBS@ + @XFT_LIBS@ @INTLIBS@ @XLIBS@ colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la puzzle_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la -AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ +AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/src \ -DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ all: all-am diff --git a/x11-wm/windowmaker/files/patch-WINGs__Makefile.in b/x11-wm/windowmaker/files/patch-WINGs__Makefile.in index 5f7b92069e66..5ed29dbfce23 100644 --- a/x11-wm/windowmaker/files/patch-WINGs__Makefile.in +++ b/x11-wm/windowmaker/files/patch-WINGs__Makefile.in @@ -1,33 +1,32 @@ --- WINGs/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ WINGs/Makefile.in @@ -141,8 +141,7 @@ am__uninstall_files_from_dir = { \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" LTLIBRARIES = $(lib_LTLIBRARIES) -libWINGs_la_DEPENDENCIES = libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la +libWINGs_la_DEPENDENCIES = libWUtil.la am_libWINGs_la_OBJECTS = configuration.lo dragcommon.lo \ dragdestination.lo dragsource.lo selection.lo wappresource.lo \ wballoon.lo wbox.lo wbrowser.lo wbutton.lo wcolor.lo \ @@ -478,8 +477,8 @@ DIST_SUBDIRS = $(SUBDIRS) Tests Examples Extras libWINGs_la_LDFLAGS = -version-info @WINGS_VERSION@ libWUtil_la_LDFLAGS = -version-info @WUTIL_VERSION@ lib_LTLIBRARIES = libWUtil.la libWINGs.la -LDADD = libWUtil.la libWINGs.la $(top_builddir)/wrlib/libwraster.la @INTLIBS@ --libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ @PANGOLIBS@ +-libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFT_LIBS@ @FCLIBS@ @LIBM@ @PANGO_LIBS@ +LDADD = libWUtil.la libWINGs.la -lwraster @INTLIBS@ -+libWINGs_la_LIBADD = libWUtil.la -lwraster @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ @PANGOLIBS@ ++libWINGs_la_LIBADD = libWUtil.la -lwraster @XLIBS@ @XFT_LIBS@ @FCLIBS@ @LIBM@ @PANGO_LIBS@ libWUtil_la_LIBADD = @LIBBSD@ EXTRA_DIST = BUGS make-rgb Examples Extras Tests -@@ -553,7 +552,8 @@ libWUtil_la_SOURCES = \ - +@@ -553,7 +552,7 @@ libWUtil_la_SOURCES = \ AM_CFLAGS = AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \ -- -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ -+ -DPREFIX=\"$(prefix)\" \ -+ -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/src \ - @XFTFLAGS@ @HEADER_SEARCH_PATH@ + -I$(top_srcdir)/WINGs/WINGs -I$(top_builddir)/WINGs/WINGs \ +- -I$(top_builddir)/wrlib -I$(top_srcdir)/src \ ++ -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/src \ + @XFT_CFLAGS@ @HEADER_SEARCH_PATH@ pkgconfigdir = $(prefix)/libdata/pkgconfig diff --git a/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in b/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in index c9551b184714..4f0238c770fa 100644 --- a/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in +++ b/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in @@ -1,41 +1,41 @@ --- WINGs/Tests/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ WINGs/Tests/Makefile.in @@ -118,7 +118,6 @@ am_testmywidget_OBJECTS = testmywidget.$(OBJEXT) mywid testmywidget_OBJECTS = $(am_testmywidget_OBJECTS) testmywidget_LDADD = $(LDADD) testmywidget_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/wrlib/libwraster.la \ $(top_builddir)/WINGs/libWUtil.la AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -128,13 +127,11 @@ wmfile_SOURCES = wmfile.c wmfile_OBJECTS = wmfile.$(OBJEXT) wmfile_LDADD = $(LDADD) wmfile_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/wrlib/libwraster.la \ $(top_builddir)/WINGs/libWUtil.la wmquery_SOURCES = wmquery.c wmquery_OBJECTS = wmquery.$(OBJEXT) wmquery_LDADD = $(LDADD) wmquery_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/wrlib/libwraster.la \ $(top_builddir)/WINGs/libWUtil.la wtest_SOURCES = wtest.c wtest_OBJECTS = wtest.$(OBJEXT) @@ -373,14 +370,14 @@ top_srcdir = @top_srcdir@ wprefs_bindir = @wprefs_bindir@ wprefs_datadir = @wprefs_datadir@ AUTOMAKE_OPTIONS = -LDADD = $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ +LDADD = $(top_builddir)/WINGs/libWINGs.la -lwraster \ $(top_builddir)/WINGs/libWUtil.la \ - @XFTLIBS@ @INTLIBS@ @XLIBS@ + @XFT_LIBS@ @INTLIBS@ @XLIBS@ - testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h + testmywidget_SOURCES = testmywidget.c mywidget.c mywidget.h wtest_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la EXTRA_DIST = logo.xpm upbtn.xpm wm.html wm.png -AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ +AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/src \ - -DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFTFLAGS@ @HEADER_SEARCH_PATH@ + -DRESOURCE_PATH=\"$(datadir)/WINGs\" @XFT_CFLAGS@ @HEADER_SEARCH_PATH@ \ + @PANGO_CFLAGS@ - all: all-am diff --git a/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h b/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h deleted file mode 100644 index e224a445920a..000000000000 --- a/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h +++ /dev/null @@ -1,16 +0,0 @@ ---- WINGs/WINGs/WINGsP.h.orig 2019-02-15 23:34:25 UTC -+++ WINGs/WINGs/WINGsP.h -@@ -17,7 +17,13 @@ - - #include - -+#ifdef _XLOCALE_H_ /* workaround for libX11<1.4 */ -+#undef _XLOCALE_H_ - #include -+#define _XLOCALE_H_ -+#else -+#include -+#endif - #include - #include - #include diff --git a/x11-wm/windowmaker/files/patch-WINGs__wapplication.c b/x11-wm/windowmaker/files/patch-WINGs__wapplication.c deleted file mode 100644 index 6770c6427f5a..000000000000 --- a/x11-wm/windowmaker/files/patch-WINGs__wapplication.c +++ /dev/null @@ -1,11 +0,0 @@ ---- WINGs/wapplication.c.orig 2015-08-11 18:41:14 UTC -+++ WINGs/wapplication.c -@@ -187,7 +187,7 @@ char *WMPathForResourceOfType(const char - if (path) - goto out; - -- path = checkFile("/usr/local/GNUstep", appdir, ext, resource); -+ path = checkFile(PREFIX "/GNUstep", appdir, ext, resource); - if (path) - goto out; - diff --git a/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in b/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in index c3e1a4c3d3ea..305cccebab7a 100644 --- a/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in +++ b/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in @@ -1,19 +1,19 @@ --- WPrefs.app/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ WPrefs.app/Makefile.in -@@ -481,13 +481,14 @@ WPrefs_SOURCES = \ +@@ -481,13 +481,13 @@ WPrefs_SOURCES = \ # Themes.c AM_CFLAGS = AM_CPPFLAGS = -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \ -- -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ -+ -DPREFIX=\"$(prefix)\" \ -+ -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ +- -I$(top_builddir)/wrlib -I$(top_srcdir)/WINGs -I$(top_builddir)/WINGs \ ++ -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/WINGs -I$(top_builddir)/WINGs \ + @HEADER_SEARCH_PATH@ WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la WPrefs_LDADD = \ $(top_builddir)/WINGs/libWINGs.la\ $(top_builddir)/WINGs/libWUtil.la\ - $(top_builddir)/wrlib/libwraster.la \ + -lwraster \ @XLFLAGS@ @XLIBS@ \ @LIBM@ \ @FCLIBS@ \ diff --git a/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c b/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c index 234ef6c603eb..b8ec0a108b0a 100644 --- a/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c +++ b/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c @@ -1,25 +1,30 @@ ---- WPrefs.app/Menu.c.orig 2020-04-05 13:41:15 UTC +--- WPrefs.app/Menu.c.orig 2023-03-13 14:40:46 UTC +++ WPrefs.app/Menu.c -@@ -518,19 +518,19 @@ static void createPanel(_Panel * p) +@@ -520,8 +520,7 @@ static void createPanel(_Panel * p) data = putNewItem(panel, pad, DirectoryInfo, _("Themes")); data->param.directory.command = "setstyle"; data->param.directory.directory = -- "/usr/share/WindowMaker/Themes /usr/local/share/WindowMaker/Themes $HOME/GNUstep/Library/WindowMaker/Themes"; -+ "/usr/share/WindowMaker/Themes " PREFIX "/share/WindowMaker/Themes $HOME/GNUstep/Library/WindowMaker/Themes"; +- "/usr/share/" PACKAGE_TARNAME "/Themes" +- " /usr/local/share/" PACKAGE_TARNAME "/Themes" ++ PREFIX "/share/" PACKAGE_TARNAME "/Themes" + " $HOME/" GSUSER_SUBDIR "/" USERDATA_SUBDIR "/" PACKAGE_TARNAME "/Themes"; data->param.directory.stripExt = 1; - data = putNewItem(panel, pad, DirectoryInfo, _("Bg Images (scale)")); +@@ -529,7 +528,7 @@ static void createPanel(_Panel * p) data->param.directory.command = "wmsetbg -u -s"; data->param.directory.directory = -- "/opt/kde2/share/wallpapers /usr/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds"; -+ "/opt/kde2/share/wallpapers " PREFIX "/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds"; + "/opt/kde2/share/wallpapers" +- " /usr/share/" PACKAGE_TARNAME "/Backgrounds" ++ " " PREFIX "/share/" PACKAGE_TARNAME "/Backgrounds" + " $HOME/" GSUSER_SUBDIR "/" USERDATA_SUBDIR "/" PACKAGE_TARNAME "/Backgrounds"; data->param.directory.stripExt = 1; - data = putNewItem(panel, pad, DirectoryInfo, _("Bg Images (tile)")); +@@ -537,7 +536,7 @@ static void createPanel(_Panel * p) data->param.directory.command = "wmsetbg -u -t"; data->param.directory.directory = -- "/opt/kde2/share/wallpapers /usr/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds"; -+ "/opt/kde2/share/wallpapers " PREFIX "/share/WindowMaker/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds"; + "/opt/kde2/share/wallpapers" +- " /usr/share/" PACKAGE_TARNAME "/Backgrounds" ++ " " PREFIX "/share/" PACKAGE_TARNAME "/Backgrounds" + " $HOME/" GSUSER_SUBDIR "/" USERDATA_SUBDIR "/" PACKAGE_TARNAME "/Backgrounds"; data->param.directory.stripExt = 1; - smenu = putNewSubmenu(pad, _("Assorted XTerms")); diff --git a/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c b/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c index c4f3976ad4f1..70f4a5acd2e3 100644 --- a/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c +++ b/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c @@ -1,24 +1,25 @@ ---- WPrefs.app/Paths.c.orig 2015-08-11 18:41:14 UTC +--- WPrefs.app/Paths.c.orig 2023-01-06 21:34:50 UTC +++ WPrefs.app/Paths.c -@@ -78,9 +78,9 @@ static void showData(_Panel * panel) +@@ -78,10 +78,9 @@ static void showData(_Panel * panel) wwarning(_("bad value in option IconPath. Using default path list")); addPathToList(panel->icoL, -1, "~/pixmaps"); - addPathToList(panel->icoL, -1, "~/GNUstep/Library/Icons"); + addPathToList(panel->icoL, -1, "~/" GSUSER_SUBDIR "/" USERDATA_SUBDIR "/Icons"); - addPathToList(panel->icoL, -1, "/usr/include/X11/pixmaps"); -- addPathToList(panel->icoL, -1, "/usr/local/share/WindowMaker/Icons"); -- addPathToList(panel->icoL, -1, "/usr/local/share/WindowMaker/Pixmaps"); +- addPathToList(panel->icoL, -1, "/usr/local/share/" PACKAGE_TARNAME "/Icons"); +- addPathToList(panel->icoL, -1, "/usr/local/share/" PACKAGE_TARNAME "/Pixmaps"); +- addPathToList(panel->icoL, -1, "/usr/share/" PACKAGE_TARNAME "/Icons"); + addPathToList(panel->icoL, -1, PREFIX "/share/pixmaps"); -+ addPathToList(panel->icoL, -1, PREFIX "/share/WindowMaker/Icons"); -+ addPathToList(panel->icoL, -1, PREFIX "/share/WindowMaker/Pixmaps"); - addPathToList(panel->icoL, -1, "/usr/share/WindowMaker/Icons"); ++ addPathToList(panel->icoL, -1, PREFIX "/share/" PACKAGE_TARNAME "/Icons"); ++ addPathToList(panel->icoL, -1, PREFIX "/share/" PACKAGE_TARNAME "/Pixmaps"); } else { for (i = 0; i < WMGetPropListItemCount(array); i++) { -@@ -95,7 +95,7 @@ static void showData(_Panel * panel) + val = WMGetFromPLArray(array, i); +@@ -95,7 +94,7 @@ static void showData(_Panel * panel) wwarning(_("bad value in option PixmapPath. Using default path list")); addPathToList(panel->pixL, -1, "~/pixmaps"); - addPathToList(panel->pixL, -1, "~/GNUstep/Library/WindowMaker/Pixmaps"); -- addPathToList(panel->pixL, -1, "/usr/local/share/WindowMaker/Pixmaps"); -+ addPathToList(panel->pixL, -1, PREFIX "/share/WindowMaker/Pixmaps"); + addPathToList(panel->pixL, -1, "~/" GSUSER_SUBDIR "/" USERDATA_SUBDIR "/" PACKAGE_TARNAME "/Pixmaps"); +- addPathToList(panel->pixL, -1, "/usr/local/share/" PACKAGE_TARNAME "/Pixmaps"); ++ addPathToList(panel->pixL, -1, PREFIX "/share/" PACKAGE_TARNAME "/Pixmaps"); } else { for (i = 0; i < WMGetPropListItemCount(array); i++) { val = WMGetFromPLArray(array, i); diff --git a/x11-wm/windowmaker/files/patch-configure b/x11-wm/windowmaker/files/patch-configure deleted file mode 100644 index 21de9e03d0bf..000000000000 --- a/x11-wm/windowmaker/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2020-04-05 13:42:01 UTC -+++ configure -@@ -14305,7 +14305,7 @@ case "$host" in #( - *-*-linux*|*-*-cygwin*|*-gnu*) : - WM_OSDEP="linux" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600" ;; #( - *-*-freebsd*|*-k*bsd-gnu*) : -- WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD" ;; #( -+ WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=700 -DFREEBSD" ;; #( - *-*-netbsd*) : - WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -DNETBSD" ;; #( - *-*-openbsd*) : diff --git a/x11-wm/windowmaker/files/patch-src__Makefile.in b/x11-wm/windowmaker/files/patch-src__Makefile.in index bcb2929c750a..6cb443173c47 100644 --- a/x11-wm/windowmaker/files/patch-src__Makefile.in +++ b/x11-wm/windowmaker/files/patch-src__Makefile.in @@ -1,27 +1,28 @@ --- src/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ src/Makefile.in @@ -173,8 +173,7 @@ am_wmaker_OBJECTS = actions.$(OBJEXT) appicon.$(OBJEXT @USE_NESTED_FUNC_FALSE@ xmodifier.hack_nf.$(OBJEXT) wmaker_OBJECTS = $(am_wmaker_OBJECTS) $(nodist_wmaker_OBJECTS) wmaker_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la + $(top_builddir)/WINGs/libWUtil.la AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent -@@ -467,13 +466,12 @@ wmaker_SOURCES = GNUstep.h WindowMaker.h actions.c act +@@ -467,14 +466,13 @@ wmaker_SOURCES = GNUstep.h WindowMaker.h actions.c act @USE_NESTED_FUNC_FALSE@CLEANFILES = $(nodist_wmaker_SOURCES) AM_CFLAGS = AM_CPPFLAGS = $(DFLAGS) \ -- -I$(top_srcdir)/wrlib \ - -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ +- -I$(top_builddir)/wrlib \ + -I$(top_srcdir)/WINGs -I$(top_builddir)/WINGs \ + @HEADER_SEARCH_PATH@ wmaker_LDADD = \ $(top_builddir)/WINGs/libWINGs.la\ $(top_builddir)/WINGs/libWUtil.la\ - $(top_builddir)/wrlib/libwraster.la\ + -lwraster \ @XLFLAGS@ \ @LIBXRANDR@ \ @LIBXINERAMA@ \ diff --git a/x11-wm/windowmaker/files/patch-util__Makefile.in b/x11-wm/windowmaker/files/patch-util__Makefile.in index 1a763ff886f2..363bf45ec0c0 100644 --- a/x11-wm/windowmaker/files/patch-util__Makefile.in +++ b/x11-wm/windowmaker/files/patch-util__Makefile.in @@ -1,63 +1,63 @@ --- util/Makefile.in.orig 2020-08-13 06:26:57 UTC +++ util/Makefile.in @@ -154,14 +154,13 @@ wdwrite_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil. wmagnify_SOURCES = wmagnify.c wmagnify_OBJECTS = wmagnify.$(OBJEXT) wmagnify_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la + $(top_builddir)/WINGs/libWUtil.la am_wmgenmenu_OBJECTS = wmgenmenu.$(OBJEXT) wmgenmenu_OBJECTS = $(am_wmgenmenu_OBJECTS) wmgenmenu_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la - am_wmiv_OBJECTS = wmiv.$(OBJEXT) + am_wmiv_OBJECTS = wmiv-wmiv.$(OBJEXT) wmiv_OBJECTS = $(am_wmiv_OBJECTS) -wmiv_DEPENDENCIES = $(top_builddir)/wrlib/libwraster.la \ +wmiv_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_wmmenugen_OBJECTS = wmmenugen.$(OBJEXT) wmmenugen_misc.$(OBJEXT) \ + $(top_builddir)/WINGs/libWINGs.la + wmiv_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(wmiv_CFLAGS) $(CFLAGS) \ @@ -172,8 +171,7 @@ wmmenugen_DEPENDENCIES = $(top_builddir)/WINGs/libWUti wmsetbg_SOURCES = wmsetbg.c wmsetbg_OBJECTS = wmsetbg.$(OBJEXT) wmsetbg_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la + $(top_builddir)/WINGs/libWUtil.la wxcopy_SOURCES = wxcopy.c wxcopy_OBJECTS = wxcopy.$(OBJEXT) wxcopy_DEPENDENCIES = @@ -502,7 +500,7 @@ AUTOMAKE_OPTIONS = bin_SCRIPTS = wmaker.inst wm-oldmenu2new wkdemenu.pl EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new wkdemenu.pl AM_CPPFLAGS = \ -- $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \ +- $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_builddir)/wrlib \ + $(DFLAGS) -I$(top_srcdir)/WINGs \ @HEADER_SEARCH_PATH@ \ -DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\" @@ -525,13 +523,13 @@ geticonset_LDADD = $(top_builddir)/WINGs/libWUtil.la $ wmagnify_LDADD = \ $(top_builddir)/WINGs/libWINGs.la \ $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la \ + -lwraster \ @XLFLAGS@ @XLIBS@ @INTLIBS@ wmsetbg_LDADD = \ $(top_builddir)/WINGs/libWINGs.la \ $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la \ + -lwraster \ @XLFLAGS@ @LIBXINERAMA@ @XLIBS@ @INTLIBS@ wmgenmenu_LDADD = \ @@ -548,7 +546,7 @@ wmmenugen_SOURCES = wmmenugen.c wmmenugen.h wmmenugen_ wmmenugen_parse_xdg.c wmiv_LDADD = \ - $(top_builddir)/wrlib/libwraster.la \ + -lwraster \ - @XLFLAGS@ @XLIBS@ \ - @GFXLIBS@ $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) $(LIBEXIF) - + $(top_builddir)/WINGs/libWINGs.la \ + @XLFLAGS@ @XLIBS@ @GFXLIBS@ \ + @PANGO_LIBS@ @PTHREAD_LIBS@ @LIBEXIF@ diff --git a/x11-wm/windowmaker/pkg-plist b/x11-wm/windowmaker/pkg-plist index 565e62437099..3fc01f976e47 100644 --- a/x11-wm/windowmaker/pkg-plist +++ b/x11-wm/windowmaker/pkg-plist @@ -1,411 +1,415 @@ GNUstep/Applications/WPrefs.app/WPrefs GNUstep/Applications/WPrefs.app/WPrefs.tiff GNUstep/Applications/WPrefs.app/WPrefs.xpm GNUstep/Applications/WPrefs.app/tiff/advancetonewworkspace.tiff GNUstep/Applications/WPrefs.app/tiff/animations.tiff GNUstep/Applications/WPrefs.app/tiff/appearance.tiff GNUstep/Applications/WPrefs.app/tiff/clip.tiff GNUstep/Applications/WPrefs.app/tiff/configs.tiff GNUstep/Applications/WPrefs.app/tiff/cycleworkspaces.tiff GNUstep/Applications/WPrefs.app/tiff/dock.tiff GNUstep/Applications/WPrefs.app/tiff/dockclipdrawersection.tiff GNUstep/Applications/WPrefs.app/tiff/dontlinkworkspaces.tiff GNUstep/Applications/WPrefs.app/tiff/drawer.tiff GNUstep/Applications/WPrefs.app/tiff/ergonomic.tiff GNUstep/Applications/WPrefs.app/tiff/expert.tiff GNUstep/Applications/WPrefs.app/tiff/fonts.tiff +GNUstep/Applications/WPrefs.app/tiff/hotcorners.tiff GNUstep/Applications/WPrefs.app/tiff/iconprefs.tiff GNUstep/Applications/WPrefs.app/tiff/keyboard.tiff GNUstep/Applications/WPrefs.app/tiff/keyboardprefs.tiff GNUstep/Applications/WPrefs.app/tiff/keyshortcuts.tiff GNUstep/Applications/WPrefs.app/tiff/menualign1.tiff GNUstep/Applications/WPrefs.app/tiff/menualign2.tiff GNUstep/Applications/WPrefs.app/tiff/menuprefs.tiff GNUstep/Applications/WPrefs.app/tiff/menus.tiff GNUstep/Applications/WPrefs.app/tiff/miscprefs2.tiff GNUstep/Applications/WPrefs.app/tiff/moreanim.tiff GNUstep/Applications/WPrefs.app/tiff/mousesettings.tiff GNUstep/Applications/WPrefs.app/tiff/mousespeed.tiff GNUstep/Applications/WPrefs.app/tiff/msty1.tiff GNUstep/Applications/WPrefs.app/tiff/msty2.tiff GNUstep/Applications/WPrefs.app/tiff/msty3.tiff GNUstep/Applications/WPrefs.app/tiff/newstyle.tiff GNUstep/Applications/WPrefs.app/tiff/nextstyle.tiff GNUstep/Applications/WPrefs.app/tiff/nonopaque.tiff GNUstep/Applications/WPrefs.app/tiff/noopaqueresize.tiff GNUstep/Applications/WPrefs.app/tiff/oldstyle.tiff GNUstep/Applications/WPrefs.app/tiff/opaque.tiff GNUstep/Applications/WPrefs.app/tiff/opaqueresize.tiff GNUstep/Applications/WPrefs.app/tiff/paths.tiff GNUstep/Applications/WPrefs.app/tiff/smallwindow.tiff GNUstep/Applications/WPrefs.app/tiff/smooth.tiff GNUstep/Applications/WPrefs.app/tiff/sound.tiff GNUstep/Applications/WPrefs.app/tiff/speed0.tiff GNUstep/Applications/WPrefs.app/tiff/speed0s.tiff GNUstep/Applications/WPrefs.app/tiff/speed1.tiff GNUstep/Applications/WPrefs.app/tiff/speed1s.tiff GNUstep/Applications/WPrefs.app/tiff/speed2.tiff GNUstep/Applications/WPrefs.app/tiff/speed2s.tiff GNUstep/Applications/WPrefs.app/tiff/speed3.tiff GNUstep/Applications/WPrefs.app/tiff/speed3s.tiff GNUstep/Applications/WPrefs.app/tiff/speed4.tiff GNUstep/Applications/WPrefs.app/tiff/speed4s.tiff GNUstep/Applications/WPrefs.app/tiff/tdel.tiff GNUstep/Applications/WPrefs.app/tiff/tedit.tiff GNUstep/Applications/WPrefs.app/tiff/temp.tiff GNUstep/Applications/WPrefs.app/tiff/textr.tiff GNUstep/Applications/WPrefs.app/tiff/theme.tiff GNUstep/Applications/WPrefs.app/tiff/timer0.tiff GNUstep/Applications/WPrefs.app/tiff/timer0s.tiff GNUstep/Applications/WPrefs.app/tiff/timer1.tiff GNUstep/Applications/WPrefs.app/tiff/timer1s.tiff GNUstep/Applications/WPrefs.app/tiff/timer2.tiff GNUstep/Applications/WPrefs.app/tiff/timer2s.tiff GNUstep/Applications/WPrefs.app/tiff/timer3.tiff GNUstep/Applications/WPrefs.app/tiff/timer3s.tiff GNUstep/Applications/WPrefs.app/tiff/timer4.tiff GNUstep/Applications/WPrefs.app/tiff/timer4s.tiff GNUstep/Applications/WPrefs.app/tiff/timer5.tiff GNUstep/Applications/WPrefs.app/tiff/timer5s.tiff GNUstep/Applications/WPrefs.app/tiff/tnew.tiff GNUstep/Applications/WPrefs.app/tiff/whandling.tiff GNUstep/Applications/WPrefs.app/tiff/windowfocus.tiff GNUstep/Applications/WPrefs.app/tiff/workspace.tiff GNUstep/Applications/WPrefs.app/tiff/workspacename.tiff GNUstep/Applications/WPrefs.app/tiff/xis.tiff bin/convertfonts bin/geticonset bin/getstyle bin/seticons bin/setstyle bin/wdread bin/wdwrite bin/wkdemenu.pl bin/wm-oldmenu2new bin/wmagnify bin/wmaker bin/wmaker.inst bin/wmgenmenu bin/wmiv bin/wmmenugen bin/wmsetbg bin/wxcopy bin/wxpaste etc/WindowMaker/WMGLOBAL etc/WindowMaker/WMRootMenu etc/WindowMaker/WMState etc/WindowMaker/WMWindowAttributes etc/WindowMaker/WindowMaker include/WINGs/WINGs.h include/WINGs/WINGsP.h include/WINGs/WUtil.h include/WMaker.h lib/libWINGs.a lib/libWINGs.so lib/libWINGs.so.3 -lib/libWINGs.so.3.1.0 +lib/libWINGs.so.3.2.0 lib/libWMaker.a lib/libWMaker.so lib/libWMaker.so.1 lib/libWMaker.so.1.0.1 lib/libWUtil.a lib/libWUtil.so lib/libWUtil.so.5 lib/libWUtil.so.5.0.0 libdata/pkgconfig/WINGs.pc libdata/pkgconfig/WUtil.pc libdata/pkgconfig/wmlib.pc share/WINGs/Images.tiff share/WINGs/Images.xpm share/WINGs/defaultIcon.tiff share/WINGs/defaultIcon.xpm share/WindowMaker/Backgrounds/BlueImage.jpeg share/WindowMaker/IconSets/Default.iconset share/WindowMaker/Icons/BitchX.tiff share/WindowMaker/Icons/BitchX.xpm share/WindowMaker/Icons/Drawer.tiff share/WindowMaker/Icons/Drawer.xpm share/WindowMaker/Icons/Ear.png share/WindowMaker/Icons/Ftp.png share/WindowMaker/Icons/GNUstep.tiff share/WindowMaker/Icons/GNUstep.xpm share/WindowMaker/Icons/GNUstep3D.tiff share/WindowMaker/Icons/GNUstep3D.xpm share/WindowMaker/Icons/GNUstepGlow.tiff share/WindowMaker/Icons/GNUstepGlow.xpm share/WindowMaker/Icons/GNUterm.tiff share/WindowMaker/Icons/GNUterm.xpm share/WindowMaker/Icons/GreenWilber.png share/WindowMaker/Icons/ICQ.png share/WindowMaker/Icons/Jabber.png share/WindowMaker/Icons/Magnify.tiff share/WindowMaker/Icons/Magnify.xpm share/WindowMaker/Icons/Mouth.png share/WindowMaker/Icons/Mozilla.png share/WindowMaker/Icons/Pen.png share/WindowMaker/Icons/Pencil.png share/WindowMaker/Icons/README share/WindowMaker/Icons/Real.png share/WindowMaker/Icons/Shell.png share/WindowMaker/Icons/Speaker.png share/WindowMaker/Icons/Terminal.tiff share/WindowMaker/Icons/Terminal.xpm share/WindowMaker/Icons/TerminalGNUstep.tiff share/WindowMaker/Icons/TerminalGNUstep.xpm share/WindowMaker/Icons/TerminalLinux.tiff share/WindowMaker/Icons/TerminalLinux.xpm share/WindowMaker/Icons/Wine.png share/WindowMaker/Icons/XChat.png share/WindowMaker/Icons/clip.tiff share/WindowMaker/Icons/clip.xpm share/WindowMaker/Icons/defaultAppIcon.tiff share/WindowMaker/Icons/defaultAppIcon.xpm share/WindowMaker/Icons/defaultterm.tiff share/WindowMaker/Icons/defaultterm.xpm share/WindowMaker/Icons/draw.tiff share/WindowMaker/Icons/draw.xpm share/WindowMaker/Icons/linuxterm.tiff share/WindowMaker/Icons/linuxterm.xpm share/WindowMaker/Icons/mixer.tiff share/WindowMaker/Icons/mixer.xpm share/WindowMaker/Icons/notepad.tiff share/WindowMaker/Icons/notepad.xpm share/WindowMaker/Icons/pdf.tiff share/WindowMaker/Icons/pdf.xpm share/WindowMaker/Icons/ps.tiff share/WindowMaker/Icons/ps.xpm share/WindowMaker/Icons/real.tiff share/WindowMaker/Icons/real.xpm share/WindowMaker/Icons/sgiterm.tiff share/WindowMaker/Icons/sgiterm.xpm share/WindowMaker/Icons/staroffice2.tiff share/WindowMaker/Icons/staroffice2.xpm share/WindowMaker/Icons/timer.tiff share/WindowMaker/Icons/timer.xpm share/WindowMaker/Icons/wilber.tiff share/WindowMaker/Icons/wilber.xpm share/WindowMaker/Icons/write.tiff share/WindowMaker/Icons/write.xpm share/WindowMaker/Icons/xdvi.tiff share/WindowMaker/Icons/xdvi.xpm share/WindowMaker/Icons/xv.tiff share/WindowMaker/Icons/xv.xpm share/WindowMaker/Pixmaps/swback.png share/WindowMaker/Pixmaps/swback2.png share/WindowMaker/Pixmaps/swtile.png share/WindowMaker/Pixmaps/tile.tiff share/WindowMaker/Pixmaps/tile.xpm share/WindowMaker/README share/WindowMaker/README.themes share/WindowMaker/Styles/Adwaita.style share/WindowMaker/Styles/Autumn.style share/WindowMaker/Styles/Black.style share/WindowMaker/Styles/BlackTexture.style share/WindowMaker/Styles/Blue.style share/WindowMaker/Styles/BlueDawn.style share/WindowMaker/Styles/BlueishGreen.style share/WindowMaker/Styles/Brown.style share/WindowMaker/Styles/Brownish.style share/WindowMaker/Styles/Chumbo.style share/WindowMaker/Styles/Copper.style share/WindowMaker/Styles/DarkBlue.style share/WindowMaker/Styles/DarkRed.style share/WindowMaker/Styles/Emerald.style share/WindowMaker/Styles/Fire.style share/WindowMaker/Styles/Food.style share/WindowMaker/Styles/Golden.style share/WindowMaker/Styles/Green.style share/WindowMaker/Styles/GreyBlue.style share/WindowMaker/Styles/Gtk.style share/WindowMaker/Styles/IRednBlue.style share/WindowMaker/Styles/Interlace.style share/WindowMaker/Styles/LightBlue.style share/WindowMaker/Styles/NewBlue.style share/WindowMaker/Styles/NightSky.style share/WindowMaker/Styles/Pastel.style share/WindowMaker/Styles/Pink.style share/WindowMaker/Styles/Pumpkin.style share/WindowMaker/Styles/Purple.style share/WindowMaker/Styles/Purplish.style share/WindowMaker/Styles/Red.style share/WindowMaker/Styles/RednBlue.style share/WindowMaker/Styles/Spring.style share/WindowMaker/Styles/Summer.style share/WindowMaker/Styles/Traditional.style share/WindowMaker/Styles/VioletBlue.style share/WindowMaker/Themes/Blau.style share/WindowMaker/Themes/Default.style 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/menu.bg share/WindowMaker/menu.ca share/WindowMaker/menu.cz share/WindowMaker/menu.da share/WindowMaker/menu.de share/WindowMaker/menu.el share/WindowMaker/menu.es share/WindowMaker/menu.fi share/WindowMaker/menu.fr share/WindowMaker/menu.fy share/WindowMaker/menu.gl share/WindowMaker/menu.he share/WindowMaker/menu.hr share/WindowMaker/menu.hu share/WindowMaker/menu.it share/WindowMaker/menu.ja share/WindowMaker/menu.ko share/WindowMaker/menu.nl share/WindowMaker/menu.no share/WindowMaker/menu.pl share/WindowMaker/menu.pt share/WindowMaker/menu.ro share/WindowMaker/menu.ru share/WindowMaker/menu.se share/WindowMaker/menu.sk share/WindowMaker/menu.sl share/WindowMaker/menu.tr share/WindowMaker/menu.zh_CN share/WindowMaker/menu.zh_TW share/WindowMaker/plmenu share/WindowMaker/plmenu.bg share/WindowMaker/plmenu.da share/WindowMaker/plmenu.de share/WindowMaker/plmenu.es share/WindowMaker/plmenu.fi share/WindowMaker/plmenu.fr share/WindowMaker/plmenu.fy share/WindowMaker/plmenu.hr share/WindowMaker/plmenu.it share/WindowMaker/plmenu.ja share/WindowMaker/plmenu.ko share/WindowMaker/plmenu.nl share/WindowMaker/plmenu.pl share/WindowMaker/plmenu.ro share/WindowMaker/plmenu.sk share/WindowMaker/plmenu.zh_CN share/WindowMaker/plmenu.zh_TW share/WindowMaker/wmmacros %%NLS%%share/locale/be/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/bg/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/bg/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/bg/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/bs/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/ca/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/ca/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/ca/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/cs/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/cs/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/cs/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/da/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/de/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/de/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/de/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/de/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/el/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/es/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/es/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/es/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/et/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/et/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/fi/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/fi/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/fr/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/fr/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/fr/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/fr/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/fy/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/fy/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/fy/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/fy/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/gl/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/hr/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/hr/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/hu/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/hu/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/hu/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/hy/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/it/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/it/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/ja/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/ja/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/ko/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/ko/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/ms/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/nl/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/nl/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/nl/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/nl/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/no/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/pl/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/pt/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/pt/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/pt/LC_MESSAGES/wmgenmenu.mo %%NLS%%share/locale/ro/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/ru/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/ru/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/sk/LC_MESSAGES/WINGs.mo %%NLS%%share/locale/sk/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/sk/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/sv/LC_MESSAGES/WindowMaker.mo +%%NLS%%share/locale/tr/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/tr/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/uk/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/uk/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/WindowMaker.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/WPrefs.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/WindowMaker.mo %%NLS%%man/cs/man1/geticonset.1.gz %%NLS%%man/cs/man1/getstyle.1.gz %%NLS%%man/cs/man1/seticons.1.gz %%NLS%%man/cs/man1/setstyle.1.gz %%NLS%%man/cs/man1/wdwrite.1.gz %%NLS%%man/cs/man1/wmaker.1.gz %%NLS%%man/cs/man1/wmsetbg.1.gz %%NLS%%man/cs/man1/wxcopy.1.gz %%NLS%%man/cs/man1/wxpaste.1.gz man/man1/WPrefs.1.gz man/man1/WindowMaker.1.gz man/man1/geticonset.1.gz man/man1/getstyle.1.gz man/man1/seticons.1.gz man/man1/setstyle.1.gz man/man1/wdread.1.gz man/man1/wdwrite.1.gz man/man1/wmagnify.1.gz man/man1/wmaker.1.gz man/man1/wmgenmenu.1.gz man/man1/wmiv.1.gz man/man1/wmmenugen.1.gz man/man1/wmsetbg.1.gz man/man1/wxcopy.1.gz man/man1/wxpaste.1.gz %%NLS%%man/ru/man1/geticonset.1.gz %%NLS%%man/ru/man1/getstyle.1.gz %%NLS%%man/ru/man1/seticons.1.gz %%NLS%%man/ru/man1/setstyle.1.gz %%NLS%%man/ru/man1/wdwrite.1.gz %%NLS%%man/ru/man1/wmaker.1.gz %%NLS%%man/ru/man1/wmsetbg.1.gz %%NLS%%man/ru/man1/wxcopy.1.gz %%NLS%%man/ru/man1/wxpaste.1.gz %%NLS%%man/sk/man1/geticonset.1.gz %%NLS%%man/sk/man1/getstyle.1.gz %%NLS%%man/sk/man1/seticons.1.gz %%NLS%%man/sk/man1/setstyle.1.gz %%NLS%%man/sk/man1/wdwrite.1.gz %%NLS%%man/sk/man1/wmaker.1.gz %%NLS%%man/sk/man1/wmsetbg.1.gz %%NLS%%man/sk/man1/wxcopy.1.gz %%NLS%%man/sk/man1/wxpaste.1.gz +share/applications/WPrefs.desktop +share/xsessions/wmaker.desktop @dir GNUstep/Applications/WPrefs.app/xpm @dir share/WindowMaker/Sounds