summaryrefslogtreecommitdiff
path: root/wm/windowmaker
AgeCommit message (Collapse)AuthorFilesLines
2005-07-09gnustepdir fixadam1-2/+1
2005-07-08Changes 0.92.0:adam12-181/+137
* added support for X Input Methods * improved hiding/unhiding animations to be quicker and do less icon shuffling * fixed gcc and libxft complilation issues * fixed many bugs
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-16Include converters/libiconv/buildlink3.mk to make this pkg buildkristerw1-1/+2
on NetBSD 1.6.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2005-01-04Recalculate hash for patch-alsekiya1-2/+2
2005-01-04Add RCS ID.sekiya1-0/+2
2005-01-0464-bit fixes. Based on Xning Lee's patchset sent to port-amd64@; changed thesekiya3-7/+51
unsigned int -> long transformation to unsigned int -> unsigned long, just in case.
2004-12-28Bump PKGREVISIONs due to libtiff update.reed2-3/+4
Some BUILDLINK_RECOMMENDED bumps done also. (If I missed any, please let me know -- and let me know a good way to automate this.)
2004-11-25Fix get-wraster-flags script to include Xft2 and fontconfig librariesadam2-1/+15
2004-11-15Add pre-requisite headers necessary to compile this package with strict X11sketch3-1/+28
implementations, tested with OpenWindows.
2004-11-12Fix a C99-ism to make this pkg build with gcc 2.95.kristerw2-1/+17
2004-11-05Modify some things I don't like:xtraeme1-3/+2
* This package doesn't need USE_X11BASE, USE_X11 is enough. * The Hermes dependency is not really needed. No need to bump PKGREVISION this time.
2004-11-05Changes 0.91.0:adam11-167/+165
* Alt-Tab Window Switching Changes 0.90.0: * NetWM / EWMH Support * Antialiased font support * Global Submenus * UTF-8 Support * Icon Panel for Alt-Tabbing
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-05-14Derive PKGNAME from DISTNAME. While here, fix a typo in a comment.jmmv1-3/+3
2004-04-24Relinquish maintainership of packages to tech-pkg@NetBSD.org.jlam1-2/+2
2004-04-12No longer used.snj1-34/+0
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-9/+8
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-25bl3ifyminskim2-9/+37
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-01In the new compiler selection framework, GCC_REQD is appended to, notjlam1-2/+2
overridden.
2004-01-07From the log for rev. 1.1260 of bsd.pkg.mk:jlam1-2/+2
"Package Makefiles should refer to PKG_SYSCONFBASEDIR instead of PKG_SYSCONFBASE when they want PKG_SYSCONFDIR stripped of PKG_SYSCONFSUBDIR. This makes PKG_SYSCONFBASE=/etc work with pkgviews by installing all config files into /etc/packages/<pkg> instead of occasionally putting some directly into /etc."
2004-01-03Bump package revisions for tiff update.reed2-4/+4
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-09-17get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD orgrant1-5/+5
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-09-12kill all references to gcc.buildlink2.mk and compiler.mk, and definegrant1-3/+2
USE_GCC2 or USE_GCC3 where appropriate. the functionality of the old gcc.buildlink2.mk has been rolled into compiler.mk now, which is automatically used. more changes to come later...
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz2-4/+4
2003-06-11Update for the fact that 'arm' ports have been called NetBSD-*-arm for a whileabs1-4/+4
now and not NetBSD-*-arm32. Changes include one or more of: - Change MACHINE_ARCH == arm32 to also match arm - Where ONLY_FOR_PLATFORM includes NetBSD-*-arm32, add NetBSD-*-arm - Where BROKEN or worked around for arm gcc bugs, set USE_GCC3 The last may shake out a few more broken packages the next bulk build.
2003-04-27Lint: USE_PKGLOCALEDIR=yes. Remove VERS.cjep1-4/+4
2003-04-26Add "windowmaker" as a secondary category; it already existed, but containedjmmv1-2/+2
a single package.
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2003-01-08Install configuration files under the examples hierarchy and usejmmv4-10/+34
bsd.pkg.install.mk to copy them to PKG_SYSCONFDIR. Bump PKGREVISION to 1. This closes my own PR pkg/16966 (which proposed a different, wrong change).
2002-11-21Update "windowmaker" package to version 0.80.2.tron2-5/+5
Changes since version 0.80.1: - Fixed buffer overflow in libwraster
2002-11-07Instead of "${CC} -E", which is ambiguous when cc can't deduce thejlam1-3/+2
extension language, use "${CPP}" instead, which should point to the correct value to invoke the C preprocessor. Fixes pkg/18737 by Matthias Friedrich.
2002-11-06Fix path to C preprocessor embedded into WindowMaker to be "cc -E". Thisjlam1-1/+3
addresses pkg/18737 by Matthias Friedrich.
2002-10-09Unused.wiz1-81/+0
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-08-26Remove non existing file "share/locale/zh_TW.Big5/LC_MESSAGES/WPrefs.mo"tron1-2/+1
from package list.
2002-08-25Update to 0.80.1mjl1-14/+15
- 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
2002-08-25Update to 0.80.1mjl2-5/+8
- 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
2002-08-25Update to 0.80.1mjl1-4/+5
- 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
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam3-22/+52
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-06-26Substitute a couple of `mkdir' by `${MKDIR}'.seb1-2/+2
Remove `-p' from mkdir arguments, it is already part of ${MKDIR}. While here substitute a couple of ${PREFIX} by `%D' in `@exec ${MKDIR} ...' lines and add a couple of missing `%D' in such lines too!
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb2-3/+4
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2002-02-15mkdir -> ${MKDIR}skrll1-2/+2
rmdir -> ${RMDIR} rm -> ${RM} (${RM} added to PLIST_SUBST) chmod -> ${CHMOD} chown -> ${CHOWN}
2001-12-25Update to 0.80.0.wiz7-72/+36
[Note: If you've used Windowmaker before, you might want to read the NEWS file included with the distribution (on each update, really).] More interesting changes: - Disabled window birth animation by default (while it was ok with normal windows, it was very annoying with menus editing in WPrefs.app) - Added ability to shade/unshade a window using the mouse wheel. - Added "Save workspace state" switch button on the exit confirmation panel (based on a patch sent by Jan Tomka <judas@linux.sk>) - SIGTERM is now handled and saves the internal state before exiting (like SIGHUP and SIGINT already do). Now a "kill wmaker_pid" will exit cleanly saving dock/clip/session information on exit. - Deminiaturizing a window that is also shaded, will perform an unshade too. (Note that this only applies to deminiaturizing shaded windows. Unhiding an application will keep the shaded/unshaded state of windows.) - Removed compile time option for definable cursors and made them available by default. - Mapping a new window that belongs to a running application that is hidden, will unhide the application. - Removed the collapse appicons thing. - Added real appicon sharing (apps of the same kind will have a single shared appicon). - Fixed user and global defaults domain merging to preserve values present in global but not in user, in sub-dictionaries. - Made dock/clip steal appicons of applications that were started from a shell/xterm or from the main menu, if there is a docked appicon of that class that is not running at the time the app is launched. - Added animation to show that the appicon was stolen by the dock (the way NEXTSTEP did - map an appicon as it normally would have been, then slide it to the position the docked appicon is). - Updated the animation constants for scrolling/sliding/shading to better adapt to newer/faster machines. Also used wusleep(10) when the delay was 0 to get rid of the jerky animation when there was no delay. - Saving a domain file will first strip all entries that are also present in the global domain as well and are exactly the same. This fixes a bug where settings from the global domain file were merged in the user domain file and further changes in the global domain file for those merged values was ignored making a system admin unable to set global defaults for all users using the global domains. Also, some bug fixes and localization updates.