Commit graph

1052 commits

Author SHA1 Message Date
rpaulo
fb341d3296 Change maintainer. 2006-09-02 12:07:52 +00:00
abs
a7dbdb5e05 Update wm/jwm to v1.8rc1:
* Removed the "Icons" tag. Now "IconPath" is specified within
      the "JWM" tag instead.
    * Now "DoubleClickDelta" is used to determine if the mouse
      moved after a menu pops up.
    * Added support for multiple startup and shutdown commands.
    * Added the ability to move a window with Alt+click (Jeremy Reed).
    * Now shaded status is preserved when minimizing windows.
    * Reduced border flicker.
    * Support for multiple root menus.
    * Allow window operations in root menus.
    * Add "RestartCommand".
    * Fixed a key binding issue with key codes.
2006-09-01 15:43:10 +00:00
joerg
97b9bc64c9 pkg-config is still a tool, not a language. 2006-08-30 07:25:50 +00:00
wiz
95fd80081a Update MASTER_SITES. 2006-08-23 18:55:57 +00:00
kristerw
5c0b4beded Correct name for bbkeys09 and bbpager04. 2006-08-21 21:31:59 +00:00
jschauma
34030947a9 fix PLIST 2006-08-20 23:15:25 +00:00
jschauma
31435778db add/enable bbkeys09, bbpager04, blackbox70
have older versions conflict with these newer incompatible versions
2006-08-20 23:08:44 +00:00
jschauma
1b21c28f6f By popular demand:
Finally add packages for the "new" version of blackbox, 0.70.x.
This window manager is incompatible with older versions, and older
add-on applications (aka "bbtools") will not work with this version.
Hence, add new versions of bbkeys and bbpager as well, to provide
at least the basics.  (Again, these will not work with older versions.)
Why are we adding these?  Well, I'm told that blackbox 0.70.x is
fully EWMH compliant and has better fonts.  And people always ask
"why is blackbox 0.70.x not in pkgsrc?".

blackbox version 0.65 and the other bbtools that work with blackbox
will remain in pkgsrc.
2006-08-20 23:07:17 +00:00
wiz
0d0d59cb4f Update to 20060524:
2006-05-24 16:22 UTC  Tuomo Valkonen
  tagged ion-3ds-20060524

2006-05-20 09:10 UTC  Tuomo Valkonen
  * One more gsub update...

2006-05-19 16:34 UTC  Tuomo Valkonen
  * More Lua 5.1 stuff: use # instead of table.getn.

2006-05-23 06:12 UTC  Tuomo Valkonen
  * An assert had moved to the wrong place.

2006-05-19 06:48 UTC  Tuomo Valkonen
  * Few more backticks.

2006-05-19 07:12 UTC  René van Bevern
  * take ioncore_bindings.lua of ion3 to lua 5.1

2006-05-18 23:06 UTC  Tuomo Valkonen
  tagged ion-3ds-20060519

2006-05-18 23:05 UTC  Tuomo Valkonen
  * Added new release notes.

2006-05-18 23:05 UTC  Tuomo Valkonen
  * Updated README.autoconf.

2006-05-18 23:01 UTC  Tuomo Valkonen
  * Added a few more backticks to RELNOTES and README.

2006-05-19 02:19 UTC  Matthieu.Moy
  * Use -lm and -ldl in the test for -llua

2006-05-18 13:21 UTC  Tuomo Valkonen
  * Markdownized README as well.

2006-05-18 13:04 UTC  Tuomo Valkonen
  * Small changes in RELNOTES for markdown processing for web.

2006-05-17 15:26 UTC  Tuomo Valkonen
  * Updated TODO.riot.

2006-05-17 16:51 UTC  Matthieu.Moy
  * bugfix in lua 5.1 + other usefull checks
  The test for the liblua version was completely buggy. Sorry.

  Tests added for other headers:
  X11/SM/SMlib.h, X11/Xresource.h and libintl.h
  (with error messages pointing to the name of Debian packages)

  Test for xmessage (with a warning only, since ion can probably still
  work without xmessage)



