summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-09-15 17:05:50 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-09-15 17:05:50 +0000
commitfbe24c3b80b5a6454b5f37c6dc5746a2ff691d16 (patch)
tree4834eb9d7b79722edc7b7c7a807d962973ca1eb1
parentaa9c028aeb9d036e9be5b9b9bae103289e29ba91 (diff)
Updated for FLTK 1.0.5.
Added EPM distribution list file. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@721 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES57
-rw-r--r--FL/Enumerations.H6
-rw-r--r--README2
-rw-r--r--packages/README.packages10
-rw-r--r--packages/dunix/fltk.key8
-rwxr-xr-xpackages/dunix/makedist.sh14
-rw-r--r--packages/fltk.list390
-rw-r--r--packages/hpux/fltk.info10
-rwxr-xr-xpackages/hpux/makedist.sh6
-rw-r--r--packages/install.html16
-rw-r--r--packages/irix/fltk.spec12
-rwxr-xr-xpackages/irix/makedist.sh2
-rw-r--r--packages/linux/fltk.spec264
-rw-r--r--packages/solaris-intel/fltk.pkginfo6
-rwxr-xr-xpackages/solaris-intel/makedist.sh6
-rw-r--r--packages/solaris-sparc/fltk.pkginfo6
-rwxr-xr-xpackages/solaris-sparc/makedist.sh6
17 files changed, 639 insertions, 182 deletions
diff --git a/CHANGES b/CHANGES
index f19b25331..60b083cec 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,60 @@
+CHANGES SINCE FLTK 1.0.4
+
+ - Fl_Roller didn't handle a width and height of 0.
+ - filename_list() fix for FreeBSD.
+ - Fixed RPM install docos - needed "--install" option...
+ - Fl_Browser_ wouldn't draw the vertical scrollbar right away if it
+ added a horizontal one which covered the last line.
+ - Fl_Tabs problems - single-character labels don't show up (problem in
+ measure_tabs() or measure_label() methods?), and doesn't clear top
+ tab area before drawing tabs.
+ - Fl_Browser needs a destructor.
+ - fl_draw_label() quoted characters between 0x80 and 0xa0, which
+ caused problems for some programs using the WinANSI character set.
+ - FLUID didn't handle declared class destructors.
+ - Fixed another WIN32 cut/paste bug.
+ - Fl_Tabs didn't work properly when there was only 1 tab.
+ - Fl_Menu::add() didn't delete the old array.
+ - Fl_Repeat_Button didn't delete its timeout when disabled.
+ - fl_draw() would crash if no font was set (now defaults to
+ a 14-pixel Helvetica font)
+ - Can't forward declare classes; need to check for "class ", "struct ",
+ "union ", etc. See Bill's message
+ - Added #pragma around xlib.h for IRIX
+ - FL_KEYBOARD events have the correct x/y when sent to child X
+ windows. Note that if you worked around this bug by adjusting the
+ x/y yourself you will have to change your code. In addition all
+ events have the correct x/y when sent to the grab() widget. And
+ the code to do all this was simplified a lot.
+ - The XPM code didn't handle named colors with spaces in the names.
+ - Pressing ESCape closed the window with pointer focus, even if there
+ was a modal window open (now closes the modal window).
+ - Fluid no longer produces trigraphs accidentally in the image data.
+ - Fluid uses string constant concatenation to produce shorter image
+ data.
+ - The Fl_Group deletion code crashed if there was exactly one child
+ widget.
+ - Simulated overlays in single-buffered Fl_Gl_Windows now draw
+ correctly (though very slowly as it requires the entire window to
+ be redrawn to erase the overlay). This fix ported our Digital
+ Domain programs better to systems with no overlay hardware.
+ - Added support for extern "C" declarations in FLUID.
+ - Added Fl_Pack support to FLUID.
+ - Fixed the order of #include's in FLUID generated header files.
+ - Fixed detection of vsnprintf and snprintf under HP-UX 10.20 once
+ and for all.
+ - The checkers demo did not compile with GCC 2.95
+ - FLUID didn't output virtual destructors properly.
+ - Added inline "make_visible()" method to Fl_Browser.
+ - Fl::wait() now returns immediately if any timeouts are
+ called.
+ - 16-bit XPM files are now properly handled.
+ - Fl_Window::resize() was missing FL_EXPORT (caused problems
+ with Windows DLLs)
+ - FLUID was writing extern declarations twice.
+ - New FLUID arrow key functionality: arrows move by one pixel, shift+arrow
+ resizes, ctrl+arrow steps by grid
+
CHANGES SINCE FLTK 1.0.3
- Documentation updates
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index e751bcceb..367f0cde3 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,5 +1,5 @@
//
-// "$Id: Enumerations.H,v 1.18.2.4 1999/06/12 13:15:15 mike Exp $"
+// "$Id: Enumerations.H,v 1.18.2.5 1999/09/15 17:05:32 mike Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
@@ -56,7 +56,7 @@
#define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 0
-#define FL_PATCH_VERSION 4
+#define FL_PATCH_VERSION 5
#define FL_VERSION ((double)FL_MAJOR_VERSION + \
(double)FL_MINOR_VERSION * 0.01)
@@ -365,5 +365,5 @@ enum Fl_Damage {
#endif
//
-// End of "$Id: Enumerations.H,v 1.18.2.4 1999/06/12 13:15:15 mike Exp $".
+// End of "$Id: Enumerations.H,v 1.18.2.5 1999/09/15 17:05:32 mike Exp $".
//
diff --git a/README b/README
index 11f2ecee6..c4c73f9bc 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README - Fast Light Tool Kit (FLTK) Version 1.0.4
+README - Fast Light Tool Kit (FLTK) Version 1.0.5
-------------------------------------------------
WHAT IS FLTK?
diff --git a/packages/README.packages b/packages/README.packages
index 6cc7319e3..ce9ab0cfb 100644
--- a/packages/README.packages
+++ b/packages/README.packages
@@ -11,6 +11,16 @@ script for your operating system:
cd <operating-system>
sh makedist.sh
+Also, we are now including a distribution "list" file for the ESP
+Package Manager. EPM builds tar files and scripts and so works on all
+UNIX operating systems without extra software. To build a distribution
+using EPM run the following from the main FLTK directory:
+
+ epm fltk packages/fltk.list
+
+Eventually we may phase out the system-specific installation stuff in
+favor of EPM to make maintenance of the FLTK binaries easier.
+
For Microsoft Windows we are using the InstallShield software.
Unfortunately it is nearly impossible to distribute the InstallShield
"source" files...
diff --git a/packages/dunix/fltk.key b/packages/dunix/fltk.key
index 49d1e5fb2..dabebeacb 100644
--- a/packages/dunix/fltk.key
+++ b/packages/dunix/fltk.key
@@ -1,9 +1,9 @@
-NAME='Fast Light Tool Kit, 1.0.4'
+NAME='Fast Light Tool Kit, 1.0.5'
CODE=FLT
VERS=100
MI=fltk.mi
COMPRESS=1
%%
-FLTDSO100 . 2 'FLTK DSOs, 1.0.4'
-FLTDEV100 . 2 'FLTK Development Software, 1.0.4'
-FLTDOC100 . 2 'FLTK Documentation, 1.0.4'
+FLTDSO100 . 2 'FLTK DSOs, 1.0.5'
+FLTDEV100 . 2 'FLTK Development Software, 1.0.5'
+FLTDOC100 . 2 'FLTK Documentation, 1.0.5'
diff --git a/packages/dunix/makedist.sh b/packages/dunix/makedist.sh
index 94a22003c..d48477482 100755
--- a/packages/dunix/makedist.sh
+++ b/packages/dunix/makedist.sh
@@ -3,8 +3,8 @@
# makedist - make a digital unix distribution.
#
-rm -rf fltk-1.0.4-dunix
-mkdir fltk-1.0.4-dunix
+rm -rf fltk-1.0.5-dunix
+mkdir fltk-1.0.5-dunix
echo "Building distribution tree..."
rm -rf usr
@@ -40,16 +40,16 @@ for file in *.H; do
done
cd ../../..
-kits fltk.key . fltk-1.0.4-dunix
+kits fltk.key . fltk-1.0.5-dunix
echo "Archiving distribution..."
-tar cf fltk-1.0.4-dunix.tar fltk-1.0.4-dunix
+tar cf fltk-1.0.5-dunix.tar fltk-1.0.5-dunix
echo "Compressing distribution..."
-rm -f fltk-1.0.4-dunix.tar.gz
-gzip -9 fltk-1.0.4-dunix.tar
+rm -f fltk-1.0.5-dunix.tar.gz
+gzip -9 fltk-1.0.5-dunix.tar
echo "Removing temporary distribution files..."
-rm -rf fltk-1.0.4-dunix
+rm -rf fltk-1.0.5-dunix
rm -rf usr
diff --git a/packages/fltk.list b/packages/fltk.list
new file mode 100644
index 000000000..c7943a223
--- /dev/null
+++ b/packages/fltk.list
@@ -0,0 +1,390 @@
+#
+# "$Id: fltk.list,v 1.1.2.1 1999/09/15 17:05:35 mike Exp $"
+#
+# ESP Package Manager (EPM) distribution file.
+#
+# EPM is a free software distribution program that works with all
+# UNIX's. You can find the EPM distribution in the CUPS distribution
+# at "http://www.cups.org", and eventually on the ESP web page at
+# "http://www.easysw.com/epm".
+#
+# Copyright 1998-1999 by Bill Spitzak and others.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+#
+# Please report all bugs and problems to "fltk-bugs@easysw.com".
+#
+
+%product Fast Light Tool Kit
+%copyright 1998-1999 by Bill Spitzak and others.
+%vendor GNU
+%license ../COPYING
+%readme README.epm
+%version 1.0.5
+
+# GUIs
+%system solaris
+f 0555 root sys /usr/openwin/bin/fluid fluid/fluid
+%system !solaris
+f 0555 root sys /usr/bin/X11/fluid fluid/fluid
+
+# Man pages
+%system irix
+f 0444 root sys /usr/catman/pman/cat1/fluid.z documentation/fluid.z
+%system !irix
+f 0444 root sys /usr/man/man1/fluid.1 documentation/fluid.1
+%system all
+
+# Libraries
+%system hpux
+f 0555 root sys /usr/lib/libfltk.a lib/libfltk.a
+f 0555 root sys /usr/lib/libfltk.sl.1 src/libfltk.sl.1
+l 0555 root sys /usr/lib/libfltk.sl libfltk.sl.1
+%system irix-6.5
+f 0555 root sys /usr/lib32/libfltk.a lib/libfltk.a
+f 0555 root sys /usr/lib32/libfltk.so.1 src/libfltk.so.1
+l 0555 root sys /usr/lib32/libfltk.so libfltk.so.1
+%system !irix-6.5 !hpux
+f 0555 root sys /usr/lib/libfltk.a lib/libfltk.a
+f 0555 root sys /usr/lib/libfltk.so.1 src/libfltk.so.1
+l 0555 root sys /usr/lib/libfltk.so libfltk.so.1
+%system all
+
+# Header files...
+f 0444 root sys /usr/include/FL/Enumerations.H FL/Enumerations.H
+l 0000 root sys /usr/include/FL/Enumerations.h Enumerations.H
+f 0444 root sys /usr/include/FL/Fl.H FL/Fl.H
+l 0000 root sys /usr/include/FL/Fl.h Fl.H
+f 0444 root sys /usr/include/FL/Fl_Adjuster.H FL/Fl_Adjuster.H
+l 0000 root sys /usr/include/FL/Fl_Adjuster.h Fl_Adjuster.H
+f 0444 root sys /usr/include/FL/Fl_Bitmap.H FL/Fl_Bitmap.H
+l 0000 root sys /usr/include/FL/Fl_Bitmap.h Fl_Bitmap.H
+f 0444 root sys /usr/include/FL/Fl_Box.H FL/Fl_Box.H
+l 0000 root sys /usr/include/FL/Fl_Box.h Fl_Box.H
+f 0444 root sys /usr/include/FL/Fl_Browser.H FL/Fl_Browser.H
+l 0000 root sys /usr/include/FL/Fl_Browser.h Fl_Browser.H
+f 0444 root sys /usr/include/FL/Fl_Browser_.H FL/Fl_Browser_.H
+l 0000 root sys /usr/include/FL/Fl_Browser_.h Fl_Browser_.H
+f 0444 root sys /usr/include/FL/Fl_Button.H FL/Fl_Button.H
+l 0000 root sys /usr/include/FL/Fl_Button.h Fl_Button.H
+f 0444 root sys /usr/include/FL/Fl_Chart.H FL/Fl_Chart.H
+l 0000 root sys /usr/include/FL/Fl_Chart.h Fl_Chart.H
+f 0444 root sys /usr/include/FL/Fl_Check_Button.H FL/Fl_Check_Button.H
+l 0000 root sys /usr/include/FL/Fl_Check_Button.h Fl_Check_Button.H
+f 0444 root sys /usr/include/FL/Fl_Choice.H FL/Fl_Choice.H
+l 0000 root sys /usr/include/FL/Fl_Choice.h Fl_Choice.H
+f 0444 root sys /usr/include/FL/Fl_Clock.H FL/Fl_Clock.H
+l 0000 root sys /usr/include/FL/Fl_Clock.h Fl_Clock.H
+f 0444 root sys /usr/include/FL/Fl_Color_Chooser.H FL/Fl_Color_Chooser.H
+l 0000 root sys /usr/include/FL/Fl_Color_Chooser.h Fl_Color_Chooser.H
+f 0444 root sys /usr/include/FL/Fl_Counter.H FL/Fl_Counter.H
+l 0000 root sys /usr/include/FL/Fl_Counter.h Fl_Counter.H
+f 0444 root sys /usr/include/FL/Fl_Dial.H FL/Fl_Dial.H
+l 0000 root sys /usr/include/FL/Fl_Dial.h Fl_Dial.H
+f 0444 root sys /usr/include/FL/Fl_Double_Window.H FL/Fl_Double_Window.H
+l 0000 root sys /usr/include/FL/Fl_Double_Window.h Fl_Double_Window.H
+f 0444 root sys /usr/include/FL/Fl_Fill_Dial.H FL/Fl_Fill_Dial.H
+l 0000 root sys /usr/include/FL/Fl_Fill_Dial.h Fl_Fill_Dial.H
+f 0444 root sys /usr/include/FL/Fl_Fill_Slider.H FL/Fl_Fill_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Fill_Slider.h Fl_Fill_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Float_Input.H FL/Fl_Float_Input.H
+l 0000 root sys /usr/include/FL/Fl_Float_Input.h Fl_Float_Input.H
+f 0444 root sys /usr/include/FL/Fl_FormsBitmap.H FL/Fl_FormsBitmap.H
+l 0000 root sys /usr/include/FL/Fl_FormsBitmap.h Fl_FormsBitmap.H
+f 0444 root sys /usr/include/FL/Fl_FormsPixmap.H FL/Fl_FormsPixmap.H
+l 0000 root sys /usr/include/FL/Fl_FormsPixmap.h Fl_FormsPixmap.H
+f 0444 root sys /usr/include/FL/Fl_Free.H FL/Fl_Free.H
+l 0000 root sys /usr/include/FL/Fl_Free.h Fl_Free.H
+f 0444 root sys /usr/include/FL/Fl_Gl_Window.H FL/Fl_Gl_Window.H
+l 0000 root sys /usr/include/FL/Fl_Gl_Window.h Fl_Gl_Window.H
+f 0444 root sys /usr/include/FL/Fl_Group.H FL/Fl_Group.H
+l 0000 root sys /usr/include/FL/Fl_Group.h Fl_Group.H
+f 0444 root sys /usr/include/FL/Fl_Hold_Browser.H FL/Fl_Hold_Browser.H
+l 0000 root sys /usr/include/FL/Fl_Hold_Browser.h Fl_Hold_Browser.H
+f 0444 root sys /usr/include/FL/Fl_Hor_Fill_Slider.H FL/Fl_Hor_Fill_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Hor_Fill_Slider.h Fl_Hor_Fill_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Hor_Nice_Slider.H FL/Fl_Hor_Nice_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Hor_Nice_Slider.h Fl_Hor_Nice_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Hor_Slider.H FL/Fl_Hor_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Hor_Slider.h Fl_Hor_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Hor_Value_Slider.H FL/Fl_Hor_Value_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Hor_Value_Slider.h Fl_Hor_Value_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Image.H FL/Fl_Image.H
+l 0000 root sys /usr/include/FL/Fl_Image.h Fl_Image.H
+f 0444 root sys /usr/include/FL/Fl_Input.H FL/Fl_Input.H
+l 0000 root sys /usr/include/FL/Fl_Input.h Fl_Input.H
+f 0444 root sys /usr/include/FL/Fl_Input_.H FL/Fl_Input_.H
+l 0000 root sys /usr/include/FL/Fl_Input_.h Fl_Input_.H
+f 0444 root sys /usr/include/FL/Fl_Int_Input.H FL/Fl_Int_Input.H
+l 0000 root sys /usr/include/FL/Fl_Int_Input.h Fl_Int_Input.H
+f 0444 root sys /usr/include/FL/Fl_Light_Button.H FL/Fl_Light_Button.H
+l 0000 root sys /usr/include/FL/Fl_Light_Button.h Fl_Light_Button.H
+f 0444 root sys /usr/include/FL/Fl_Line_Dial.H FL/Fl_Line_Dial.H
+l 0000 root sys /usr/include/FL/Fl_Line_Dial.h Fl_Line_Dial.H
+f 0444 root sys /usr/include/FL/Fl_Menu.H FL/Fl_Menu.H
+l 0000 root sys /usr/include/FL/Fl_Menu.h Fl_Menu.H
+f 0444 root sys /usr/include/FL/Fl_Menu_.H FL/Fl_Menu_.H
+l 0000 root sys /usr/include/FL/Fl_Menu_.h Fl_Menu_.H
+f 0444 root sys /usr/include/FL/Fl_Menu_Bar.H FL/Fl_Menu_Bar.H
+l 0000 root sys /usr/include/FL/Fl_Menu_Bar.h Fl_Menu_Bar.H
+f 0444 root sys /usr/include/FL/Fl_Menu_Button.H FL/Fl_Menu_Button.H
+l 0000 root sys /usr/include/FL/Fl_Menu_Button.h Fl_Menu_Button.H
+f 0444 root sys /usr/include/FL/Fl_Menu_Item.H FL/Fl_Menu_Item.H
+l 0000 root sys /usr/include/FL/Fl_Menu_Item.h Fl_Menu_Item.H
+f 0444 root sys /usr/include/FL/Fl_Menu_Window.H FL/Fl_Menu_Window.H
+l 0000 root sys /usr/include/FL/Fl_Menu_Window.h Fl_Menu_Window.H
+f 0444 root sys /usr/include/FL/Fl_Multi_Browser.H FL/Fl_Multi_Browser.H
+l 0000 root sys /usr/include/FL/Fl_Multi_Browser.h Fl_Multi_Browser.H
+f 0444 root sys /usr/include/FL/Fl_Multi_Label.H FL/Fl_Multi_Label.H
+l 0000 root sys /usr/include/FL/Fl_Multi_Label.h Fl_Multi_Label.H
+f 0444 root sys /usr/include/FL/Fl_Multiline_Input.H FL/Fl_Multiline_Input.H
+l 0000 root sys /usr/include/FL/Fl_Multiline_Input.h Fl_Multiline_Input.H
+f 0444 root sys /usr/include/FL/Fl_Multiline_Output.H FL/Fl_Multiline_Output.H
+l 0000 root sys /usr/include/FL/Fl_Multiline_Output.h Fl_Multiline_Output.H
+f 0444 root sys /usr/include/FL/Fl_Nice_Slider.H FL/Fl_Nice_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Nice_Slider.h Fl_Nice_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Object.H FL/Fl_Object.H
+l 0000 root sys /usr/include/FL/Fl_Object.h Fl_Object.H
+f 0444 root sys /usr/include/FL/Fl_Output.H FL/Fl_Output.H
+l 0000 root sys /usr/include/FL/Fl_Output.h Fl_Output.H
+f 0444 root sys /usr/include/FL/Fl_Overlay_Window.H FL/Fl_Overlay_Window.H
+l 0000 root sys /usr/include/FL/Fl_Overlay_Window.h Fl_Overlay_Window.H
+f 0444 root sys /usr/include/FL/Fl_Pack.H FL/Fl_Pack.H
+l 0000 root sys /usr/include/FL/Fl_Pack.h Fl_Pack.H
+f 0444 root sys /usr/include/FL/Fl_Pixmap.H FL/Fl_Pixmap.H
+l 0000 root sys /usr/include/FL/Fl_Pixmap.h Fl_Pixmap.H
+f 0444 root sys /usr/include/FL/Fl_Positioner.H FL/Fl_Positioner.H
+l 0000 root sys /usr/include/FL/Fl_Positioner.h Fl_Positioner.H
+f 0444 root sys /usr/include/FL/Fl_Radio_Button.H FL/Fl_Radio_Button.H
+l 0000 root sys /usr/include/FL/Fl_Radio_Button.h Fl_Radio_Button.H
+f 0444 root sys /usr/include/FL/Fl_Radio_Light_Button.H FL/Fl_Radio_Light_Button.H
+l 0000 root sys /usr/include/FL/Fl_Radio_Light_Button.h Fl_Radio_Light_Button.H
+f 0444 root sys /usr/include/FL/Fl_Radio_Round_Button.H FL/Fl_Radio_Round_Button.H
+l 0000 root sys /usr/include/FL/Fl_Radio_Round_Button.h Fl_Radio_Round_Button.H
+f 0444 root sys /usr/include/FL/Fl_Repeat_Button.H FL/Fl_Repeat_Button.H
+l 0000 root sys /usr/include/FL/Fl_Repeat_Button.h Fl_Repeat_Button.H
+f 0444 root sys /usr/include/FL/Fl_Return_Button.H FL/Fl_Return_Button.H
+l 0000 root sys /usr/include/FL/Fl_Return_Button.h Fl_Return_Button.H
+f 0444 root sys /usr/include/FL/Fl_Roller.H FL/Fl_Roller.H
+l 0000 root sys /usr/include/FL/Fl_Roller.h Fl_Roller.H
+f 0444 root sys /usr/include/FL/Fl_Round_Button.H FL/Fl_Round_Button.H
+l 0000 root sys /usr/include/FL/Fl_Round_Button.h Fl_Round_Button.H
+f 0444 root sys /usr/include/FL/Fl_Round_Clock.H FL/Fl_Round_Clock.H
+l 0000 root sys /usr/include/FL/Fl_Round_Clock.h Fl_Round_Clock.H
+f 0444 root sys /usr/include/FL/Fl_Scroll.H FL/Fl_Scroll.H
+l 0000 root sys /usr/include/FL/Fl_Scroll.h Fl_Scroll.H
+f 0444 root sys /usr/include/FL/Fl_Scrollbar.H FL/Fl_Scrollbar.H
+l 0000 root sys /usr/include/FL/Fl_Scrollbar.h Fl_Scrollbar.H
+f 0444 root sys /usr/include/FL/Fl_Secret_Input.H FL/Fl_Secret_Input.H
+l 0000 root sys /usr/include/FL/Fl_Secret_Input.h Fl_Secret_Input.H
+f 0444 root sys /usr/include/FL/Fl_Select_Browser.H FL/Fl_Select_Browser.H
+l 0000 root sys /usr/include/FL/Fl_Select_Browser.h Fl_Select_Browser.H
+f 0444 root sys /usr/include/FL/Fl_Simple_Counter.H FL/Fl_Simple_Counter.H
+l 0000 root sys /usr/include/FL/Fl_Simple_Counter.h Fl_Simple_Counter.H
+f 0444 root sys /usr/include/FL/Fl_Single_Window.H FL/Fl_Single_Window.H
+l 0000 root sys /usr/include/FL/Fl_Single_Window.h Fl_Single_Window.H
+f 0444 root sys /usr/include/FL/Fl_Slider.H FL/Fl_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Slider.h Fl_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Tabs.H FL/Fl_Tabs.H
+l 0000 root sys /usr/include/FL/Fl_Tabs.h Fl_Tabs.H
+f 0444 root sys /usr/include/FL/Fl_Tile.H FL/Fl_Tile.H
+l 0000 root sys /usr/include/FL/Fl_Tile.h Fl_Tile.H
+f 0444 root sys /usr/include/FL/Fl_Timer.H FL/Fl_Timer.H
+l 0000 root sys /usr/include/FL/Fl_Timer.h Fl_Timer.H
+f 0444 root sys /usr/include/FL/Fl_Toggle_Button.H FL/Fl_Toggle_Button.H
+l 0000 root sys /usr/include/FL/Fl_Toggle_Button.h Fl_Toggle_Button.H
+f 0444 root sys /usr/include/FL/Fl_Toggle_Light_Button.H FL/Fl_Toggle_Light_Button.H
+l 0000 root sys /usr/include/FL/Fl_Toggle_Light_Button.h Fl_Toggle_Light_Button.H
+f 0444 root sys /usr/include/FL/Fl_Toggle_Round_Button.H FL/Fl_Toggle_Round_Button.H
+l 0000 root sys /usr/include/FL/Fl_Toggle_Round_Button.h Fl_Toggle_Round_Button.H
+f 0444 root sys /usr/include/FL/Fl_Valuator.H FL/Fl_Valuator.H
+l 0000 root sys /usr/include/FL/Fl_Valuator.h Fl_Valuator.H
+f 0444 root sys /usr/include/FL/Fl_Value_Input.H FL/Fl_Value_Input.H
+l 0000 root sys /usr/include/FL/Fl_Value_Input.h Fl_Value_Input.H
+f 0444 root sys /usr/include/FL/Fl_Value_Output.H FL/Fl_Value_Output.H
+l 0000 root sys /usr/include/FL/Fl_Value_Output.h Fl_Value_Output.H
+f 0444 root sys /usr/include/FL/Fl_Value_Slider.H FL/Fl_Value_Slider.H
+l 0000 root sys /usr/include/FL/Fl_Value_Slider.h Fl_Value_Slider.H
+f 0444 root sys /usr/include/FL/Fl_Widget.H FL/Fl_Widget.H
+l 0000 root sys /usr/include/FL/Fl_Widget.h Fl_Widget.H
+f 0444 root sys /usr/include/FL/Fl_Window.H FL/Fl_Window.H
+l 0000 root sys /usr/include/FL/Fl_Window.h Fl_Window.H
+f 0444 root sys /usr/include/FL/dirent.h FL/dirent.h
+f 0444 root sys /usr/include/FL/filename.H FL/filename.H
+l 0000 root sys /usr/include/FL/filename.h filename.H
+f 0444 root sys /usr/include/FL/fl_ask.H FL/fl_ask.H
+l 0000 root sys /usr/include/FL/fl_ask.h fl_ask.H
+f 0444 root sys /usr/include/FL/fl_draw.H FL/fl_draw.H
+l 0000 root sys /usr/include/FL/fl_draw.h fl_draw.H
+f 0444 root sys /usr/include/FL/fl_file_chooser.H FL/fl_file_chooser.H
+l 0000 root sys /usr/include/FL/fl_file_chooser.h fl_file_chooser.H
+f 0444 root sys /usr/include/FL/fl_message.H FL/fl_message.H
+l 0000 root sys /usr/include/FL/fl_message.h fl_message.H
+f 0444 root sys /usr/include/FL/fl_show_colormap.H FL/fl_show_colormap.H
+l 0000 root sys /usr/include/FL/fl_show_colormap.h fl_show_colormap.H
+f 0444 root sys /usr/include/FL/fl_show_input.H FL/fl_show_input.H
+l 0000 root sys /usr/include/FL/fl_show_input.h fl_show_input.H
+f 0444 root sys /usr/include/FL/forms.H FL/forms.H
+l 0000 root sys /usr/include/FL/forms.h forms.H
+f 0444 root sys /usr/include/FL/gl.h FL/gl.h
+f 0444 root sys /usr/include/FL/gl2opengl.h FL/gl2opengl.h
+f 0444 root sys /usr/include/FL/gl_draw.H FL/gl_draw.H
+l 0000 root sys /usr/include/FL/gl_draw.h gl_draw.H
+f 0444 root sys /usr/include/FL/glut.H FL/glut.H
+l 0000 root sys /usr/include/FL/glut.h glut.H
+f 0444 root sys /usr/include/FL/math.h FL/math.h
+f 0444 root sys /usr/include/FL/menubar.h FL/menubar.h
+f 0444 root sys /usr/include/FL/win32.H FL/win32.H
+l 0000 root sys /usr/include/FL/win32.h win32.H
+f 0444 root sys /usr/include/FL/x.H FL/x.H
+l 0000 root sys /usr/include/FL/x.h x.H
+l 0000 root sys /usr/include/Fl FL
+
+# Documentation
+f 0444 root sys /usr/doc/fltk/FL.gif documentation/FL.gif
+f 0444 root sys /usr/doc/fltk/Fl_Adjuster.html documentation/Fl_Adjuster.html
+f 0444 root sys /usr/doc/fltk/Fl_Box.html documentation/Fl_Box.html
+f 0444 root sys /usr/doc/fltk/Fl_Browser.html documentation/Fl_Browser.html
+f 0444 root sys /usr/doc/fltk/Fl_Browser_.html documentation/Fl_Browser_.html
+f 0444 root sys /usr/doc/fltk/Fl_Button.html documentation/Fl_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Chart.html documentation/Fl_Chart.html
+f 0444 root sys /usr/doc/fltk/Fl_Check_Button.gif documentation/Fl_Check_Button.gif
+f 0444 root sys /usr/doc/fltk/Fl_Check_Button.html documentation/Fl_Check_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Choice.html documentation/Fl_Choice.html
+f 0444 root sys /usr/doc/fltk/Fl_Clock.html documentation/Fl_Clock.html
+f 0444 root sys /usr/doc/fltk/Fl_Color_Chooser.html documentation/Fl_Color_Chooser.html
+f 0444 root sys /usr/doc/fltk/Fl_Counter.html documentation/Fl_Counter.html
+f 0444 root sys /usr/doc/fltk/Fl_Dial.html documentation/Fl_Dial.html
+f 0444 root sys /usr/doc/fltk/Fl_Double_Window.html documentation/Fl_Double_Window.html
+f 0444 root sys /usr/doc/fltk/Fl_End.html documentation/Fl_End.html
+f 0444 root sys /usr/doc/fltk/Fl_Float_Input.html documentation/Fl_Float_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Free.html documentation/Fl_Free.html
+f 0444 root sys /usr/doc/fltk/Fl_Gl_Window.html documentation/Fl_Gl_Window.html
+f 0444 root sys /usr/doc/fltk/Fl_Group.html documentation/Fl_Group.html
+f 0444 root sys /usr/doc/fltk/Fl_Hold_Browser.html documentation/Fl_Hold_Browser.html
+f 0444 root sys /usr/doc/fltk/Fl_Input.html documentation/Fl_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Input_.html documentation/Fl_Input_.html
+f 0444 root sys /usr/doc/fltk/Fl_Int_Input.html documentation/Fl_Int_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Light_Button.gif documentation/Fl_Light_Button.gif
+f 0444 root sys /usr/doc/fltk/Fl_Light_Button.html documentation/Fl_Light_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Menu_.html documentation/Fl_Menu_.html
+f 0444 root sys /usr/doc/fltk/Fl_Menu_Bar.html documentation/Fl_Menu_Bar.html
+f 0444 root sys /usr/doc/fltk/Fl_Menu_Button.html documentation/Fl_Menu_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Menu_Item.html documentation/Fl_Menu_Item.html
+f 0444 root sys /usr/doc/fltk/Fl_Menu_Window.html documentation/Fl_Menu_Window.html
+f 0444 root sys /usr/doc/fltk/Fl_Multi_Browser.html documentation/Fl_Multi_Browser.html
+f 0444 root sys /usr/doc/fltk/Fl_Multiline_Input.html documentation/Fl_Multiline_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Multiline_Output.html documentation/Fl_Multiline_Output.html
+f 0444 root sys /usr/doc/fltk/Fl_Output.html documentation/Fl_Output.html
+f 0444 root sys /usr/doc/fltk/Fl_Overlay_Window.html documentation/Fl_Overlay_Window.html
+f 0444 root sys /usr/doc/fltk/Fl_Pack.html documentation/Fl_Pack.html
+f 0444 root sys /usr/doc/fltk/Fl_Positioner.html documentation/Fl_Positioner.html
+f 0444 root sys /usr/doc/fltk/Fl_Repeat_Button.html documentation/Fl_Repeat_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Return_Button.gif documentation/Fl_Return_Button.gif
+f 0444 root sys /usr/doc/fltk/Fl_Return_Button.html documentation/Fl_Return_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Roller.gif documentation/Fl_Roller.gif
+f 0444 root sys /usr/doc/fltk/Fl_Roller.html documentation/Fl_Roller.html
+f 0444 root sys /usr/doc/fltk/Fl_Round_Button.gif documentation/Fl_Round_Button.gif
+f 0444 root sys /usr/doc/fltk/Fl_Round_Button.html documentation/Fl_Round_Button.html
+f 0444 root sys /usr/doc/fltk/Fl_Scroll.gif documentation/Fl_Scroll.gif
+f 0444 root sys /usr/doc/fltk/Fl_Scroll.html documentation/Fl_Scroll.html
+f 0444 root sys /usr/doc/fltk/Fl_Scrollbar.html documentation/Fl_Scrollbar.html
+f 0444 root sys /usr/doc/fltk/Fl_Secret_Input.html documentation/Fl_Secret_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Select_Browser.html documentation/Fl_Select_Browser.html
+f 0444 root sys /usr/doc/fltk/Fl_Single_Window.html documentation/Fl_Single_Window.html
+f 0444 root sys /usr/doc/fltk/Fl_Slider.html documentation/Fl_Slider.html
+f 0444 root sys /usr/doc/fltk/Fl_Tabs.html documentation/Fl_Tabs.html
+f 0444 root sys /usr/doc/fltk/Fl_Tile.gif documentation/Fl_Tile.gif
+f 0444 root sys /usr/doc/fltk/Fl_Tile.html documentation/Fl_Tile.html
+f 0444 root sys /usr/doc/fltk/Fl_Timer.html documentation/Fl_Timer.html
+f 0444 root sys /usr/doc/fltk/Fl_Valuator.html documentation/Fl_Valuator.html
+f 0444 root sys /usr/doc/fltk/Fl_Value_Input.gif documentation/Fl_Value_Input.gif
+f 0444 root sys /usr/doc/fltk/Fl_Value_Input.html documentation/Fl_Value_Input.html
+f 0444 root sys /usr/doc/fltk/Fl_Value_Output.gif documentation/Fl_Value_Output.gif
+f 0444 root sys /usr/doc/fltk/Fl_Value_Output.html documentation/Fl_Value_Output.html
+f 0444 root sys /usr/doc/fltk/Fl_Value_Slider.html documentation/Fl_Value_Slider.html
+f 0444 root sys /usr/doc/fltk/Fl_Widget.html documentation/Fl_Widget.html
+f 0444 root sys /usr/doc/fltk/Fl_Window.html documentation/Fl_Window.html
+f 0444 root sys /usr/doc/fltk/adjuster1.gif documentation/adjuster1.gif
+f 0444 root sys /usr/doc/fltk/ask.C.gif documentation/ask.C.gif
+f 0444 root sys /usr/doc/fltk/basics.html documentation/basics.html
+f 0444 root sys /usr/doc/fltk/bglogo.gif documentation/bglogo.gif
+f 0444 root sys /usr/doc/fltk/boxtypes.gif documentation/boxtypes.gif
+f 0444 root sys /usr/doc/fltk/button.C.gif documentation/button.C.gif
+f 0444 root sys /usr/doc/fltk/buttons.gif documentation/buttons.gif
+f 0444 root sys /usr/doc/fltk/charts.gif documentation/charts.gif
+f 0444 root sys /usr/doc/fltk/choice.gif documentation/choice.gif
+f 0444 root sys /usr/doc/fltk/clock.gif documentation/clock.gif
+f 0444 root sys /usr/doc/fltk/common.html documentation/common.html
+f 0444 root sys /usr/doc/fltk/counter.gif documentation/counter.gif
+f 0444 root sys /usr/doc/fltk/cubeview.gif documentation/cubeview.gif
+f 0444 root sys /usr/doc/fltk/dial.gif documentation/dial.gif
+f 0444 root sys /usr/doc/fltk/drawing.html documentation/drawing.html
+f 0444 root sys /usr/doc/fltk/editor-replace.gif documentation/editor-replace.gif
+f 0444 root sys /usr/doc/fltk/editor.gif documentation/editor.gif
+f 0444 root sys /usr/doc/fltk/editor.html documentation/editor.html
+f 0444 root sys /usr/doc/fltk/enumerations.html documentation/enumerations.html
+f 0444 root sys /usr/doc/fltk/events.html documentation/events.html
+f 0444 root sys /usr/doc/fltk/filechooser.gif documentation/filechooser.gif
+f 0444 root sys /usr/doc/fltk/fl_alert.gif documentation/fl_alert.gif
+f 0444 root sys /usr/doc/fltk/fl_ask.gif documentation/fl_ask.gif
+f 0444 root sys /usr/doc/fltk/fl_choice.gif documentation/fl_choice.gif
+f 0444 root sys /usr/doc/fltk/fl_color_chooser.jpg documentation/fl_color_chooser.jpg
+f 0444 root sys /usr/doc/fltk/fl_input.gif documentation/fl_input.gif
+f 0444 root sys /usr/doc/fltk/fl_message.gif documentation/fl_message.gif
+f 0444 root sys /usr/doc/fltk/fl_password.gif documentation/fl_password.gif
+f 0444 root sys /usr/doc/fltk/fl_show_colormap.gif documentation/fl_show_colormap.gif
+f 0444 root sys /usr/doc/fltk/fluid-org.gif documentation/fluid-org.gif
+f 0444 root sys /usr/doc/fltk/fluid.gif documentation/fluid.gif
+f 0444 root sys /usr/doc/fltk/fluid.html documentation/fluid.html
+f 0444 root sys /usr/doc/fltk/fluid1.gif documentation/fluid1.gif
+f 0444 root sys /usr/doc/fltk/fluid2.gif documentation/fluid2.gif
+f 0444 root sys /usr/doc/fltk/fluid3.gif documentation/fluid3.gif
+f 0444 root sys /usr/doc/fltk/fluid4.gif documentation/fluid4.gif
+f 0444 root sys /usr/doc/fltk/fluid_main.gif documentation/fluid_main.gif
+f 0444 root sys /usr/doc/fltk/fluid_prefs.gif documentation/fluid_prefs.gif
+f 0444 root sys /usr/doc/fltk/fluid_widget.gif documentation/fluid_widget.gif
+f 0444 root sys /usr/doc/fltk/forms.html documentation/forms.html
+f 0444 root sys /usr/doc/fltk/functions.html documentation/functions.html
+f 0444 root sys /usr/doc/fltk/glut.html documentation/glut.html
+f 0444 root sys /usr/doc/fltk/hello.C.gif documentation/hello.C.gif
+f 0444 root sys /usr/doc/fltk/index.html documentation/index.html
+f 0444 root sys /usr/doc/fltk/intro.html documentation/intro.html
+f 0444 root sys /usr/doc/fltk/license.html documentation/license.html
+f 0444 root sys /usr/doc/fltk/menu.gif documentation/menu.gif
+f 0444 root sys /usr/doc/fltk/menu_button.gif documentation/menu_button.gif
+f 0444 root sys /usr/doc/fltk/menubar.gif documentation/menubar.gif
+f 0444 root sys /usr/doc/fltk/opengl.html documentation/opengl.html
+f 0444 root sys /usr/doc/fltk/osissues.html documentation/osissues.html
+f 0444 root sys /usr/doc/fltk/positioner.gif documentation/positioner.gif
+f 0444 root sys /usr/doc/fltk/preface.html documentation/preface.html
+f 0444 root sys /usr/doc/fltk/resizebox1.gif documentation/resizebox1.gif
+f 0444 root sys /usr/doc/fltk/resizebox2.gif documentation/resizebox2.gif
+f 0444 root sys /usr/doc/fltk/round_clock.gif documentation/round_clock.gif
+f 0444 root sys /usr/doc/fltk/scrollbar.gif documentation/scrollbar.gif
+f 0444 root sys /usr/doc/fltk/shape.C.gif documentation/shape.C.gif
+f 0444 root sys /usr/doc/fltk/slider.gif documentation/slider.gif
+f 0444 root sys /usr/doc/fltk/subclassing.html documentation/subclassing.html
+f 0444 root sys /usr/doc/fltk/symbols.gif documentation/symbols.gif
+f 0444 root sys /usr/doc/fltk/tabs.gif documentation/tabs.gif
+f 0444 root sys /usr/doc/fltk/text.gif documentation/text.gif
+f 0444 root sys /usr/doc/fltk/valuators.gif documentation/valuators.gif
+f 0444 root sys /usr/doc/fltk/value_slider.gif documentation/value_slider.gif
+f 0444 root sys /usr/doc/fltk/widgets.html documentation/widgets.html
+
+#
+# End of "$Id: fltk.list,v 1.1.2.1 1999/09/15 17:05:35 mike Exp $".
+#
diff --git a/packages/hpux/fltk.info b/packages/hpux/fltk.info
index b53ba1353..e10616621 100644
--- a/packages/hpux/fltk.info
+++ b/packages/hpux/fltk.info
@@ -1,7 +1,7 @@
product
tag fltk
- revision 1.0.4
- title Fast Light Tool Kit, 1.0.4
+ revision 1.0.5
+ title Fast Light Tool Kit, 1.0.5
description C++ GUI toolkit for UNIX and Microsoft Windows.
copyright Copyright 1998-1999, see the GNU Library General Public License for details.
number HP-FLTK
@@ -13,7 +13,7 @@ product
fileset
tag dso
- title FLTK - Shared Libraries, 1.0.4
+ title FLTK - Shared Libraries, 1.0.5
file -m 0000 -o root -g sys packages/hpux/links/libfltk.sl /usr/lib/libfltk.sl
file -m 0555 -o root -g sys src/libfltk.sl.1 /usr/lib/libfltk.sl.1
@@ -21,7 +21,7 @@ product
fileset
tag doc
- title FLTK - Documentation, 1.0.4
+ title FLTK - Documentation, 1.0.5
file -m 0444 -o root -g sys documentation/adjuster1.gif /usr/info/fltk/adjuster1.gif
file -m 0444 -o root -g sys documentation/ask.C.gif /usr/info/fltk/ask.C.gif
@@ -158,7 +158,7 @@ product
fileset
tag dev
- title FLTK - Development Software, 1.0.4
+ title FLTK - Development Software, 1.0.5
file -m 0444 -o root -g sys fluid/fluid /usr/bin/X11/fluid
file -m 0444 -o root -g sys FL/dirent.h /usr/include/FL/dirent.h
diff --git a/packages/hpux/makedist.sh b/packages/hpux/makedist.sh
index 9c49c5789..99f2b9e70 100755
--- a/packages/hpux/makedist.sh
+++ b/packages/hpux/makedist.sh
@@ -26,7 +26,7 @@ ln -sf libfltk.sl.1 links/libfltk.sl
cd ../..
/usr/sbin/swpackage -v -s packages/hpux/fltk.info \
- -d packages/hpux/fltk-1.0.4-hpux.depot -x write_remote_files=true \
+ -d packages/hpux/fltk-1.0.5-hpux.depot -x write_remote_files=true \
-x target_type=tape fltk
echo "Compressing distribution..."
@@ -34,6 +34,6 @@ echo "Compressing distribution..."
cd packages/hpux
rm -rf links
-rm -f fltk-1.0.4-hpux.depot.gz
-gzip -9 fltk-1.0.4-hpux.depot
+rm -f fltk-1.0.5-hpux.depot.gz
+gzip -9 fltk-1.0.5-hpux.depot
diff --git a/packages/install.html b/packages/install.html
index 9f069af2b..165d02b35 100644
--- a/packages/install.html
+++ b/packages/install.html
@@ -46,9 +46,9 @@ The Digital UNIX distribution is in <tt>setld</tt> format. To install the
distribution type:
<UL><PRE>
-gunzip fltk-1.0.4-dunix.tar.gz <B>Enter</B>
-tar xvf fltk-1.0.4-dunix.tar <B>Enter</B>
-setld -l fltk-1.0.4-dunix <B>Enter</B>
+gunzip fltk-1.0.5-dunix.tar.gz <B>Enter</B>
+tar xvf fltk-1.0.5-dunix.tar <B>Enter</B>
+setld -l fltk-1.0.5-dunix <B>Enter</B>
</PRE></UL>
<H1><FONT FACE="Arial,HELVETICA"><A NAME="hpux">Installing the HP-UX Distribution
@@ -59,7 +59,7 @@ distribution type:
<UL><PRE>
swremove fltk <B>Enter</B>
-gunzip fltk-1.0.4-hpux.depot.gz <B>Enter</B>
+gunzip fltk-1.0.5-hpux.depot.gz <B>Enter</B>
swinstall -s <I>/full/path/to/</I>fltk.depot <B>Enter</B>
</PRE></UL>
@@ -70,7 +70,7 @@ The IRIX distribution is in <tt>tardist</tt> format. To install the
distribution type:
<UL><PRE>
-tardist fltk-1.0.4-irix-<I>version</I>.tardist <B>Enter</B>
+tardist fltk-1.0.5-irix-<I>version</I>.tardist <B>Enter</B>
</PRE></UL>
where <I>version</I> is the version of IRIX you have (5.x, 6.x, etc.) The
@@ -87,7 +87,7 @@ popular by the RedHat Linux distribution. To install the distribution
type:
<UL><PRE>
-rpm fltk-1.0.4-1.<I>processor</I>.rpm <B>Enter</B>
+rpm --install fltk-1.0.5-1.<I>processor</I>.rpm <B>Enter</B>
</PRE></UL>
where <I>processor</I> is your processor (alpha, i386, mips, or sparc).
@@ -100,8 +100,8 @@ distribution type:
<UL><PRE>
pkgrm fltk <B>Enter</B>
-gunzip fltk-1.0.4-solaris-<I>processor</I>.pkg.gz <B>Enter</B>
-pkgadd fltk-1.0.4-solaris-<I>processor</I>.pkg <B>Enter</B>
+gunzip fltk-1.0.5-solaris-<I>processor</I>.pkg.gz <B>Enter</B>
+pkgadd fltk-1.0.5-solaris-<I>processor</I>.pkg <B>Enter</B>
</PRE></UL>
where <I>processor</I> is your processor (intel or sparc).
diff --git a/packages/irix/fltk.spec b/packages/irix/fltk.spec
index bd251b47a..a9f81fab0 100644
--- a/packages/irix/fltk.spec
+++ b/packages/irix/fltk.spec
@@ -1,17 +1,17 @@
product fltk
- id "Fast Light Tool Kit, 1.0.4"
+ id "Fast Light Tool Kit, 1.0.5"
image sw
- id "FLTK Execution Environment, 1.0.4"
+ id "FLTK Execution Environment, 1.0.5"
version 010004000
subsys eoe default
- id "FLTK - Execution-Only Environment, 1.0.4"
+ id "FLTK - Execution-Only Environment, 1.0.5"
exp fltk.sw.eoe
endsubsys
subsys dev default
- id "FLTK - Development Environment, 1.0.4"
+ id "FLTK - Development Environment, 1.0.5"
exp fltk.sw.dev
prereq
(
@@ -21,11 +21,11 @@ product fltk
endimage
image man
- id "FLTK Documentation, 1.0.4"
+ id "FLTK Documentation, 1.0.5"
version 010004000
subsys eoe default
- id "FLTK - Development Manuals, 1.0.4"
+ id "FLTK - Development Manuals, 1.0.5"
exp fltk.man.dev
endsubsys
endimage
diff --git a/packages/irix/makedist.sh b/packages/irix/makedist.sh
index 5c821f7da..00c75cd24 100755
--- a/packages/irix/makedist.sh
+++ b/packages/irix/makedist.sh
@@ -12,5 +12,5 @@ case `uname -r` in
;;
esac
-tar cvf fltk-1.0.4-irix-`uname -r`.tardist fltk fltk.idb fltk.man fltk.sw
+tar cvf fltk-1.0.5-irix-`uname -r`.tardist fltk fltk.idb fltk.man fltk.sw
diff --git a/packages/linux/fltk.spec b/packages/linux/fltk.spec
index be553d89b..ebcc24019 100644
--- a/packages/linux/fltk.spec
+++ b/packages/linux/fltk.spec
@@ -1,10 +1,10 @@
Summary: Fast Light Tool Kit
Name: fltk
-Version: 1.0.4
+Version: 1.0.5
Release: 1
Copyright: LGPL
Group: Development/Libraries
-Source: ftp://ftp.fltk.org/pub/fltk/1.0.4/fltk-1.0.4-source.tar.gz
+Source: ftp://ftp.fltk.org/pub/fltk/1.0.5/fltk-1.0.5-source.tar.gz
URL: http://www.fltk.org
Packager: Michael Sweet <mike@easysw.com>
%description
@@ -208,133 +208,133 @@ repository in the US.
/usr/include/FL/x.h
/usr/include/Fl
%doc /usr/man/man1/fluid.1
-%doc /usr/doc/fltk-1.0.4/FL.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Adjuster.html
-%doc /usr/doc/fltk-1.0.4/Fl_Box.html
-%doc /usr/doc/fltk-1.0.4/Fl_Browser.html
-%doc /usr/doc/fltk-1.0.4/Fl_Browser_.html
-%doc /usr/doc/fltk-1.0.4/Fl_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Chart.html
-%doc /usr/doc/fltk-1.0.4/Fl_Check_Button.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Check_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Choice.html
-%doc /usr/doc/fltk-1.0.4/Fl_Clock.html
-%doc /usr/doc/fltk-1.0.4/Fl_Color_Chooser.html
-%doc /usr/doc/fltk-1.0.4/Fl_Counter.html
-%doc /usr/doc/fltk-1.0.4/Fl_Dial.html
-%doc /usr/doc/fltk-1.0.4/Fl_Double_Window.html
-%doc /usr/doc/fltk-1.0.4/Fl_End.html
-%doc /usr/doc/fltk-1.0.4/Fl_Float_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Free.html
-%doc /usr/doc/fltk-1.0.4/Fl_Gl_Window.html
-%doc /usr/doc/fltk-1.0.4/Fl_Group.html
-%doc /usr/doc/fltk-1.0.4/Fl_Hold_Browser.html
-%doc /usr/doc/fltk-1.0.4/Fl_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Input_.html
-%doc /usr/doc/fltk-1.0.4/Fl_Int_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Light_Button.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Light_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Menu_.html
-%doc /usr/doc/fltk-1.0.4/Fl_Menu_Bar.html
-%doc /usr/doc/fltk-1.0.4/Fl_Menu_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Menu_Item.html
-%doc /usr/doc/fltk-1.0.4/Fl_Menu_Window.html
-%doc /usr/doc/fltk-1.0.4/Fl_Multi_Browser.html
-%doc /usr/doc/fltk-1.0.4/Fl_Multiline_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Multiline_Output.html
-%doc /usr/doc/fltk-1.0.4/Fl_Output.html
-%doc /usr/doc/fltk-1.0.4/Fl_Overlay_Window.html
-%doc /usr/doc/fltk-1.0.4/Fl_Pack.html
-%doc /usr/doc/fltk-1.0.4/Fl_Positioner.html
-%doc /usr/doc/fltk-1.0.4/Fl_Repeat_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Return_Button.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Return_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Roller.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Roller.html
-%doc /usr/doc/fltk-1.0.4/Fl_Round_Button.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Round_Button.html
-%doc /usr/doc/fltk-1.0.4/Fl_Scroll.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Scroll.html
-%doc /usr/doc/fltk-1.0.4/Fl_Scrollbar.html
-%doc /usr/doc/fltk-1.0.4/Fl_Secret_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Select_Browser.html
-%doc /usr/doc/fltk-1.0.4/Fl_Single_Window.html
-%doc /usr/doc/fltk-1.0.4/Fl_Slider.html
-%doc /usr/doc/fltk-1.0.4/Fl_Tabs.html
-%doc /usr/doc/fltk-1.0.4/Fl_Tile.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Tile.html
-%doc /usr/doc/fltk-1.0.4/Fl_Timer.html
-%doc /usr/doc/fltk-1.0.4/Fl_Valuator.html
-%doc /usr/doc/fltk-1.0.4/Fl_Value_Input.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Value_Input.html
-%doc /usr/doc/fltk-1.0.4/Fl_Value_Output.gif
-%doc /usr/doc/fltk-1.0.4/Fl_Value_Output.html
-%doc /usr/doc/fltk-1.0.4/Fl_Value_Slider.html
-%doc /usr/doc/fltk-1.0.4/Fl_Widget.html
-%doc /usr/doc/fltk-1.0.4/Fl_Window.html
-%doc /usr/doc/fltk-1.0.4/adjuster1.gif
-%doc /usr/doc/fltk-1.0.4/ask.C.gif
-%doc /usr/doc/fltk-1.0.4/basics.html
-%doc /usr/doc/fltk-1.0.4/bglogo.gif
-%doc /usr/doc/fltk-1.0.4/boxtypes.gif
-%doc /usr/doc/fltk-1.0.4/button.C.gif
-%doc /usr/doc/fltk-1.0.4/buttons.gif
-%doc /usr/doc/fltk-1.0.4/charts.gif
-%doc /usr/doc/fltk-1.0.4/choice.gif
-%doc /usr/doc/fltk-1.0.4/clock.gif
-%doc /usr/doc/fltk-1.0.4/common.html
-%doc /usr/doc/fltk-1.0.4/counter.gif
-%doc /usr/doc/fltk-1.0.4/cubeview.gif
-%doc /usr/doc/fltk-1.0.4/dial.gif
-%doc /usr/doc/fltk-1.0.4/drawing.html
-%doc /usr/doc/fltk-1.0.4/editor-replace.gif
-%doc /usr/doc/fltk-1.0.4/editor.gif
-%doc /usr/doc/fltk-1.0.4/editor.html
-%doc /usr/doc/fltk-1.0.4/enumerations.html
-%doc /usr/doc/fltk-1.0.4/events.html
-%doc /usr/doc/fltk-1.0.4/filechooser.gif
-%doc /usr/doc/fltk-1.0.4/fl_alert.gif
-%doc /usr/doc/fltk-1.0.4/fl_ask.gif
-%doc /usr/doc/fltk-1.0.4/fl_choice.gif
-%doc /usr/doc/fltk-1.0.4/fl_color_chooser.jpg
-%doc /usr/doc/fltk-1.0.4/fl_input.gif
-%doc /usr/doc/fltk-1.0.4/fl_message.gif
-%doc /usr/doc/fltk-1.0.4/fl_password.gif
-%doc /usr/doc/fltk-1.0.4/fl_show_colormap.gif
-%doc /usr/doc/fltk-1.0.4/fluid-org.gif
-%doc /usr/doc/fltk-1.0.4/fluid.gif
-%doc /usr/doc/fltk-1.0.4/fluid.html
-%doc /usr/doc/fltk-1.0.4/fluid1.gif
-%doc /usr/doc/fltk-1.0.4/fluid2.gif
-%doc /usr/doc/fltk-1.0.4/fluid3.gif
-%doc /usr/doc/fltk-1.0.4/fluid4.gif
-%doc /usr/doc/fltk-1.0.4/fluid_main.gif
-%doc /usr/doc/fltk-1.0.4/fluid_prefs.gif
-%doc /usr/doc/fltk-1.0.4/fluid_widget.gif
-%doc /usr/doc/fltk-1.0.4/forms.html
-%doc /usr/doc/fltk-1.0.4/functions.html
-%doc /usr/doc/fltk-1.0.4/glut.html
-%doc /usr/doc/fltk-1.0.4/hello.C.gif
-%doc /usr/doc/fltk-1.0.4/index.html
-%doc /usr/doc/fltk-1.0.4/intro.html
-%doc /usr/doc/fltk-1.0.4/license.html
-%doc /usr/doc/fltk-1.0.4/menu.gif
-%doc /usr/doc/fltk-1.0.4/menu_button.gif
-%doc /usr/doc/fltk-1.0.4/menubar.gif
-%doc /usr/doc/fltk-1.0.4/opengl.html
-%doc /usr/doc/fltk-1.0.4/osissues.html
-%doc /usr/doc/fltk-1.0.4/positioner.gif
-%doc /usr/doc/fltk-1.0.4/preface.html
-%doc /usr/doc/fltk-1.0.4/resizebox1.gif
-%doc /usr/doc/fltk-1.0.4/resizebox2.gif
-%doc /usr/doc/fltk-1.0.4/round_clock.gif
-%doc /usr/doc/fltk-1.0.4/scrollbar.gif
-%doc /usr/doc/fltk-1.0.4/shape.C.gif
-%doc /usr/doc/fltk-1.0.4/slider.gif
-%doc /usr/doc/fltk-1.0.4/subclassing.html
-%doc /usr/doc/fltk-1.0.4/symbols.gif
-%doc /usr/doc/fltk-1.0.4/tabs.gif
-%doc /usr/doc/fltk-1.0.4/text.gif
-%doc /usr/doc/fltk-1.0.4/valuators.gif
-%doc /usr/doc/fltk-1.0.4/value_slider.gif
-%doc /usr/doc/fltk-1.0.4/widgets.html
+%doc /usr/doc/fltk-1.0.5/FL.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Adjuster.html
+%doc /usr/doc/fltk-1.0.5/Fl_Box.html
+%doc /usr/doc/fltk-1.0.5/Fl_Browser.html
+%doc /usr/doc/fltk-1.0.5/Fl_Browser_.html
+%doc /usr/doc/fltk-1.0.5/Fl_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Chart.html
+%doc /usr/doc/fltk-1.0.5/Fl_Check_Button.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Check_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Choice.html
+%doc /usr/doc/fltk-1.0.5/Fl_Clock.html
+%doc /usr/doc/fltk-1.0.5/Fl_Color_Chooser.html
+%doc /usr/doc/fltk-1.0.5/Fl_Counter.html
+%doc /usr/doc/fltk-1.0.5/Fl_Dial.html
+%doc /usr/doc/fltk-1.0.5/Fl_Double_Window.html
+%doc /usr/doc/fltk-1.0.5/Fl_End.html
+%doc /usr/doc/fltk-1.0.5/Fl_Float_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Free.html
+%doc /usr/doc/fltk-1.0.5/Fl_Gl_Window.html
+%doc /usr/doc/fltk-1.0.5/Fl_Group.html
+%doc /usr/doc/fltk-1.0.5/Fl_Hold_Browser.html
+%doc /usr/doc/fltk-1.0.5/Fl_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Input_.html
+%doc /usr/doc/fltk-1.0.5/Fl_Int_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Light_Button.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Light_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Menu_.html
+%doc /usr/doc/fltk-1.0.5/Fl_Menu_Bar.html
+%doc /usr/doc/fltk-1.0.5/Fl_Menu_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Menu_Item.html
+%doc /usr/doc/fltk-1.0.5/Fl_Menu_Window.html
+%doc /usr/doc/fltk-1.0.5/Fl_Multi_Browser.html
+%doc /usr/doc/fltk-1.0.5/Fl_Multiline_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Multiline_Output.html
+%doc /usr/doc/fltk-1.0.5/Fl_Output.html
+%doc /usr/doc/fltk-1.0.5/Fl_Overlay_Window.html
+%doc /usr/doc/fltk-1.0.5/Fl_Pack.html
+%doc /usr/doc/fltk-1.0.5/Fl_Positioner.html
+%doc /usr/doc/fltk-1.0.5/Fl_Repeat_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Return_Button.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Return_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Roller.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Roller.html
+%doc /usr/doc/fltk-1.0.5/Fl_Round_Button.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Round_Button.html
+%doc /usr/doc/fltk-1.0.5/Fl_Scroll.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Scroll.html
+%doc /usr/doc/fltk-1.0.5/Fl_Scrollbar.html
+%doc /usr/doc/fltk-1.0.5/Fl_Secret_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Select_Browser.html
+%doc /usr/doc/fltk-1.0.5/Fl_Single_Window.html
+%doc /usr/doc/fltk-1.0.5/Fl_Slider.html
+%doc /usr/doc/fltk-1.0.5/Fl_Tabs.html
+%doc /usr/doc/fltk-1.0.5/Fl_Tile.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Tile.html
+%doc /usr/doc/fltk-1.0.5/Fl_Timer.html
+%doc /usr/doc/fltk-1.0.5/Fl_Valuator.html
+%doc /usr/doc/fltk-1.0.5/Fl_Value_Input.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Value_Input.html
+%doc /usr/doc/fltk-1.0.5/Fl_Value_Output.gif
+%doc /usr/doc/fltk-1.0.5/Fl_Value_Output.html
+%doc /usr/doc/fltk-1.0.5/Fl_Value_Slider.html
+%doc /usr/doc/fltk-1.0.5/Fl_Widget.html
+%doc /usr/doc/fltk-1.0.5/Fl_Window.html
+%doc /usr/doc/fltk-1.0.5/adjuster1.gif
+%doc /usr/doc/fltk-1.0.5/ask.C.gif
+%doc /usr/doc/fltk-1.0.5/basics.html
+%doc /usr/doc/fltk-1.0.5/bglogo.gif
+%doc /usr/doc/fltk-1.0.5/boxtypes.gif
+%doc /usr/doc/fltk-1.0.5/button.C.gif
+%doc /usr/doc/fltk-1.0.5/buttons.gif
+%doc /usr/doc/fltk-1.0.5/charts.gif
+%doc /usr/doc/fltk-1.0.5/choice.gif
+%doc /usr/doc/fltk-1.0.5/clock.gif
+%doc /usr/doc/fltk-1.0.5/common.html
+%doc /usr/doc/fltk-1.0.5/counter.gif
+%doc /usr/doc/fltk-1.0.5/cubeview.gif
+%doc /usr/doc/fltk-1.0.5/dial.gif
+%doc /usr/doc/fltk-1.0.5/drawing.html
+%doc /usr/doc/fltk-1.0.5/editor-replace.gif
+%doc /usr/doc/fltk-1.0.5/editor.gif
+%doc /usr/doc/fltk-1.0.5/editor.html
+%doc /usr/doc/fltk-1.0.5/enumerations.html
+%doc /usr/doc/fltk-1.0.5/events.html
+%doc /usr/doc/fltk-1.0.5/filechooser.gif
+%doc /usr/doc/fltk-1.0.5/fl_alert.gif
+%doc /usr/doc/fltk-1.0.5/fl_ask.gif
+%doc /usr/doc/fltk-1.0.5/fl_choice.gif
+%doc /usr/doc/fltk-1.0.5/fl_color_chooser.jpg
+%doc /usr/doc/fltk-1.0.5/fl_input.gif
+%doc /usr/doc/fltk-1.0.5/fl_message.gif
+%doc /usr/doc/fltk-1.0.5/fl_password.gif
+%doc /usr/doc/fltk-1.0.5/fl_show_colormap.gif
+%doc /usr/doc/fltk-1.0.5/fluid-org.gif
+%doc /usr/doc/fltk-1.0.5/fluid.gif
+%doc /usr/doc/fltk-1.0.5/fluid.html
+%doc /usr/doc/fltk-1.0.5/fluid1.gif
+%doc /usr/doc/fltk-1.0.5/fluid2.gif
+%doc /usr/doc/fltk-1.0.5/fluid3.gif
+%doc /usr/doc/fltk-1.0.5/fluid4.gif
+%doc /usr/doc/fltk-1.0.5/fluid_main.gif
+%doc /usr/doc/fltk-1.0.5/fluid_prefs.gif
+%doc /usr/doc/fltk-1.0.5/fluid_widget.gif
+%doc /usr/doc/fltk-1.0.5/forms.html
+%doc /usr/doc/fltk-1.0.5/functions.html
+%doc /usr/doc/fltk-1.0.5/glut.html
+%doc /usr/doc/fltk-1.0.5/hello.C.gif
+%doc /usr/doc/fltk-1.0.5/index.html
+%doc /usr/doc/fltk-1.0.5/intro.html
+%doc /usr/doc/fltk-1.0.5/license.html
+%doc /usr/doc/fltk-1.0.5/menu.gif
+%doc /usr/doc/fltk-1.0.5/menu_button.gif
+%doc /usr/doc/fltk-1.0.5/menubar.gif
+%doc /usr/doc/fltk-1.0.5/opengl.html
+%doc /usr/doc/fltk-1.0.5/osissues.html
+%doc /usr/doc/fltk-1.0.5/positioner.gif
+%doc /usr/doc/fltk-1.0.5/preface.html
+%doc /usr/doc/fltk-1.0.5/resizebox1.gif
+%doc /usr/doc/fltk-1.0.5/resizebox2.gif
+%doc /usr/doc/fltk-1.0.5/round_clock.gif
+%doc /usr/doc/fltk-1.0.5/scrollbar.gif
+%doc /usr/doc/fltk-1.0.5/shape.C.gif
+%doc /usr/doc/fltk-1.0.5/slider.gif
+%doc /usr/doc/fltk-1.0.5/subclassing.html
+%doc /usr/doc/fltk-1.0.5/symbols.gif
+%doc /usr/doc/fltk-1.0.5/tabs.gif
+%doc /usr/doc/fltk-1.0.5/text.gif
+%doc /usr/doc/fltk-1.0.5/valuators.gif
+%doc /usr/doc/fltk-1.0.5/value_slider.gif
+%doc /usr/doc/fltk-1.0.5/widgets.html
diff --git a/packages/solaris-intel/fltk.pkginfo b/packages/solaris-intel/fltk.pkginfo
index 8c9ca412a..7e929cc9d 100644
--- a/packages/solaris-intel/fltk.pkginfo
+++ b/packages/solaris-intel/fltk.pkginfo
@@ -1,11 +1,11 @@
PKG=fltk
-NAME=Fast Light Tool Kit, 1.0.4
+NAME=Fast Light Tool Kit, 1.0.5
ARCH=i86pc
-VERSION=1.0.4
+VERSION=1.0.5
CATEGORY=development
DESC=C++ GUI Toolkit for UNIX and Windows.
VENDOR=GNU
HOTLINE=http://www.fltk.org
EMAIL=fltk-bugs@fltk.org
CLASSES=dev doc dso
-PSTAMP=fltk19990612000
+PSTAMP=fltk19990915000
diff --git a/packages/solaris-intel/makedist.sh b/packages/solaris-intel/makedist.sh
index a53307498..274e77ddf 100755
--- a/packages/solaris-intel/makedist.sh
+++ b/packages/solaris-intel/makedist.sh
@@ -22,10 +22,10 @@ cd packages/solaris-intel
echo "Packing distribution..."
-pkgtrans -s . fltk-1.0.4-solaris-intel.pkg fltk
+pkgtrans -s . fltk-1.0.5-solaris-intel.pkg fltk
rm -rf fltk
echo "Compressing distribution..."
-rm -f fltk-1.0.4-solaris-intel.pkg.gz
-gzip -9 fltk-1.0.4-solaris-intel.pkg
+rm -f fltk-1.0.5-solaris-intel.pkg.gz
+gzip -9 fltk-1.0.5-solaris-intel.pkg
diff --git a/packages/solaris-sparc/fltk.pkginfo b/packages/solaris-sparc/fltk.pkginfo
index 6a4ca4591..cef007fa6 100644
--- a/packages/solaris-sparc/fltk.pkginfo
+++ b/packages/solaris-sparc/fltk.pkginfo
@@ -1,11 +1,11 @@
PKG=fltk
-NAME=Fast Light Tool Kit, 1.0.4
+NAME=Fast Light Tool Kit, 1.0.5
ARCH=sun4m
-VERSION=1.0.4
+VERSION=1.0.5
CATEGORY=development
DESC=C++ GUI Toolkit for UNIX and Windows.
VENDOR=GNU
HOTLINE=http://www.fltk.org
EMAIL=fltk-bugs@fltk.org
CLASSES=dev doc dso
-PSTAMP=fltk19990612000
+PSTAMP=fltk19990915000
diff --git a/packages/solaris-sparc/makedist.sh b/packages/solaris-sparc/makedist.sh
index f358a5660..c3141f389 100755
--- a/packages/solaris-sparc/makedist.sh
+++ b/packages/solaris-sparc/makedist.sh
@@ -22,10 +22,10 @@ cd packages/solaris-sparc
echo "Packing distribution..."
-pkgtrans -s . fltk-1.0.4-solaris-sparc.pkg fltk
+pkgtrans -s . fltk-1.0.5-solaris-sparc.pkg fltk
rm -rf fltk
echo "Compressing distribution..."
-rm -f fltk-1.0.4-solaris-sparc.pkg.gz
-gzip -9 fltk-1.0.4-solaris-sparc.pkg
+rm -f fltk-1.0.5-solaris-sparc.pkg.gz
+gzip -9 fltk-1.0.5-solaris-sparc.pkg