summaryrefslogtreecommitdiff
path: root/x11/fltk
diff options
context:
space:
mode:
authorsakamoto <sakamoto>1999-05-06 07:23:28 +0000
committersakamoto <sakamoto>1999-05-06 07:23:28 +0000
commit65cea730c754a6b57a919d6a956e4c4327e55726 (patch)
treed5b780be4838486121eb9c22edb17d033ce72489 /x11/fltk
parent6ec5ccfd6d2a76822e1787550dee7773db717aa8 (diff)
downloadpkgsrc-65cea730c754a6b57a919d6a956e4c4327e55726.tar.gz
FLTK, C++ graphical user interface toolkit for X.
Diffstat (limited to 'x11/fltk')
-rw-r--r--x11/fltk/Makefile30
-rw-r--r--x11/fltk/files/md53
-rw-r--r--x11/fltk/patches/patch-aa13
-rw-r--r--x11/fltk/patches/patch-ab93
-rw-r--r--x11/fltk/patches/patch-ac48
-rw-r--r--x11/fltk/patches/patch-ad82
-rw-r--r--x11/fltk/pkg/COMMENT1
-rw-r--r--x11/fltk/pkg/DESCR3
-rw-r--r--x11/fltk/pkg/PLIST328
9 files changed, 601 insertions, 0 deletions
diff --git a/x11/fltk/Makefile b/x11/fltk/Makefile
new file mode 100644
index 00000000000..eb85026c748
--- /dev/null
+++ b/x11/fltk/Makefile
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+#
+
+DISTNAME= fltk-1.0.2-source
+PKGNAME= fltk-1.0.2
+CATEGORIES= x11
+MASTER_SITES= ftp://ftp.fltk.org/pub/fltk/1.0.2/ \
+ ftp://ftp2.easysw.com/pub/fltk/1.0.2/ \
+ ftp://ftp.northamerica.net/pub/ESP/fltk/1.0.2/ \
+ ftp://ftp.funet.fi/mirrors/ftp.easysw.com/pub/fltk/1.0.2/ \
+ ftp://ftp.kddlabs.co.jp/pub/lang/fltk/1.0.2/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://fltk.easysw.com/
+
+DEPENDS+= Mesa-3.0:../../graphics/Mesa
+
+USE_X11BASE= yes
+USE_GMAKE= yes
+USE_LIBTOOL= yes
+GNU_CONFIGURE= yes
+
+WRKSRC= ${WRKDIR}/${PKGNAME}/
+DOCDIR= ${PREFIX}/share/doc/fltk
+
+post-install:
+ @${INSTALL_DATA_DIR} ${DOCDIR}
+ @${INSTALL_DATA} ${WRKSRC}/documentation/* ${DOCDIR}
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/fltk/files/md5 b/x11/fltk/files/md5
new file mode 100644
index 00000000000..0870dd4081c
--- /dev/null
+++ b/x11/fltk/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+
+MD5 (fltk-1.0.2-source.tar.gz) = f75ab4a250b541ad889838f957c04416
diff --git a/x11/fltk/patches/patch-aa b/x11/fltk/patches/patch-aa
new file mode 100644
index 00000000000..dc76ac0fb19
--- /dev/null
+++ b/x11/fltk/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+
+--- makeinclude.in.orig Fri Mar 26 00:26:28 1999
++++ makeinclude.in Mon Apr 26 13:41:23 1999
+@@ -42,7 +42,7 @@
+ CXXFLAGS =@CXXFLAGS@ @X_CFLAGS@
+
+ # program to make the archive:
+-LIBNAME =@LIBNAME@
++LIBNAME =libfltk.la
+ LIBCOMMAND =@LIBCOMMAND@
+ RANLIB =@RANLIB@
+ DSONAME =@DSONAME@
diff --git a/x11/fltk/patches/patch-ab b/x11/fltk/patches/patch-ab
new file mode 100644
index 00000000000..c9d0df64f69
--- /dev/null
+++ b/x11/fltk/patches/patch-ab
@@ -0,0 +1,93 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+
+--- src/Makefile.orig Tue Mar 30 02:39:28 1999
++++ src/Makefile Mon Apr 26 13:49:20 1999
+@@ -146,30 +146,25 @@
+
+ include ../makeinclude
+
+-LIBRARY = ../lib/$(LIBNAME)
++LIBRARY = $(LIBNAME)
+
+-OBJECTS = $(CPPFILES:.cxx=.o) $(CFILES:.c=.o)
++OBJECTS = $(CPPFILES:.cxx=.lo) $(CFILES:.c=.lo)
+
+-all: $(LIBRARY) $(DSONAME)
++all: $(LIBRARY)
+
+ $(LIBRARY): $(OBJECTS)
+- @echo $(LIBCOMMAND) $@ ...
+- @$(LIBCOMMAND) $@ $(OBJECTS)
+- @$(RANLIB) $@
+-
+-$(DSONAME): $(OBJECTS)
+- @echo $(DSOCOMMAND) $@ ...
+- @$(DSOCOMMAND) $@ $(OBJECTS)
+-
+-.SUFFIXES: .cxx .h .o
+-
+-.cxx.o :
+- $(CXX) -I.. $(CXXFLAGS) -c $<
+-.c.o :
+- $(CC) -I.. $(CFLAGS) -c -o $@ $<
++ $(LIBTOOL) --mode=link $(CXX) -o $@ $(OBJECTS) \
++ -rpath $(PREFIX)/lib -version-info 1:0
++
++.SUFFIXES: .cxx .h .lo
++
++.cxx.lo :
++ $(LIBTOOL) --mode=compile $(CXX) -I.. $(CXXFLAGS) -c $<
++.c.lo :
++ $(LIBTOOL) --mode=compile $(CC) -I.. $(CFLAGS) -c $<
+
+ clean :
+- -@ rm -f *.o *.do $(DSONAME) $(LIBRARY) $(CLEAN) core *~ ../include/*~ makedepend cmap
++ -@ rm -f *.o *.do $(LIBRARY) $(CLEAN) core *~ ../include/*~ makedepend cmap
+ @touch makedepend
+
+ depend:
+@@ -178,36 +173,19 @@
+
+ ################################################################
+
+-install: $(LIBRARY) $(DSONAME)
++install: all
+ @echo "Installing libraries..."
+- @-mkdir -p $(libdir)
+- @rm -f $(libdir)/$(LIBNAME)
+- @-cp $(LIBRARY) $(libdir)
+- @-chmod 644 $(libdir)/$(LIBNAME)
+- @if test "$(DSONAME)" = libfltk.so.1; then\
+- rm -f $(libdir)/libfltk.so*;\
+- cp libfltk.so.1 $(libdir); \
+- chmod 755 $(libdir)/libfltk.so.1; \
+- ln -s $(libdir)/libfltk.so.1 $(libdir)/libfltk.so;\
+- fi
+- @if test "$(DSONAME)" = libfltk.sl.1; then\
+- rm -f $(libdir)/libfltk.sl*;\
+- cp libfltk.sl.1 $(libdir); \
+- chmod 755 $(libdir)/libfltk.sl.1; \
+- ln -s $(libdir)/libfltk.sl.1 $(libdir)/libfltk.sl;\
+- fi
++ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) $(LIBNAME) $(libdir)
+ @echo "Installing include files..."
+- @-mkdir -p $(includedir)
+- @rm -rf $(includedir)/FL $(includedir)/Fl
+- @-cp -r ../FL $(includedir)
+- @-chmod 755 $(includedir)/FL
+- @-chmod 644 $(includedir)/FL/*
+- @for file in $(includedir)/FL/*.H; do\
++ $(BSD_INSTALL_DATA_DIR) $(includedir)/FL
++ $(BSD_INSTALL_DATA) ../FL/* $(includedir)/FL
++ @(cd $(includedir)/FL; \
++ for file in *.H; do\
+ newfile="`basename $$file H`h";\
+- ln -s $$file $(includedir)/FL/$$newfile;\
+- done
++ ln -s $$file $$newfile;\
++ done)
+ @-ln -s FL $(includedir)/Fl
+
+ #
+ # End of "$Id: patch-ab,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $".
+ #
diff --git a/x11/fltk/patches/patch-ac b/x11/fltk/patches/patch-ac
new file mode 100644
index 00000000000..9e614bebb8d
--- /dev/null
+++ b/x11/fltk/patches/patch-ac
@@ -0,0 +1,48 @@
+$NetBSD: patch-ac,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+
+--- fluid/Makefile.orig Mon Apr 19 23:01:23 1999
++++ fluid/Makefile Mon Apr 26 13:52:02 1999
+@@ -45,21 +45,20 @@
+
+ ################################################################
+
+-OBJECTS = $(CPPFILES:.cxx=.o)
++OBJECTS = $(CPPFILES:.cxx=.lo)
+
+ include ../makeinclude
+
+-.SUFFIXES : .cxx .c .o
++.SUFFIXES : .cxx .c .lo
+
+-.cxx.o :
+- $(CXX) -I.. $(CXXFLAGS) -c $<
+-.c.o :
+- $(CC) -I.. $(CFLAGS) -c $<
+-.cxx :
+- $(CXX) -I.. $(CXXFLAGS) -o $@ $< -L../lib -lfltk $(LDLIBS)
+-
+-$(PROGRAM) : $(OBJECTS) ../lib/$(LIBNAME)
+- $(CXX) $(CXXFLAGS) -o $(PROGRAM) $(OBJECTS) -L../lib -lfltk $(LDLIBS)
++.cxx.lo :
++ $(LIBTOOL) --mode=compile $(CXX) -I.. $(CXXFLAGS) -c $<
++.c.lo :
++ $(LIBTOOL) --mode=compile $(CC) -I.. $(CFLAGS) -c $<
++
++$(PROGRAM) : $(OBJECTS) ../src/$(LIBNAME)
++ $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -o $(PROGRAM) $(OBJECTS) \
++ ../src/$(LIBNAME) $(LDLIBS)
+
+ clean :
+ -@ rm -f *.o $(PROGRAM) $(CLEAN) core *~ makedepend
+@@ -71,10 +70,7 @@
+
+ install: $(PROGRAM)
+ @echo "Installing FLUID..."
+- @strip $(PROGRAM)
+- @-mkdir -p $(bindir)
+- @cp $(PROGRAM) $(bindir)/$(PROGRAM)
+- @chmod 755 $(bindir)/$(PROGRAM)
++ $(LIBTOOL) --mode=install $(BSD_INSTALL_PROGRAM) $(PROGRAM) $(bindir)
+
+ uninstall:
+ -@ rm -f $(bindir)/$(PROGRAM)
diff --git a/x11/fltk/patches/patch-ad b/x11/fltk/patches/patch-ad
new file mode 100644
index 00000000000..ec56d4b2f73
--- /dev/null
+++ b/x11/fltk/patches/patch-ad
@@ -0,0 +1,82 @@
+$NetBSD: patch-ad,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+
+--- test/Makefile.orig Fri Mar 26 00:26:43 1999
++++ test/Makefile Mon Apr 26 13:52:17 1999
+@@ -48,53 +48,55 @@
+
+ include ../makeinclude
+
+-$(ALL): ../lib/$(LIBNAME)
++CXX_:= $(LIBTOOL) --mode=link $(CXX)
++LDLIBS:= ../src/$(LIBNAME) $(LDLIBS)
++GLDLIBS:= ../src/$(LIBNAME) $(GLDLIBS)
+
+-.SUFFIXES: .cxx .c .o .fl .h
++$(ALL): ../src/$(LIBNAME)
+
+-.cxx:
+- $(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk $(LDLIBS) -o $@
++.SUFFIXES: .cxx .c .lo .fl .h
+
+-.cxx.o:
+- $(CXX) -I.. $(CXXFLAGS) $< -c
++.cxx.lo:
++ $(LIBTOOL) --mode=compile $(CXX) -I.. $(CXXFLAGS) -c $<
+
+ .fl.cxx .fl.h:
+ ../fluid/fluid -c $<
+
+ .fl:
+ ../fluid/fluid -c $<
+- $(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@
++ $(LIBTOOL) --mode=link $(CXX) -I.. $(CXXFLAGS) $@.cxx \
++ $(LIB_) $(LDLIBS) -o $@
+
+ # Other programs needing special "help"...
+-CubeView: CubeMain.o CubeView.o CubeViewUI.o
+- $(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
+- -L../lib -lfltk $(GLDLIBS) -o $@
+-CubeMain.o: CubeViewUI.h CubeView.h
+-CubeView.o: CubeView.h
++CubeView: CubeMain.lo CubeView.lo CubeViewUI.lo
++ $(CXX_) -I.. $(CXXFLAGS) CubeMain.lo CubeView.lo CubeViewUI.lo \
++ $(GLDLIBS) -o $@
++CubeMain.lo: CubeViewUI.h CubeView.h
++CubeView.lo: CubeView.h
+
+ cube: cube.cxx
+- $(CXX) -I.. $(CXXFLAGS) cube.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) cube.cxx $(GLDLIBS) -o $@
+ fractals: fractals.cxx
+- $(CXX) -I.. $(CXXFLAGS) fractals.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) fractals.cxx $(GLDLIBS) -o $@
+ fullscreen: fullscreen.cxx
+- $(CXX) -I.. $(CXXFLAGS) fullscreen.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) fullscreen.cxx $(GLDLIBS) -o $@
+ glpuzzle: glpuzzle.cxx
+- $(CXX) -I.. $(CXXFLAGS) glpuzzle.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) glpuzzle.cxx $(GLDLIBS) -o $@
+ gl_overlay: gl_overlay.cxx
+- $(CXX) -I.. $(CXXFLAGS) gl_overlay.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) gl_overlay.cxx $(GLDLIBS) -o $@
+ shiny: shiny.cxx shiny_panel.cxx
+- $(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) shiny.cxx $(GLDLIBS) -o $@
+ keyboard: keyboard.cxx keyboard_ui.cxx
+- $(CXX) -I.. $(CXXFLAGS) keyboard.cxx -L../lib -lfltk $(LDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) keyboard.cxx $(LDLIBS) -o $@
+ mandelbrot: mandelbrot.cxx mandelbrot_ui.cxx
+- $(CXX) -I.. $(CXXFLAGS) mandelbrot.cxx -L../lib -lfltk $(LDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) mandelbrot.cxx $(LDLIBS) -o $@
+ shape: shape.cxx
+- $(CXX) -I.. $(CXXFLAGS) shape.cxx -L../lib -lfltk $(GLDLIBS) -o $@
++ $(CXX_) -I.. $(CXXFLAGS) shape.cxx $(GLDLIBS) -o $@
+
+ # If you have libjpeg installed, you might want to try this test program:
+
+ jpeg_image: jpeg_image.cxx
+- $(CXX) -I.. $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx -L../lib -lfltk $(LDLIBS) -ljpeg -lXext -o $@
++ $(CXX_) -I.. $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx $(LDLIBS) -ljpeg -lXext -o $@
+
+ depend:
+ $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) > makedepend
diff --git a/x11/fltk/pkg/COMMENT b/x11/fltk/pkg/COMMENT
new file mode 100644
index 00000000000..23102b3bbc4
--- /dev/null
+++ b/x11/fltk/pkg/COMMENT
@@ -0,0 +1 @@
+C++ graphical user interface toolkit for X.
diff --git a/x11/fltk/pkg/DESCR b/x11/fltk/pkg/DESCR
new file mode 100644
index 00000000000..1d567378348
--- /dev/null
+++ b/x11/fltk/pkg/DESCR
@@ -0,0 +1,3 @@
+The Fast Light ToolKit.
+FLTK (pronounced "fulltick") is a LGPL'd C++ graphical user interface
+toolkit for X (UNIX, OpenGL, and WIN32).
diff --git a/x11/fltk/pkg/PLIST b/x11/fltk/pkg/PLIST
new file mode 100644
index 00000000000..01c37ec2316
--- /dev/null
+++ b/x11/fltk/pkg/PLIST
@@ -0,0 +1,328 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/05/06 07:23:28 sakamoto Exp $
+bin/fluid
+include/FL/Enumerations.H
+include/FL/Enumerations.h
+include/FL/Fl.H
+include/FL/Fl.h
+include/FL/Fl_Adjuster.H
+include/FL/Fl_Adjuster.h
+include/FL/Fl_Bitmap.H
+include/FL/Fl_Bitmap.h
+include/FL/Fl_Box.H
+include/FL/Fl_Box.h
+include/FL/Fl_Browser.H
+include/FL/Fl_Browser.h
+include/FL/Fl_Browser_.H
+include/FL/Fl_Browser_.h
+include/FL/Fl_Button.H
+include/FL/Fl_Button.h
+include/FL/Fl_Chart.H
+include/FL/Fl_Chart.h
+include/FL/Fl_Check_Button.H
+include/FL/Fl_Check_Button.h
+include/FL/Fl_Choice.H
+include/FL/Fl_Choice.h
+include/FL/Fl_Clock.H
+include/FL/Fl_Clock.h
+include/FL/Fl_Color_Chooser.H
+include/FL/Fl_Color_Chooser.h
+include/FL/Fl_Counter.H
+include/FL/Fl_Counter.h
+include/FL/Fl_Dial.H
+include/FL/Fl_Dial.h
+include/FL/Fl_Double_Window.H
+include/FL/Fl_Double_Window.h
+include/FL/Fl_Fill_Dial.H
+include/FL/Fl_Fill_Dial.h
+include/FL/Fl_Fill_Slider.H
+include/FL/Fl_Fill_Slider.h
+include/FL/Fl_Float_Input.H
+include/FL/Fl_Float_Input.h
+include/FL/Fl_FormsBitmap.H
+include/FL/Fl_FormsBitmap.h
+include/FL/Fl_FormsPixmap.H
+include/FL/Fl_FormsPixmap.h
+include/FL/Fl_Free.H
+include/FL/Fl_Free.h
+include/FL/Fl_Gl_Window.H
+include/FL/Fl_Gl_Window.h
+include/FL/Fl_Group.H
+include/FL/Fl_Group.h
+include/FL/Fl_Hold_Browser.H
+include/FL/Fl_Hold_Browser.h
+include/FL/Fl_Hor_Fill_Slider.H
+include/FL/Fl_Hor_Fill_Slider.h
+include/FL/Fl_Hor_Nice_Slider.H
+include/FL/Fl_Hor_Nice_Slider.h
+include/FL/Fl_Hor_Slider.H
+include/FL/Fl_Hor_Slider.h
+include/FL/Fl_Hor_Value_Slider.H
+include/FL/Fl_Hor_Value_Slider.h
+include/FL/Fl_Image.H
+include/FL/Fl_Image.h
+include/FL/Fl_Input.H
+include/FL/Fl_Input.h
+include/FL/Fl_Input_.H
+include/FL/Fl_Input_.h
+include/FL/Fl_Int_Input.H
+include/FL/Fl_Int_Input.h
+include/FL/Fl_Light_Button.H
+include/FL/Fl_Light_Button.h
+include/FL/Fl_Line_Dial.H
+include/FL/Fl_Line_Dial.h
+include/FL/Fl_Menu.H
+include/FL/Fl_Menu.h
+include/FL/Fl_Menu_.H
+include/FL/Fl_Menu_.h
+include/FL/Fl_Menu_Bar.H
+include/FL/Fl_Menu_Bar.h
+include/FL/Fl_Menu_Button.H
+include/FL/Fl_Menu_Button.h
+include/FL/Fl_Menu_Item.H
+include/FL/Fl_Menu_Item.h
+include/FL/Fl_Menu_Window.H
+include/FL/Fl_Menu_Window.h
+include/FL/Fl_Multi_Browser.H
+include/FL/Fl_Multi_Browser.h
+include/FL/Fl_Multi_Label.H
+include/FL/Fl_Multi_Label.h
+include/FL/Fl_Multiline_Input.H
+include/FL/Fl_Multiline_Input.h
+include/FL/Fl_Multiline_Output.H
+include/FL/Fl_Multiline_Output.h
+include/FL/Fl_Nice_Slider.H
+include/FL/Fl_Nice_Slider.h
+include/FL/Fl_Object.H
+include/FL/Fl_Object.h
+include/FL/Fl_Output.H
+include/FL/Fl_Output.h
+include/FL/Fl_Overlay_Window.H
+include/FL/Fl_Overlay_Window.h
+include/FL/Fl_Pack.H
+include/FL/Fl_Pack.h
+include/FL/Fl_Pixmap.H
+include/FL/Fl_Pixmap.h
+include/FL/Fl_Positioner.H
+include/FL/Fl_Positioner.h
+include/FL/Fl_Radio_Button.H
+include/FL/Fl_Radio_Button.h
+include/FL/Fl_Radio_Light_Button.H
+include/FL/Fl_Radio_Light_Button.h
+include/FL/Fl_Radio_Round_Button.H
+include/FL/Fl_Radio_Round_Button.h
+include/FL/Fl_Repeat_Button.H
+include/FL/Fl_Repeat_Button.h
+include/FL/Fl_Return_Button.H
+include/FL/Fl_Return_Button.h
+include/FL/Fl_Roller.H
+include/FL/Fl_Roller.h
+include/FL/Fl_Round_Button.H
+include/FL/Fl_Round_Button.h
+include/FL/Fl_Round_Clock.H
+include/FL/Fl_Round_Clock.h
+include/FL/Fl_Scroll.H
+include/FL/Fl_Scroll.h
+include/FL/Fl_Scrollbar.H
+include/FL/Fl_Scrollbar.h
+include/FL/Fl_Secret_Input.H
+include/FL/Fl_Secret_Input.h
+include/FL/Fl_Select_Browser.H
+include/FL/Fl_Select_Browser.h
+include/FL/Fl_Simple_Counter.H
+include/FL/Fl_Simple_Counter.h
+include/FL/Fl_Single_Window.H
+include/FL/Fl_Single_Window.h
+include/FL/Fl_Slider.H
+include/FL/Fl_Slider.h
+include/FL/Fl_Tabs.H
+include/FL/Fl_Tabs.h
+include/FL/Fl_Tile.H
+include/FL/Fl_Tile.h
+include/FL/Fl_Timer.H
+include/FL/Fl_Timer.h
+include/FL/Fl_Toggle_Button.H
+include/FL/Fl_Toggle_Button.h
+include/FL/Fl_Toggle_Light_Button.H
+include/FL/Fl_Toggle_Light_Button.h
+include/FL/Fl_Toggle_Round_Button.H
+include/FL/Fl_Toggle_Round_Button.h
+include/FL/Fl_Valuator.H
+include/FL/Fl_Valuator.h
+include/FL/Fl_Value_Input.H
+include/FL/Fl_Value_Input.h
+include/FL/Fl_Value_Output.H
+include/FL/Fl_Value_Output.h
+include/FL/Fl_Value_Slider.H
+include/FL/Fl_Value_Slider.h
+include/FL/Fl_Widget.H
+include/FL/Fl_Widget.h
+include/FL/Fl_Window.H
+include/FL/Fl_Window.h
+include/FL/dirent.h
+include/FL/filename.H
+include/FL/filename.h
+include/FL/fl_ask.H
+include/FL/fl_ask.h
+include/FL/fl_draw.H
+include/FL/fl_draw.h
+include/FL/fl_file_chooser.H
+include/FL/fl_file_chooser.h
+include/FL/fl_message.H
+include/FL/fl_message.h
+include/FL/fl_show_colormap.H
+include/FL/fl_show_colormap.h
+include/FL/fl_show_input.H
+include/FL/fl_show_input.h
+include/FL/forms.H
+include/FL/forms.h
+include/FL/gl.h
+include/FL/gl2opengl.h
+include/FL/gl_draw.H
+include/FL/gl_draw.h
+include/FL/glut.H
+include/FL/glut.h
+include/FL/math.h
+include/FL/menubar.h
+include/FL/win32.H
+include/FL/win32.h
+include/FL/x.H
+include/FL/x.h
+@dirrm include/FL
+include/Fl
+lib/libfltk.a
+lib/libfltk.so.1.0
+share/doc/fltk/FL.gif
+share/doc/fltk/Fl_Adjuster.html
+share/doc/fltk/Fl_Box.html
+share/doc/fltk/Fl_Browser.html
+share/doc/fltk/Fl_Browser_.html
+share/doc/fltk/Fl_Button.html
+share/doc/fltk/Fl_Chart.html
+share/doc/fltk/Fl_Check_Button.gif
+share/doc/fltk/Fl_Check_Button.html
+share/doc/fltk/Fl_Choice.html
+share/doc/fltk/Fl_Clock.html
+share/doc/fltk/Fl_Color_Chooser.html
+share/doc/fltk/Fl_Counter.html
+share/doc/fltk/Fl_Dial.html
+share/doc/fltk/Fl_Double_Window.html
+share/doc/fltk/Fl_End.html
+share/doc/fltk/Fl_Float_Input.html
+share/doc/fltk/Fl_Free.html
+share/doc/fltk/Fl_Gl_Window.html
+share/doc/fltk/Fl_Group.html
+share/doc/fltk/Fl_Hold_Browser.html
+share/doc/fltk/Fl_Input.html
+share/doc/fltk/Fl_Input_.html
+share/doc/fltk/Fl_Int_Input.html
+share/doc/fltk/Fl_Light_Button.gif
+share/doc/fltk/Fl_Light_Button.html
+share/doc/fltk/Fl_Menu_.html
+share/doc/fltk/Fl_Menu_Bar.html
+share/doc/fltk/Fl_Menu_Button.html
+share/doc/fltk/Fl_Menu_Item.html
+share/doc/fltk/Fl_Menu_Window.html
+share/doc/fltk/Fl_Multi_Browser.html
+share/doc/fltk/Fl_Multiline_Input.html
+share/doc/fltk/Fl_Multiline_Output.html
+share/doc/fltk/Fl_Output.html
+share/doc/fltk/Fl_Overlay_Window.html
+share/doc/fltk/Fl_Pack.html
+share/doc/fltk/Fl_Positioner.html
+share/doc/fltk/Fl_Repeat_Button.html
+share/doc/fltk/Fl_Return_Button.gif
+share/doc/fltk/Fl_Return_Button.html
+share/doc/fltk/Fl_Roller.gif
+share/doc/fltk/Fl_Roller.html
+share/doc/fltk/Fl_Round_Button.gif
+share/doc/fltk/Fl_Round_Button.html
+share/doc/fltk/Fl_Scroll.gif
+share/doc/fltk/Fl_Scroll.html
+share/doc/fltk/Fl_Scrollbar.html
+share/doc/fltk/Fl_Secret_Input.html
+share/doc/fltk/Fl_Select_Browser.html
+share/doc/fltk/Fl_Single_Window.html
+share/doc/fltk/Fl_Slider.html
+share/doc/fltk/Fl_Tabs.html
+share/doc/fltk/Fl_Tile.gif
+share/doc/fltk/Fl_Tile.html
+share/doc/fltk/Fl_Timer.html
+share/doc/fltk/Fl_Valuator.html
+share/doc/fltk/Fl_Value_Input.gif
+share/doc/fltk/Fl_Value_Input.html
+share/doc/fltk/Fl_Value_Output.gif
+share/doc/fltk/Fl_Value_Output.html
+share/doc/fltk/Fl_Value_Slider.html
+share/doc/fltk/Fl_Widget.html
+share/doc/fltk/Fl_Window.html
+share/doc/fltk/Makefile
+share/doc/fltk/README
+share/doc/fltk/adjuster1.gif
+share/doc/fltk/ask.C.gif
+share/doc/fltk/basics.html
+share/doc/fltk/bglogo.gif
+share/doc/fltk/boxtypes.gif
+share/doc/fltk/button.C.gif
+share/doc/fltk/buttons.gif
+share/doc/fltk/charts.gif
+share/doc/fltk/choice.gif
+share/doc/fltk/clock.gif
+share/doc/fltk/common.html
+share/doc/fltk/counter.gif
+share/doc/fltk/cubeview.gif
+share/doc/fltk/dial.gif
+share/doc/fltk/drawing.html
+share/doc/fltk/editor-replace.gif
+share/doc/fltk/editor.gif
+share/doc/fltk/editor.html
+share/doc/fltk/enumerations.html
+share/doc/fltk/events.html
+share/doc/fltk/filechooser.gif
+share/doc/fltk/fl_alert.gif
+share/doc/fltk/fl_ask.gif
+share/doc/fltk/fl_choice.gif
+share/doc/fltk/fl_color_chooser.jpg
+share/doc/fltk/fl_input.gif
+share/doc/fltk/fl_message.gif
+share/doc/fltk/fl_password.gif
+share/doc/fltk/fl_show_colormap.gif
+share/doc/fltk/fluid-org.gif
+share/doc/fltk/fluid.1
+share/doc/fltk/fluid.gif
+share/doc/fltk/fluid.html
+share/doc/fltk/fluid.z
+share/doc/fltk/fluid1.gif
+share/doc/fltk/fluid2.gif
+share/doc/fltk/fluid3.gif
+share/doc/fltk/fluid4.gif
+share/doc/fltk/fluid_main.gif
+share/doc/fltk/fluid_prefs.gif
+share/doc/fltk/fluid_widget.gif
+share/doc/fltk/forms.html
+share/doc/fltk/functions.html
+share/doc/fltk/glut.html
+share/doc/fltk/hello.C.gif
+share/doc/fltk/index.html
+share/doc/fltk/intro.html
+share/doc/fltk/license.html
+share/doc/fltk/menu.gif
+share/doc/fltk/menu_button.gif
+share/doc/fltk/menubar.gif
+share/doc/fltk/opengl.html
+share/doc/fltk/osissues.html
+share/doc/fltk/positioner.gif
+share/doc/fltk/preface.html
+share/doc/fltk/resizebox1.gif
+share/doc/fltk/resizebox2.gif
+share/doc/fltk/round_clock.gif
+share/doc/fltk/scrollbar.gif
+share/doc/fltk/shape.C.gif
+share/doc/fltk/slider.gif
+share/doc/fltk/subclassing.html
+share/doc/fltk/symbols.gif
+share/doc/fltk/tabs.gif
+share/doc/fltk/text.gif
+share/doc/fltk/valuators.gif
+share/doc/fltk/value_slider.gif
+share/doc/fltk/widgets.html
+@dirrm share/doc/fltk