2006-05-17 13:39 UTC  Matthieu.Moy
  * Update configure.ac for lua 5.1

2006-05-16 18:39 UTC  Sergej Pupykin
  * sigusr2

  Allows to create lua hook for SIGUSR2.
  Can be usefull (for example) for status line changing from media player...

  Usage example:
   ioncore.get_hook("ioncore_sigusr2_hook"):add(
       function(reg)
           mod_statusbar.inform("status_name", "SIGUSR2 catched")
           mod_statusbar.update()
       end
   )

2006-05-16 17:32 UTC  Tuomo Valkonen
  * README etc. updates.

2006-05-16 17:24 UTC  Tuomo Valkonen
  * Fixed string.gsub issues with Lua 5.1.

  Lua 5.0:
  "... If the value returned by this function is a string, then it is
  used as the replacement string; otherwise, the replacement string is the
  empty string."

  Lua 5.1:
  "If the value returned by the table query or by the function call is a string
  or a number, then it is used as the replacement string; otherwise, if it is
  false or nil, then there is no replacement (that is, the original match is
  kept in the string)."


2006-05-16 16:20 UTC  Tuomo Valkonen
  * Few more missing table-iteration changes.

2006-03-24 00:19 UTC  Etan Reisner
  * lua5.1 incompatible changes
  The _LOADED variable became package.loaded.
  The contents of lualib were merged into lua itself, so remove -llualib from the build line.
  Debian now uses pkg-config for the lua stuff not lua-config.

2006-03-24 00:09 UTC  Etan Reisner
  * lua5.1 backwards compatible changes
  Whether intentional or not lua 5.1 no longer allows
  tab={}
  for k,v in tab do
      ...
  end
  and requires
  for k,v in pairs(tab) do
      ...
  end
  instead.

2006-05-06 21:18 UTC  Tuomo Valkonen
  * Do not spew out stack traces all the time when warn() is called.

2006-04-26 17:49 UTC  Tuomo Valkonen
  * framed_transients is on by default now.

2006-04-26 17:45 UTC  Tuomo Valkonen
  * Added WFrame.toplevel and WMPlex.toplevel binding maps.
  - These are not used by frames for transients.
  - Changed the default bindings accordingly.

2006-04-22 16:08 UTC  Tuomo Valkonen
  * Added toggle for showing tab numbers.
  - WFrame:set_numbers with the usual 'set'/'unset'/'toggle' parametrisation.

2006-04-20 19:19 UTC  Tuomo Valkonen
  * Removed obsolete references to -i18n flag.

2006-04-13 22:05 UTC  Tuomo Valkonen
  * The frame_add_last option had been broken.
  - Since switching to use of placeholders for initial management
    setup, the flag was no longer checked.

2006-04-02 19:36 UTC  Tuomo Valkonen
  * Added stuff for accessing regions with activity/urgency bit set.

2006-04-02 19:33 UTC  Tuomo Valkonen
  * Extended Mod1+K K binding.
  - Go to first region demanding attention or previously active region:
    "ioncore.activity_goto() or ioncore.goto_previous()".

2006-04-01 14:38 UTC  Tuomo Valkonen
  * Separated and cleaned up some stacking code from mod_floatws.

2006-03-31 18:14 UTC  Tuomo Valkonen
  * Changes in default_ws_type lookup.

2006-03-28 20:18 UTC  Tuomo Valkonen
  * Use SIZEPOLICY_FULL_BOUNDS for client windows in mplexes.
  - Needed to communicate available area for transients.

2006-03-26 09:37 UTC  Tuomo Valkonen
  tagged ion-3ds-20060326

2006-03-23 16:15 UTC  Tuomo Valkonen
  * Included a TODO list.

  The TODO.riot file has been created with the riot outliner available from
  <http://iki.fi/tuomov/riot/>. The file is, however, just an mbox file, so
  you can read it with your favourite threading mail user agent. For example:
  mutt -f TODO.riot

