-L and rpath specifications in the config files by directly substituting
their final values; this is needed since the configure script directly
manipulates these values via sed and needs the substituted values, not
just ${VAR}. Also honor CXXFLAGS passed in from the environment (possibly
containing optimization flags) during the build.
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify
the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like
JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib.
Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
implementation is broken, it breaks the program for users with
non-multi-char-glyph and non english ("C") locales.
I will file a PR for the real problem.
the installed package. We patch the version info in the configure scripts
to deal with shared library versioning, but we don't want those version
numbers to leak into installed files. Fixes 2nd part of pkg/12146 by
Dan Winship <danw@ximian.com>.
Qt 2.3.1 is a bugfix release. It keeps both forward and backward
compatibility (source and binary) with Qt 2.3.0
****************************************************************************
* General *
****************************************************************************
- correctly reinitialize internal data structures on QApplication destruction to
allow the sequential creation of multiple QApplication objects.
- Some bugfixes for the new support for Xft (antialiased fonts on X11)
correct clipping when drawing with Xft
correctly handle family names starting with a number
handle case when no Xft font could be loaded
correctly report bounding rectangles of strings
- Printing on Windows
work around a bug in some HP printer drivers
correctly map between Qt and Windows page sizes
- Improved build on HP/UX, AIX and SCO
****************************************************************************
* Library *
****************************************************************************
- QAction
use unique object names for generated objects
- QCanvasView
even less flicker
- QClipboard on Windows
keep clipboard contents even after application exit
- QDns:
fixed a crash.
- QFont
correctly report fixed pitch on Windows
make inFont work correctly on X11
- QFontDataBase on X11:
report correct sizes when monitor resolution != 75 dpi
some fixes for asian character sets
- QImageIO
fixed saving of paletted PNGs
- QLineEdit
fixed keyboard selection after undo/redo
- QListBox
fix numRows() and numCols() for empty listboxes
- QMovie
some performance optimizations
- QPainter on X11
fixed clipping problems occuring in some cases in paint events
fix drawText when using scaled painters
- QPopupMenu on Windows:
child widgets now receive mouse events
fix placement of menus
- QPrintDialog on X11
more tolerant parsing of /etc/printcap
- QPrinter on X11
search some more places for embeddable fonts
produce smaller postscript when printing grayscale images
- QRichText
fixed a problem in the HTML parser
handle translated painters correctly
fixed endless loop occurring rarely when printing long tables
- QString
fixed toULong for base != 10
- QThread
some smaller fixes in QWaitCondition and sleep functions
don't lock application mutex for console applications
- QToolBar
fixed moving of toolbars between main windows
Insert toolbuttons with associated popup menus as a submenu in the
extension popup
- QUrl / QFileDialog
delete files with special characters
improved processed processing of filenames on different platforms
allow digits in protocol names
- QUrlOperator
some memory leaks are fixed (one of them caused a segmentation
fault if FTP was used and the FTP server timed out)
- QWidget
preserve Widget flags when toggling to and from FullScreen mode.
fixed some focus issues with the menubar's Alt-mode (clearFocus()
did not always behave as desired).
X11 only: fixed mouse move event compression when using
QWidget::scroll().
- QWizard
correct update of finished and next button
- QWorkSpace
fixed minimize/maximize behaviour, hide maximize controls when the
workspace gets hidden
some focus handling fixes
- Windows event processing
Use mouse position at event generation time rather than processing
time.
****************************************************************************
* Extensions *
****************************************************************************
- OpenGL
workaround for some Windows OpenGL drivers
- Browser plugins
fixed OpenGL handling in plugins
****************************************************************************
* Other *
****************************************************************************
- Turn off Windows 2000 fading effects on color depths of less than 32 bit
- Designer:
clear namespace when deleting widgets
- fix some memory leaks in the network module
- Better support for VNC
****************************************************************************
* Changes that might affect runtime behavior *
****************************************************************************
- QWheelEvent
make accept the default state for QWheelEvent as documented
- QPrinter on Windows
unknown page sizes now return QPrinter::Custom instead of the
wrong QPrinter::A4
****************************************************************************
* Qt/Embedded-specific changes *
****************************************************************************
- USB Keyboard support improved.
- Printing support improved.
- Development support for non-Linux platforms (eg. with QVfb on FreeBSD).
- QWSServer/QWSWindow now have a more useable (and documented) API.
- Pixmap brush polygon fills are now supported.
- Fixed freezing of modal widgets inside manager events.
- Bug fixes in masked blit, scrolling, clipped alpha-blended images,
focus handling, and QCopChannel::isRegistered().
- iPAQ buttons F1..F4 are now F9..F12 (F4 pops up Comboboxes!)
- Support for more mice.
- Fixes to compile with GCC 3.0snapshots.
changes since 2.2.3:
Applied patch to allow using non-Latin keyboards.
Added wxActivateEvent for top level windows.
Corrected wxActivateEvent for app (now wxEVT_ACTIAVTE_APP).
wxTextCtrl sends focus events.
Corrected so-library name.
wxTreeCtrl now shows an item, if it was programmatically selected.
wxTextCtrl no longer sends any text event upon its construction.
wxSpinCtrl misbehaviour fixed.
Corrected wxYield() to handle recursive calls more gracefully (and with a
warning in debug mode). This fixes a problem with crashing wxTreeCtrl's
built-in drag'n'drop and probably some other as well.
Corrected wxMenuItem::GetLabel() to handle deliberate underscore characters
correctly.
Patch for better 8-bit-display support.
Implememted wxCommandEvent::IsSelection() for wxListBox.
Corrected wxListBox::Set() for sorted mode.
Added EVT_TEXT_UPDATED for spin ctrl.
Corrected wrongly rounded value in slider and scrollbar for negative values.
Translation updates.
Fixed wxMenu::FindItem() for sub menus.
Various other fixes.
Synchronized release with wxMSW again.
* Version 2.1 (26 May 2001)
- Found a WM that requires vroot.h: amiwm - replaced vroot.h functionality
- Detects KDE, Enlightenment & Nautilus desktops & draws to them (at last!)
- Sends expose event to background window so that KDE icons reappear
- ToonErase does not erase whole screen on first call
- No longer segfaults if display not found (new bug in 2.0)
- Can override root window detection using `--id'
- Use `--nice' to respond to system load by killing toons
* Version 2.0 (7 May 2001)
- Minor changes to error reporting
* Version 1.9 (1 May 2001)
- Code modularisation and separation into lots of different files
- A massive rewrite of xpenguins_*.c code (toon_*.c functions mostly unchanged)
- Themability added and some default themes written
- Now use automake and autoconf
- Removed use of vroot.h - I really don't know what it did anyway
CXXFLAGS, and LDFLAGS by the buildlink.mk files so remove the extra
definitions to add them from the package Makefiles. As advised by the
bsd.buildlink.mk file, also ensure that the buildlink.mk files are
included prior to defining any package-specific CFLAGS/LDFLAGS to ensure
that the buildlink directories are at the head of the compiler search
paths.
linked from a particular package, and add a pre-configure target to
the buildlink.mk file to more painlessly use buildlink.mk files. A
${BUILDLINK_TARGETS} variable still exists in case a package _must_
define NO_CONFIGURE.
5.01.2
dclock broken in 5.01.1 thanks to for Stephen Montgomery-Smith
pointing it out. (5.01 dclock.c put back).
5.01.1
Missed a patch to config.h.in for Red Hat 7.1... thanks again to
Tim Aukland <tda10@Procket.com>.
+ New "tetris -well", now uses generated images, also cleaned up some
+ bugs too. Bug fix thanks to Tom Schmidt.
New molecule to solve a random SEGV on Sun thanks to Tom Schmidt
<tschmidt@micron.com> (it still crashes on my Sun with OpenGL but
I think its an isolated case). Also cleaned up a few mistakes in the
menus and resource file.
OSF1_ENH_SEC passwd updated to handle passwords with more than eight
characters using dispcrypt, thanks to Steve VanDevender
<stevev@hexadecimal.uoregon.edu>.
molecule fix in sscanf thanks to Jouk Jansen.
scooter updated thanks to Sven Thoennissen <posse@gmx.net>.
+ Got rid of of some -Wall, lint, and C++ warnings (mostly the new 5.01 modes).
+ ecgs g++ warnings removed from solitare and all glx modes, regular modes
+ left for later (casting NULL).
Fixed generated xlock.hlp.
+ gears added -size but defaults to 0, only -planetary will use up lots of
+ CPU so added a -planetsize 400 which takes over if -size is 0 (full screen
+ if both are 0).
- Added new const const pointer versions of pixmap functions to eliminate
an annoying pointer warning message that was generated by the Sun and
other C++ compilers.
- Eliminated all "var hides class::var" warnings.
- Eliminated all "string literal converted to char *" warnings.
- The file chooser buttons use user_data() rather than the label to decide
what to do, allowing the label to be somewhat cleaner.
- Fl_has_idle only tested N-1 callbacks and missed one.
- Fl_Gl_Window has a new method to allow you to get and set the context:
void Fl_Gl_Window::context(void*, int destroy = 0)
void* Fl_Gl_Window::context() const;
Return or set a pointer to the GLContext that this window is using. This
is a system-dependent structure, but it is portable to copy the context
from one window to another. You can also set it to NULL, which will
force FLTK to recreate the context the next time make_current() is
called, this is useful for getting around bugs in OpenGL implementations.
If destroy_flag is true the context will be destroyed by fltk when the
window is destroyed, or when the mode() is changed, or the next time
context(x) is called.
- Added Fl::add_check(...), Fl::remove_check, and Fl::has_check. These are
similar to idle callbacks but are only called just before it waits for
new events. They can be used to watch for changes in global state and
respond to them.
- Added simple FLTK and FLUID manual pages.
- The "charset" directive: you can use iso-8859-[1-4]
- MNG support: animation without "mark" and "again"
- Enhancing "mgp2ps"
* Supporting "cont", "mark", "again"
* Resizing image
- bug fixes
a shared library that depends on libtk83.so. Patch the configure script to
set TK_LIB_SPEC to include -Wl,-rpath,... or -R... depending on whether we
are ELF or a.out.
Bump version number to 8.3.2nb1.
lib/kde2/libkcm_energy.so
lib/kde2/libkcm_screensaver.so
in PLIST because on some systems (i386), /usr/X11R6/lib/libXdpms.so does
not exist (only the static lib) and hence the above shared libs are not
built.
Make sure the configure script gets the right location for the Mesa
includes.
Includes fix from Rex McMaster <rex@mcmaster.wattle.id.au> for his PR
(pkg/12556).
conventional DEPENDS mechanism.
+ Avoid hardcoded "/usr/X11R6" in Makefiles
+ Split patch-ab into multiple patches.
Should fix bulk-build problems, as well as getting rid of one more
"eccentric" package.
This release is simply a bugfix release of 0.8.9. The 0.8.x series has become
the "stable" branch of Eterm and will only involve bugfixes, no new features.
All the feature development is occuring in the 0.9 series.
Fixes pkg/12105 by myself
This is a not so short little ditty that does the simple conversion of mouse
button presses into key presses. By grabbing only the 4th and 5th mouse
buttons the program is able to receive input from the Intellimouse series
mice. The wheel button can always be used as middle button, this program
does not affect how the XServer reacts towards it. A mouse with a wheel
button is a 3 button mouse, and should be configured as such!
Note that other wheeled mice such as the Logitech MouseMan+ or TrackMan+ are
Intellimouse compatible and can be used with this as well. For more
information on setting up your wheeled mouse to work with X, see either the
imwheel man page or the FAQ.
Fixes pkg/12515 by Philipp Huber <uebs@gmx.at>
* Fix focus drawing with no window manager
* Fix cut-and-paste with no current event
* Fix compilation using --with-xinput=gxi
* Fix problem with cut-and-paste and KOI8-R
* Fix rare problem with enter events and menus
* Fix problem with --with-native-locale and GNU libc-2.1
* Further fixes for using fonts, not fontsets, with non iso-8859-1.
* Fix problem with dropping onto internal children, such as CList buttons
* Translation updates
This package also fixes a bug of gtk+-1.2.10 that messes up
focus-follows-pointer with embedded windows (which affects, for example,
the control center and various bonobo components in GNOME). Thanks go to
Dan Winship <danw@ximian.com>, who provided this patch in private mail.
Release: Gtk-- 1.2.5
* Fixes for code generator.
* Fixes for RedHat 7.0 configure bug.
* Numerous patches to clean up code and improve appearance.
* Added SpinButton::update() (Augustin Ferrin Pozuelo)
* Menushell namespace fixes (jaycox)
* Fixes for gtk--.m4 (srittau)
* Major CTree fixes
* CTree::selection() fixed. (Murray Cumming)
* Added CTree::{Row,Column}::moveto()
* Fix for CTree::RowList::end() (Daniel Elstner)
* Documentation fixes (Falk Hueffner)
* TreeItem patch (Joe Yandle)
Release: Gtk-- 1.2.4
* Fixes for code generator
* Rotated Bin::add_pixlabel.
* gcc 2.96 fixes.
* Distribution fixes.
* Tutorial updates.
* Dialog demos.
* Dialog demo from Paul Serice.
* Warning clean up.
* Fix for accelerator labels from Toralf Lund.
Release: Gtk-- 1.2.3
* Fixes for container
* Bugs in code generator
* Minor internal fixes.
* Major changes for libstdc++-v3 from Felix Natter
* Patches to try to improve gcc 2.96 compilation (still problem with yacc)
* Menu improvements to support dynamic menu items.
* CTree iterator fixes.
Release: Gtk-- 1.2.2
* CTree updates from Juergen Mangler, a9506264@unet.univie.ac.at
* Tearoff menu support (Juergen).
* New examples for ctree and menu (Juergen).
* Changed internals to get around serious gcc bug. Earlier versions
should be discarded. Use of old version with multiple inheritence
will cause segfaults!
2000-11-28 John Simon <simon@quagga.kaist.ac.kr>
* /home/cvs/hanterm/automata.c:
another patch from cdpark: dealing with the
cases when incomplete char is out of KS X 1001
* /home/cvs/hanterm/automata.c, /home/cvs/hanterm/charproc.c, /home/cvs/hanterm/hanja.h, /home/cvs/hanterm/main.c, /home/cvs/hanterm/version.h:
applied the patch by Chong-Dae Park <cdpark@jupiter.kaist.ac.kr>:
charproc.c: support for ksx1001.1997 XLFD encoding name. for
baekmuk fonts.
automata.c: check for in_ks, even when current font is not ks* but
code system is EUC-KR, for two-bul input.
hanja.h: hanza "Ãé" bug, by Chang-woo Ryu.
*: BSD wtmp, lastlog patch, by Duk-hwan Kim.
1999-09-13 John Simon <simon@quagga.kaist.ac.kr>
* /home/cvs/hanterm/hanterm.html:
added install information for solaris 2.x+ow
XPaste is a short X program which creates a window and displays the
contents of the Primary paste buffer in that window.
Package submitted by Stoned Elipot <Stoned.Elipot@script.jussieu.fr>
in pkg/12621
Changes include:
2001-03-24 Yukihiro Nakai <nakai@gnome.gr.jp>
* battery/docs/ja: Add Japanese translation.
* cdplayer/docs/ja: Add Japanese translation.
* charpick/docs/ja: Add Japanese translation.
* clockmail/docs/ja: Add Japanese translation.
* cpumemusage/docs/ja: Add Japanese translation.
* diskusage/docs/ja: Add Japanese translation.
* drivemount/docs/ja: Add Japanese translation.
2001-03-23 Yukihiro Nakai <nakai@gnome.gr.jp>
* asclock/docs/ja: Add Japanese translation.
2001-03-20 Dan Mueth <dan@eazel.com>
Updating doc build stuff to new build system. Note that
figures belong in a directory called "figures".
* cpumemusage/docs/C/Makefile.am:
* cpumemusage/docs/C/cpumemusage-applet.png:
* cpumemusage/docs/C/cpumemusage.sgml:
* cpumemusage/docs/C/figures/cpumemusage-applet.png:
* cpumemusage/docs/it/Makefile.am:
* cpumemusage/docs/it/cpumemusage-applet.png:
* cpumemusage/docs/it/cpumemusage.sgml:
* cpumemusage/docs/it/figures/cpumemusage-applet.png:
Fixed some bugs in the metadata.
* cdplayer/docs/C/cdplayer_applet-C.omf:
* life/docs/C/Makefile.am:
* life/docs/it/Makefile.am:
* multiload/docs/C/memload/memload_applet-C.omf:
* multiload/docs/C/memload/memload_applet.sgml:
2001-03-20 Dan Mueth <dan@eazel.com>
Fixed incorrect file name.
* multiload/docs/it/swapload/swapload_applet-C.omf:
* multiload/docs/it/swapload/swapload_applet-it.omf:
2001-03-20 Dan Mueth <dan@eazel.com>
Removed bad tab at end of line.
* multiload/docs/C/loadavg/Makefile.am:
* multiload/docs/it/loadavg/Makefile.am:
2001-03-20 Dan Mueth <dan@eazel.com>
Updating doc build stuff to new build system. Note that
figures belong in a directory called "figures".
2001-03-20 Dan Mueth <dan@eazel.com>
Fixing a few OMF and Makefile bugs.
* another_clock/docs/C/anotherclock_applet-C.omf:
* another_clock/docs/it/anotherclock_applet-it.omf:
* another_clock/docs/uk/anotherclock_applet-uk.omf:
* asclock/docs/C/asclock_applet-C.omf:
* asclock/docs/it/asclock_applet-it.omf:
* life/docs/C/life_applet-C.omf:
* mixer/docs/C/mixer_applet-C.omf:
* tickastat/docs/it/Makefile.am:
2001-03-20 Dan Mueth <dan@eazel.com>
Updating doc build stuff to new build system. Note that
figures belong in a directory called "figures".
2001-03-19 Dan Mueth <dan@eazel.com>
Updating doc build stuff to new build system. Note that
figures belong in a directory called "figures".
2001-03-15 John Fleck <jfleck@swcp.com>
* woohoo - adding the last of the omf files:
modemlights/docs/it/modemlights_applet-it.omf
tickastat/docs/it/tickastat_applet-it.omf
fifteen/docs/it/fifteen_applet-it.omf
webcontrol/docs/it/webcontrol_applet-it.omf
clockmail/docs/it/clockmail_applet-it.omf
gkb-new/docs/hu/gkb_applet-hu.omf
quicklaunch/docs/it/quicklaunch_applet-it.omf
jbc/docs/it/jbc_applet-it.omf
diskusage/docs/it/diskusage_applet-it.omf
sound-monitor/docs/it/sound-monitor_applet-it.omf
geyes/docs/it/geyes_applet-it.omf
gweather/docs/it/gweather_applet-it.omf
2001-03-14 Dan Mueth <dan@eazel.com>
Updating doc build stuff to new build system. Note that
figures belong in a directory called "figures".
2001-03-13 Dan Mueth <dan@eazel.com>
Bug fix.
2001-03-13 Dan Mueth <dan@eazel.com>
Adding file I forget to add last time:
* sgmldocs.make:
2001-03-13 Dan Mueth <dan@eazel.com>
Fixing up the doc build stuff.
Adding FDL license
* COPYING-DOCS:
* Makefile.am:
Fixing up the doc build stuff.
* configure.in:
* omf-install/Makefile.am:
Fixing up doc build stuff for Mixer applet
* mixer/docs/C/figures/mixer_applet.png:
* mixer/docs/C/mixer.sgml:
* mixer/docs/C/mixer_applet.png:
* mixer/docs/C/Makefile.am:
2001-03-12 John Fleck <jfleck@inkstain.net>
* add a bunch of omf files (Dan Mueth will visit shortly do do the
makefile magic to incorporate these)
mini-commander/docs/C/mini-commander_applet-C.omf
mini-commander/docs/it/mini-commander_applet-it.omf
drivemount/docs/C/drivemount_applet-C.omf
drivemount/docs/it/drivemount_applet-it.omf
life/docs/C/life_applet-C.omf
life/docs/it/life_applet-it.omf
screenshooter/docs/C/screenshooter_applet-C.omf
screenshooter/docs/it/screenshooter_applet-it.om
2001-03-11 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Generate Makefile for mixer/docs/es
Tue Feb 27 05:19:36 2001 George Lebl <jirka@5z.com>
* AUTHORS: added Rusty
* Applying:
Mon Feb 26 23:45:45 Rusty Geldmacher <rusty@wpi.edu>
* webcopntrol/properties.[ch]: Added browser configuration
dialog box.
2001-02-26 Szabolcs Ban <shooby@gnome.hu>
* gkb-new/descs/Basque.keyprop.in: added Basque keyprop files
* gkb-new/xmodmap/xmodmap.eu: added xmodmap
* gkb-new/gkb/eu.png: added few flag
from I<F1>igo Serna <inigoserna@terra.es>
2001-02-26 Dan Mueth <dan@eazel.com>
Doing some initial setup of OMF installation. Added a handful
of OMF files. Note: Make sure not to set $prefix to have
RPM_BUILD_ROOT in it or you will break this stuff. Set
DESTDIR=RPM_BUILD_ROOT if you like, but $prefix should refer
to the path on the user's machine. I'm just griping about this
because the Ximian spec file (which I borrowed for my testing;)
did this wrong.
Changes are:
2001-03-28 Dan Mueth <dan@eazel.com>
Linking GNOME hint capplet to doc
* gnome-hint/gnome-hint-properties.c: (help):
2001-03-26 Darin Adler <darin@eazel.com>
* omf-install/.cvsignore: Quick fix to ignore .omf files.
2001-03-25 Dan Mueth <dan@eazel.com>
Updated index page for gnome-help-browser to point to current
GNOME User's Guide.
2001-03-25 Jens Finke <jens@gnome.org>
* gnome.spec.in: Include gnome-terminal datadir stuff. Make use
of rpm macros.
2001-03-23 Yukihiro Nakai <nakai@gnome.gr.jp>
* configure.in: Generate Makefile of Japanese gsm help.
2001-03-23 Dan Mueth <dan@eazel.com>
Fixed error in metadata, placing it in the wrong locale.
* panel/help/ja/panel-ja.omf:
2001-03-22 Dan Mueth <dan@eazel.com>
A couple bug fixes from the previous huge commit.
* applets/desk-guide/help/C/Makefile.am:
* applets/desk-guide/help/de/Makefile.am:
2001-03-22 Dan Mueth <dan@eazel.com>
Updating doc build stuff to use sgmldocs.make. Making sure
screenshots are in figures directory. A few other small
doc fixes.
2001-03-20 Dan Mueth <dan@eazel.com>
Update some of the build stuff to the latest state of
OMF/SK system. Plus, added ScrollKeeper stuff into configure.in
and added sgmldocs.make so we can start using that to stay
uniform with other packages.
2001-03-09 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Generate Makefile for the japanese panel docs.
2001-03-07 jacob berkman <jacob@ximian.com>
* pixmaps: use some of tigert's nice icons
Tue Mar 06 18:36:33 2001 George Lebl <jirka@5z.com>
* configure.in, acconfig.h: Add a with argument for the KDE
documentation path
2001-03-02 Christian Schaller <Uraeus@linuxrising.org>
* Norwegian Nynorsk translation
2001-02-28 Martin Baulig <baulig@suse.de>
* configure.in (configure.in): Added applets/gen_util/help/es.
Tue Feb 27 02:15:15 2001 George Lebl <jirka@5z.com>
* configure.in: give a useful message when the canvas gdkpixbuf
thingie isn't found
2001-02-26 Dan Mueth <dan@eazel.com>
Include FDL as required by the FDL, and l10n of categories for
OMF metadata.
* COPYING-DOCS: Added this file - the FDL
* Makefile.am: Include COPYING-DOCS
* applets/fish/help/no/fish_applet-no.omf: l10n of category
* applets/gen_util/help/no/gen_util_applet-no.omf: l10n of category
2001-02-25 Gediminas Paulauskas <menesis@delfi.lt>
* configure.in: don't create grdb Makefiles.
2001-02-19 Dan Mueth <dan@eazel.com>
* Localized categories in OMF metadata for:
applets/fish/help/da/fish_applet-da.omf
applets/gen_util/help/da/clock/clock_applet-da.omf
applets/gen_util/help/da/mailcheck/mailcheck_applet-da.omf
applets/gen_util/help/da/printer/printer_applet-da.omf
gnome-terminal/es/gnome-termainal-es.omf
Sat Feb 17 23:28:01 2001 George Lebl <jirka@5z.com>
* gnome-core.spec.in: update so that /var/lib files are installed
properly
2001-02-15 Dan Mueth <dan@eazel.com>
* omf-install/Makefile.am: Changed to install under
$(datadir)/omf/ instead of $(prefix)/doc/omf because
this is The Right Way, and scrollkeeper was recently fixed
to work this way.
2001-02-14 Christophe Merlet <redfox@eikonex.org>
* */*.desktop: Updated French translations.
2001-02-13 Dan Mueth <dan@eazel.com>
* core-docs/lgpl/C/lgpl.sgml: Added a </para> to make it
validate with nsgmls and produce a valid TOC. Now it has
an extra <para> somewhere, which is lame, but at least
it validates and makes a good TOC. Finding the extra
<para> and removing it is left as an excercise for the reader.
* applet-docs.make: Less broken OMF bits than before
2001-02-13 Dan Mueth <dan@eazel.com>
* app-docs.make: Fixed(TM)
* applet-docs.make: Fixed(TM)
2001-02-13 Dan Mueth <dan@eazel.com>
* applet-docs.make: fixing previous non-fix
* app-docs.make: fixing previous non-fix
2001-02-13 Dan Mueth <dan@eazel.com>
* OMF files: Updated to new category list in scrollkeeper-0.0.6
2001-02-12 Dan Mueth <dan@eazel.com>
* applet-docs.make: Fixed to do directories without OMF files
correctly.
2001-02-12 Dan Mueth <dan@eazel.com>
* app-docs.make: Fixed to do directories without OMF files
correctly.
2001-02-08 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Added Norwegian (nynorsk) to ALL_LINGUAS.
2001-02-06 Dan Mueth <dan@eazel.com>
* Commented out the OMF files for 3 translations of gnome-terminal
because the SGML is broken, preventing TOC extraction
2001-02-06 Dan Mueth <dan@eazel.com>
* Modified Makefile.am's to register the new OMF files
* Added many OMF files:
applets/desk-guide/help/C/desk-guide_applet-C.omf
applets/desk-guide/help/de/desk-guide_applet-de.omf
applets/fish/help/C/fish_applet-C.omf
applets/fish/help/da/fish_applet-da.omf
applets/fish/help/no/fish_applet-no.omf
applets/gen_util/help/C/clock/clock_applet-C.omf
applets/gen_util/help/C/mailcheck/mailcheck_applet-C.omf
applets/gen_util/help/C/printer/printer_applet-C.omf
applets/gen_util/help/da/clock/clock_applet-da.omf
applets/gen_util/help/da/mailcheck/mailcheck_applet-da.omf
applets/gen_util/help/da/printer/printer_applet-da.omf
applets/gen_util/help/de/clock-de.omf
applets/gen_util/help/de/gen_util_applet-de.omf
applets/gen_util/help/de/mailcheck-de.omf
applets/gen_util/help/no/mailcheck-no.omf
applets/gen_util/help/no/gen_util_applet-no.omf
applets/tasklist/help/C/tasklist_applet-C.omf
core-docs/fdl/C/fdl-C.omf
core-docs/gpl/C/gpl-C.omf
core-docs/lgpl/C/lgpl-C.omf
gnome-terminal/C/gnome-terminal-C.omf
gnome-terminal/da/gnome-terminal-da.omf
gnome-terminal/de/gnome-terminal-de.omf
gnome-terminal/es/gnome-terminal-es.omf
gnome-terminal/it/gnome-terminal-it.omf
gnome-terminal/no/gnome-terminal-no.omf
gsm/help/C/session-C.omf
panel/help/C/panel-C.omf
panel/help/de/panel-de.omf
panel/help/it/panel-it.omf
panel/help/no/panel-no.omf
2001-02-06 Dan Mueth <dan@eazel.com>
* po/POTFILES.in: Removed lines for mini-commander. It seems that
mini-commander is now in gnome-applets, so having these two lines
was breaking the build.
2001-02-06 Dan Mueth <dan@eazel.com>
(initial setup of SK - just doing for Panel Manual for now)
* omf-install/: created this directory
* omf-install/Makefile.am: new
* app-docs.make: updated for scrollkeeper(SK)
* applet-docs.make: updated for scrollkeeper(SK)
* configure.in: updated for scrollkeeper(SK)
* Makefile.am: updated for scrollkeeper(SK)
* panel/help/C/panel-C.omf: added
* panel/help/C/Makefile.am: updated for SK
2001-02-05 Eric Baudais <baudais@okstate.edu>
* configure.in: Added core-docs/lgpl/Makefile and
core-docs/lgpl/C/Makefile to AC_OUPUT.
2001-02-04 jacob berkman <jacob@ximian.com>
* Makefile.am:
* configure.in:
* grdb: remove grdb
Sat Feb 03 19:36:34 2001 George Lebl <jirka@5z.com>
* Makefile.am: Cleanup some OOOOOOOLD cruft
* configure.in, Makefile.am, po/POTFILES.in, grdb/**/*:
Integrate grdb. The author fell of the face of the planet and
didn't integrate it as was planned apparently, so here it goes,
still needs to get called from gsm, and either control-center
or something else monitoring theme changes
Wed Jan 31 20:36:25 2001 George Lebl <jirka@5z.com>
* configure.in: s/Gnumeric/gnome-core/ fix some cut'n'paste fun
2001-01-26 Marius Andreiana <mandreiana@yahoo.com>
* configure.in: Added ro (Romanian) to ALL_LINGUAS.
"XPostIt allows you to create small notes to yourself in windows on
the screen, and save them in disk files. This is generally neater
than having numerous real Post-it notes stuck all around the edges of
your monitor."
Package submitted by Jim Bernard in PR 12532.
she-bang lines properly. While we're at at, fake PERL_VERSION, if
necessary (i.e. lie brazenly if ${PERL} is not found), so we can build
this package correctly, even _without_ actually having perl installed!
Changes:
Fixes for small problem with List widget. More work required on this ...
Fixes for some recently introduced bugs within configure. Now link libXm*
against -lm if ANSI C math stuff is hidden there
Small Scale widget fix (rounding problem)
Added two stubs for missing 2.x interfaces. On stub level we should be very
close to a complete 2.1 set now
Fixes by Kazuyuki Funada, mostly for i18n.
Fix and add more (incomplete) man pages to the install target
Link our shared libraries against the necessary system libraries (e.g.
libXt, libX11) to hardcode the dependencies
Rename libDt to libDtPrint, this appears to be what it's called. Remove the
print_screen field from struct DtPrintSetupData, the Motif 2.1
manual pages (e.g. about XmPrintSetup) are misleading about libDtPrint.
Add -lMrm to the Xlt tests, this is necessary as SciPlot now uses Mrm.
Make build option --with-dmalloc to work again properly
Make more debugging functions available in a PRODUCTION build (no
performance penalty)
Debugging output (DEBUG_FILE env var) is now always explicitly unbuffered
and can now be sent to "stdin"/"stderr" as well
The environment variable controlling which files send debugging output has
been renamed to DEBUG_SOURCES and now accepts a
blocking entries
Debugging output can now be en-/disabled upon runtime. (env vars
DEBUG_TOGGLE, DEBUG_SIGNAL)
first component is now a package name+version/pattern, no more
executable/patchname/whatnot.
While there, introduce BUILD_USES_MSGFMT as shorthand to pull in
devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current).
Patch by Alistair Crooks <agc@netbsd.org>
excellent screensaver). It's possible to download and install high-res
maps of selected moons and planets, but including those in the package
would make it weigh in a little heavy, so we just install the READMEs,
and leave it to the user to download the jpgs, if he wants them.
* qt2 doesn't write compressed GIFs
* applications like KDE2's konqueror are ~useless without it and
* there's prior art (in FreeBSD, OpenBSD)
switch on GIF support permanently.
(After compiling without GIF support for a few hours AGAIN)
Don't try and build a "shared" greeter library:
- it never managed it anyway.
- the libtool workaround produces a binary 10x bigger than the
static build.
- its more resilient method to different versions of X.
Enable login_cap(3) support.