2006-03-20 23:08 UTC  Tuomo Valkonen
  * Enforce win_gravity=NorthWestGravity for client windows.
  - Fixes issues with OO.org's transients in framed mode.

2006-03-18 22:19 UTC  Tuomo Valkonen
  * Changes in default appmenu.
  - Removed firefox (won't promote gtk shit).
  - Added opera, konqueror, dillo, w3m, links, rxvt.

2006-03-18 12:58 UTC  Tuomo Valkonen
  * Ah, -Wl,-whole-archive is a better hack.

2006-03-18 12:48 UTC  Tuomo Valkonen
  * Link PWM also with the -u ptrlist_iter gcc lameness hack.

2006-03-17 20:49 UTC  Tuomo Valkonen
  * Some more winprop/sizepolicy changes.

2006-03-17 19:42 UTC  Tuomo Valkonen
  tagged ion-3ds-20060317

2006-03-17 10:22 UTC  Tuomo Valkonen
  * Oops. Previous change incomplete.

2006-03-17 10:07 UTC  Tuomo Valkonen
  * default_ws_type is no longer set by config files and could confuse things. Fixed.

2006-03-15 23:00 UTC  Tuomo Valkonen
  * Changes in look file fonts.
  - Refer directly to -*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-* as
    the 'fixed' alias has problems with encodings.

2006-03-15 18:59 UTC  Tuomo Valkonen
  * Timer signal object passing to Lua side was broken.
  (Weak typing...)

2006-03-15 18:23 UTC  Tuomo Valkonen
  * Changes in the set of configuration files.
  - cfg_ion.lua now simply load cfg_ioncore.lua and cfg_modules.lua
    with the default set of modules, and includes some of the most
    commonly changed options commented-out. This deprecates cfg_user.lua
  - cfg_menus.lua and cfg_bindings.lua are now cfg_ioncore.lua. This
    better matches how things for different modules are in their own
    files.

2006-03-12 12:29 UTC  Tuomo Valkonen
  * Embedded dock initilisation code had been broken. Fixed.

2006-03-11 09:05 UTC  Tuomo Valkonen
  * Oops. The stretch size policy used wrong variables.

2006-03-11 08:58 UTC  Tuomo Valkonen
  * Different query-menus use different history context.

2006-03-08 20:03 UTC  Tuomo Valkonen
  * Oops. The new client window code used wrong "llist" iterator.
  This could cause segfaults.

2006-03-08 19:46 UTC  Tuomo Valkonen
  * Oops. Closing a transient had started warping to remaining transient(s).

2006-03-07 10:32 UTC  Tuomo Valkonen
  * Fixed binding lookup code to be able to deal with zero keycodes.
  - This may happen if X keycode to keysym mapping is changed
    while Ion is running.

2006-03-06 23:20 UTC  Tuomo Valkonen
  * Oops. If there were winprops set, SIZEPOLICY_DEFAULT was used for transients.

2006-03-05 13:44 UTC  Tuomo Valkonen
  tagged ion-3ds-20060305

2006-03-05 13:42 UTC  Tuomo Valkonen
  * 'ru' was missing from list of translations in po/Makefile.

2006-03-05 13:39 UTC  Tuomo Valkonen
  * frame_rqgeom_clientwin passes rqflags as-is.

2006-03-05 13:30 UTC  Tuomo Valkonen
  * SIZE_POLICY_FREE_GLUE is now properly used for transients.

2006-03-05 13:28 UTC  Tuomo Valkonen
  * Added -u ptrlist_iter linking hack to gcc/ld.
  - Otherwise ptrlist.o from libtu won't get linked as it will no longer
    used by the main binary, and thus the modules won't have access to it.

2006-03-05 10:59 UTC  Tuomo Valkonen
  * Improved free_glue and stretch size policies.

2006-03-02 18:49 UTC  Tuomo Valkonen
  * Added SIZEPOLICY_FREE_GLUE and other size policy code changes.
  (TODO: client windows need to store state for this for transients.)

2006-02-26 16:25 UTC  Tuomo Valkonen
  * Client windows use the same (mplex) size policies for transients now.

2006-02-26 00:17 UTC  Tuomo Valkonen
  * Oops. MPlex attach code changes had broken mgd. region ordering on load.

2006-02-25 17:31 UTC  Tuomo Valkonen
  * Added some size policies with gravity.

2006-02-24 19:23 UTC  Tuomo Valkonen
  * Separated mplex size policy in new file, and independent of mplex.

2006-02-22 13:34 UTC  Tuomo Valkonen
  * Append '/' to submenu entries in query_menu.

2006-02-19 16:37 UTC  Tuomo Valkonen
  * Some mplex attach code cleanup.

2006-02-19 16:07 UTC  Tuomo Valkonen
  * Reduced usage of REGION_FIT_BOUNDS a little.

2006-02-19 00:41 UTC  Tuomo Valkonen
  * Updated dock to reflect previous mplex size policy changes.

2006-02-18 20:39 UTC  Tuomo Valkonen
  * Removed the WScratchpad class.
  - Scratchpads are now simply normal WFrames with MPLEX_SIZEPOLICY_FREE.

2006-02-18 20:31 UTC  Tuomo Valkonen
  * Added WMPlex managed region size policy support.

2006-02-18 18:53 UTC  Tuomo Valkonen
  * Fixed "./" being included in completed file name in query_exec.
  - Also brought mod_query.popen_completions documentation up-to-date.

2006-02-15 07:29 UTC  Tuomo Valkonen
  * Fixed load_hint.
  - Stupid unsafe dynamically-typed languages...

2006-02-12 16:03 UTC  Tuomo Valkonen
  * Let's call it statusbar_ instead of status_ after all...

2006-02-12 15:59 UTC  Tuomo Valkonen
  * Oops. Should check for sb meter value being null when shortening it.

2006-02-12 15:30 UTC  Tuomo Valkonen
  * mod_statusbar tries to load scripts before falling back to statusd.
  - If status_foobar(.lua|.lc) is found on the search path, -m foobar
    is not passed to ion-statusd.

2006-02-12 15:19 UTC  Tuomo Valkonen
  * Added region_activity_hook.
  - Called when the activity flag of a region is changed with the
    region as parameter.

2006-02-12 15:07 UTC  Tuomo Valkonen
  * Framed transients' size requests get handled now.

2006-02-11 15:35 UTC  dev at triphoenix.de
  * completefile-groupexec

  Although ion-completefile does check if any matching executable is
  world-executable or user-executable, it doesn't check for
  group-executable. This is problematic for example on systems, where
  games are installed with r-xr-x--- and root:games (which seems to be a
  common method). This introduces a check for the group id, basically it
  gets all groups for the current user and checks if any of them is
  applicable. This is only done when the user and world checks already
  have failed and the group-executable bit is set.


2006-02-08 07:42 UTC  Tuomo Valkonen
  * ion-statusd catches SIGCHLD.

2006-02-07 21:37 UTC  Tuomo Valkonen
  * Improved comments in cfg_statusbar.lua.

2006-02-06 20:56 UTC  Tuomo Valkonen
  * Changed query_menu title transformation.
  * Lua's regexp routines don't understand utf-8 or other multibyte encodings.
  * TODO: conversion to lower case of non-ascii letters.

2006-02-01 18:05 UTC  Vassily Leushin
  * russian_locale

2006-01-29 15:27 UTC  Tuomo Valkonen
  * Statusbar meter template is respected as maximum size for meter.

2006-01-25 23:57 UTC  Tuomo Valkonen
  * Added dummy gettext hack for those labels.

2006-01-25 23:54 UTC  Tuomo Valkonen
  * Added context menu label support.

2006-01-25 16:30 UTC  Tuomo Valkonen
  * Do not try to resize the statusbar unnecessarily.

2006-01-21 23:47 UTC  ludal at logilab.fr
  * fixes random segfaults
  With ion-3ds-20060107 I see random segfaults I can reproduce navigating
  some website with galeon. This patch seems to fix the problem (and the
  original code looked wrong)

2006-01-21 21:35 UTC  Tuomo Valkonen
  * Oops. A function wasn't marked local.

2006-01-21 20:57 UTC  Tuomo Valkonen
  * Oops. Counter wasn't incremented in statusbar list building.

2006-01-20 21:16 UTC  Tuomo Valkonen
  * Updated/fixed PWM bindings configuration.

2006-01-20 17:36 UTC  Tuomo Valkonen
  * Statusbar uses PtrLists instead of ObjLists.
  (Stuff gets removed from ObjLists before the manager's removal handler
  is called.)

2006-01-19 19:24 UTC  Etan Reisner
  * Use the table values we are iterating over.

2006-01-14 20:10 UTC  Tuomo Valkonen
  * Previous completion behaviour change broke something..

2006-01-11 17:12 UTC  Tuomo Valkonen
  * Fixed a problem in statusbar winprop usage.
2006-08-14 22:42:04 +00:00
wiz
cdada5ff70 Adapt to lua-5.1.1. Bump PKGREVISION. 2006-08-14 22:37:57 +00:00
reed
48ee3e05b2 Use the pkgsrc dependencies for Xft2 and xpm (instead of wip). 2006-08-07 13:33:01 +00:00
wiz
a6f0729c6e Needs cc too. 2006-08-06 10:45:44 +00:00
kristerw
4c879300fc Remove BROKEN_IN for packages that built in the latest
NetBSD 3.0_STABLE/i386 bulk build.
2006-08-06 05:20:40 +00:00
reed
60d359c0dc Imported jwm window manager from pkgsrc-wip. 2006-08-04 01:10:42 +00:00
reed
18e5315660 Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.

JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations.  JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.

(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
2006-08-04 01:08:21 +00:00
joerg
92e418df2f Xinerama needs Xext, so reorder the library includes. 2006-07-27 23:11:04 +00:00
jlam
ccdf6dbe01 Rename "SITES_* to "SITES.*" for file-specific lists of sites from which
to fetch the file.  This completes the renaming described in revision
1.1799 of bsd.pkg.mk.
2006-07-27 18:48:02 +00:00
jlam
e7af7b2e05 Apply the "convention over configuration" principle:
If ${FILESDIR}/getsite.sh exists, then use it to determine the fetch
URL for each of the distfiles for the package.  Otherwise, use
SITE_<file> and MASTER_SITES, in order, to determine the URL for each
distfile.

If the script path differs from ${FILESDIR}/getsite.sh, then set
DYNAMIC_SITE_SCRIPT to the full path to that script.

Remove the need to set DYNAMIC_MASTER_SITES explicitly in the package
Makefile for:

	graphics/ns-cult3d
	wm/sawfish-themes
	www/apache-tomcat55
	www/jakarta-tomcat4
	www/jakarta-tomcat5
2006-07-27 15:16:44 +00:00
drochner
e80295741c update to 2.14.5
changes:
-gugfixes
-translation updates
2006-07-26 12:41:16 +00:00
martti
f232e2a219 Updated wm/fvwm-devel to 2.5.17
* New features:

   - New MenuStyle options TitleFont, TitleColorset and
     HilightTitleBack.
   - New command PressButton in module FvwmButtons for being able
     to emulate button press via other means than the mouse.
   - New wrap options to EdgeScroll command for wrapping with pixel
     distances.
   - New Style option UnderMousePlacement.
   - Unused arguments to Style options generate warnings.
   - The name style names match against can be augmented by the
     X-resource "fvwmstyle".
   - New options, Reverse and UseStack, to All command.
   - WindowShade can now reshade windows using the Last direction.
   - Positional parameters to complex functions can now be expanded
     using $[n], $[n-m], $[n-] and $[*] expressions.
   - The width and height arguments of the Resize command now
     accept the prefix 'w' to allow resizing relative to the
     current window size.
   - New command ModuleListenOnly.
   - New "Periodic" option added to Schedule command.

* Bug Fixes:

   - Fixed detection of running non-ICCCM2 wm (bug #3151).
   - Fixed drawing of menus with the sidepic on the right.
   - EdgeScroll no longer divides pixel distances >1000 by 1000.
     (bug #3162).
   - The configure script can now cope with four-part version
     numbers when detecting some libraries.
   - The WarpToWindow command followed by Move in a complex
     function now uses the correct pointer position.
   - The menu style TitleWarp does no longer warp the pointer for
     root menus (as it is documented).
   - Fixed detection of safe system version of mkstemp.
   - Fixed the conditions Iconifiable, Fixed, FixedSize,
     Maximizable and Closable.
   - Fixed problem with window outline and placement position
     running out of sync.
   - FvwmConsole no longer conflicts with Cygwin stdio (bug #3772).
   - FvwmGtk now configures correctly on Cygwin (bug #3772).
   - Fixed tempfile vulnerabilities in FvwmCommand.
2006-07-25 07:24:01 +00:00
rillig
144a1ee175 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,
since they always need a C compiler, even when the source code is
completely in C++.

For some other packages, stated in the comment that a C compiler is
really not needed.
2006-07-22 04:46:13 +00:00
jlam
7af716330d Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc
had actually been ignoring LTCONFIG_OVERRIDE anyway and just using
the default LIBTOOL_OVERRIDE to replace libtool scripts in packages.
This just formalizes the fact that LTCONFIG_OVERRIDE is not used
meaningfully by pkgsrc.
2006-07-19 19:14:37 +00:00
martti
be9e051e24 Make this build on a newly installed NetBSD/i386 3.99.21 with GCC 4.1.x 2006-07-12 12:08:44 +00:00
martti
5133e0b3e6 Use USE_TOOLS+=perl:run just like in wm/fvwm. 2006-07-12 11:52:54 +00:00
rillig
9240cc86f1 USE_TOOLS+=perl:run. Bumped PKGREVISION. 2006-07-11 09:05:35 +00:00
rillig
f81925e19c Fixed pkglint warnings. etc/* is now installed via CONF_FILES. Bumped
PKGREVISION.
2006-07-10 08:50:23 +00:00
jlam
c16221a4db Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.

For example, "make show-buildlink3" in fonts/Xft2 displays:

	zlib
	fontconfig
	    iconv
	    zlib
	    freetype2
	    expat
	freetype2
	Xrender
	    renderproto
2006-07-08 23:10:35 +00:00
jlam
9430e49307 Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
2006-07-08 22:38:58 +00:00
jlam
00478b39e6 Sweep pkgsrc and convert packages that included intltool/buildlink3.mk
to use instead "USE_TOOLS+=intltool".  Remove now unused
intltool/buildlink3.mk
2006-07-05 05:37:39 +00:00
martti
612bb2e72c Don't use PKGVERSION in PLIST as it'll be wrong when PKGREVISION is set.
Instead define and use FVWM_VER (idea taken from pkgsrc/wm/fvwm).
2006-07-02 15:54:42 +00:00
martti
37f752aa93 Fixed CONFLICTS. Fixed some pkglint -Wall warnings. 2006-07-02 12:32:10 +00:00
martti
44adfa73b6 Updated wm/fvwm-devel to 2.5.16
Changes in beta release 2.5.16 (20-Jan-2006)

* New features:

   - If the pointer can not be grabbed in functions, a message is
     printed to the console instead of beeping.

* Bug Fixes:

   - Fixed a couple of build problems introduced in 2.5.15.

Changes in beta release 2.5.15 (14-Jan-2006)

* New features:

   - Variables can be nested, like $[desk.name$[desk.n]].
   - Obsolete one-letter variables work, but generate warnings now.
   - Windows can be placed by any button (now also >3).
   - It is now possible to redefine the buttons usable to finish
     window movement and manual placement.
   - New window condition PlacedByButton.
   - MenuStyle pairs can be negated by prefixing '!'.
   - New generic tabbing module - FvwmTabs.
   - New Style option: EWMHIgnoreWindowType.
   - New MenuStyle options: MouseWheel, ScrollOffPage and
     TrianglesUseFore.
   - To compile from CVS, autoconf-2.53 or above is now required.
     This does not affect compiling the released tarballs.
   - New option "screen" to Move and ResizeMove commands to allow
     specifying the target Xinerama screen.

* Bug Fixes:

   - Supported a new fribidi version 0.10.5 in addition to 0.10.4.
   - Better look for windows with "BorderStyle TiledPixmap".
   - Some EWMH-related 64-bit fixes.
   - Fixed segmentation fault when replacing title of title only
     menus (Bug #1121).
   - Fixes for resizing of shaded windows and resizing/moving
     windows with complex functions.
2006-07-02 09:32:55 +00:00
martti
d759456b9a fvwm 2006-07-02 09:27:34 +00:00
martti
7218b213f3 Moved fvwm2-themes to fvwm-themes. 2006-07-02 09:26:44 +00:00
martti
798566f49b Moved fvwm2 to fvwm. 2006-07-02 09:26:16 +00:00
martti
bf8fd64526 Moved fvwm2-themes to fvwm-themes. 2006-07-02 09:22:31 +00:00
martti
fae1abe270 Moved fvwm2 to fvwm. 2006-07-02 09:21:57 +00:00
tron
a9f4d83eda Use "stdlib.h" to get prototype for alloca() under NetBSD to avoid
build failures on systems which use GCC 4.1.x.
2006-06-30 15:38:13 +00:00
joerg
33427a8e07 Remove thingradient theme until someone takes the time to create
a properly named file. gz != bzip2. Bump revision.
2006-06-29 21:00:25 +00:00
tron
8ff257a848 Disable inline assembler if GCC 4.1.x is used to fix build problems. 2006-06-29 16:23:08 +00:00
rillig
5766df03cb Fixed script interpreters. Bumped PKGREVISION.
We're in a pkgsrc freeze and this is not a leaf package, but the only
package using this is meta-pkgs/windowmaker-desktop.
2006-06-25 10:48:17 +00:00
joerg
c5093a728c Needs libtool. 2006-06-22 10:25:34 +00:00
joerg
df95a6ec11 Needs msgfmt. 2006-06-21 15:12:43 +00:00
joerg
e6e63a7f93 Needs msgfmt. 2006-06-20 21:18:22 +00:00
joerg
e6edc63839 Needs pkg-config. 2006-06-11 14:49:17 +00:00
joerg
29b63908ae Needs pkg-config. 2006-06-11 13:05:11 +00:00
martin
3df783234b THOU SHALT NOT USE XChangeProperty with format=32 ON int VALUES WHEN THE
MANUAL SPECIFIES THAT 32 MEANS long, EVEN IF YOU GET AWAY WITH IT ON i386!!!
2006-06-10 23:59:51 +00:00
joerg
f592d56c1e Needs libtool. 2006-06-08 09:47:14 +00:00
salo
3e8ac8d07f Updated to 20060517 snapshot.
Changes:

- add my theme file,
- delint.

20060517:

- Applied a crash patch to thing.c by Ben Stern.
2006-06-02 11:21:28 +00:00
reed
70cc03ec67 Fix homepage and/or master sites.
Add another mirror (http) for wm/windowmaker.

Homepage URL change reported by C David Rigby via
WWW feedback form.
2006-05-30 19:49:24 +00:00