emove myself as maintainer

- Remove USE_GROFF
 - Remove gettext MODULE
 - Remove LIB_DEPENDS line (included with qt4 MODULE)
 - Fix WANTLIB
 - SUBST_CMD
 - Major lib bump (removed some functions)
 - New pkg/README

help from and ok steven@
This commit is contained in:
merdely 2010-11-07 00:26:13 +00:00
parent a4f88880eb
commit 2e4a08ed9c
10 changed files with 180 additions and 364 deletions

View File

@ -1,19 +1,16 @@
# $OpenBSD: Makefile,v 1.7 2010/10/19 08:13:59 espie Exp $
# $OpenBSD: Makefile,v 1.8 2010/11/07 00:26:13 merdely Exp $
SHARED_ONLY= Yes
COMMENT= Qt Widgets for Technical Applications
DISTNAME= qwt-5.0.2
REVISION= 2
SHARED_LIBS= qwt 5.0
DISTNAME= qwt-5.2.1
SHARED_LIBS= qwt 6.0
CATEGORIES= x11
EXTRACT_SUFX= .tar.bz2
HOMEPAGE= http://qwt.sourceforge.net/
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qwt/}
MAINTAINER= Michael Erdely <merdely@openbsd.org>
# Qwt License, Version 1.0
# http://qwt.sourceforge.net/qwtlicense.html
PERMIT_PACKAGE_CDROM= Yes
@ -21,47 +18,34 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= devel/gettext \
x11/qt4
MODULES = x11/qt4
NO_REGRESS= Yes
USE_GMAKE= Yes
USE_GROFF = Yes
MAKE_FLAGS= LIBqwt_VERSION=${LIBqwt_VERSION}
WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender fontconfig
WANTLIB += freetype glib-2.0 gthread-2.0 m png z expat gobject-2.0
WANTLIB += QtDesigner QtGui QtScript QtXml
LIB_DEPENDS= ::x11/qt4
WANTLIB += m stdc++ QtDesigner QtGui QtScript QtXml
# svgmap example not included to prevent the need of svg dependencies
EXAMPLES= bode realtime_plot cpuplot dials radio event_filter \
data_plot sliders histogram spectrogram sysinfo \
curvdemo1 curvdemo2 simple_plot
SUBST_VARS= WRKINST EXAMPLES
pre-configure:
@perl -pi -e 's,!!PREFIX!!,${WRKINST}${PREFIX},' \
${WRKSRC}/qwtconfig.pri
@perl -pi -e 's,!!QTDIR!!,${WRKINST}${PREFIX}/lib/qt4,' \
${WRKSRC}/designer/designer.pro
@perl -pi -e 's,!!PREFIX!!,${PREFIX},' \
@${SUBST_CMD} ${WRKSRC}/qwtconfig.pri ${WRKSRC}/designer/designer.pro \
${WRKSRC}/examples/examples.pri
do-configure:
cd ${WRKSRC} && qmake4
@cd ${WRKSRC} && qmake4
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/man/man3/* ${PREFIX}/man/man3/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qwt
@sed -e 's,!!PREFIX!!,${TRUEPREFIX},' ${FILESDIR}/README.OpenBSD > \
${WRKBUILD}/README.OpenBSD
${INSTALL_DATA} ${WRKBUILD}/README.OpenBSD \
${PREFIX}/share/examples/qwt/
@sed -e 's,!!EXAMPLES!!,${EXAMPLES},' ${FILESDIR}/Makefile.examples > \
${WRKSRC}/examples/Makefile
${INSTALL_DATA} ${WRKSRC}/examples/Makefile \
${PREFIX}/share/examples/qwt/
${SUBST_CMD} -c -o ${SHAREOWN} -g ${SHAREGRP} \
${FILESDIR}/Makefile.examples \
${PREFIX}/share/examples/qwt/Makefile
${INSTALL_DATA} ${WRKSRC}/examples/examples.pri \
${PREFIX}/share/examples/qwt/

View File

@ -1,5 +1,5 @@
MD5 (qwt-5.0.2.tar.bz2) = U627MTxHjdSq5PHIZKIDfg==
RMD160 (qwt-5.0.2.tar.bz2) = GoC7Meqg0UiFlFB6ywIsomjcws4=
SHA1 (qwt-5.0.2.tar.bz2) = 8aQVhHaR4nHp9rOyQ6sufLJwoDQ=
SHA256 (qwt-5.0.2.tar.bz2) = HgmvdIxC9wdxM023utBMPjnPD4D+TamTNFw2ZXWyQI0=
SIZE (qwt-5.0.2.tar.bz2) = 1666468
MD5 (qwt-5.2.1.tar.bz2) = SllbjbDsOFaxF4NsHWDLJw==
RMD160 (qwt-5.2.1.tar.bz2) = KOB+oSMjpSFxGKOOGn1zCozlD+4=
SHA1 (qwt-5.2.1.tar.bz2) = id56kLft2tKYlHBie6oZ1Z40jfE=
SHA256 (qwt-5.2.1.tar.bz2) = 4ri7dVQEyz3JnmHz4tcmIVIZNIj1++iFJOtpjhGsVp8=
SIZE (qwt-5.2.1.tar.bz2) = 1926453

View File

@ -1,16 +1,16 @@
# $OpenBSD: Makefile.examples,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
# $OpenBSD: Makefile.examples,v 1.2 2010/11/07 00:26:13 merdely Exp $
EXAMPLES= !!EXAMPLES!!
EX_LIST= ${EXAMPLES}
all:
@for I in ${EXAMPLES}; \
@for I in ${EX_LIST}; \
do (cd $$I; echo "==> Building for $$I"; \
qmake4 $$I.pro && gmake; \
qmake4 $$I.pro && env LOCALBASE=${LOCALBASE} gmake; \
echo "";); \
done
clean:
@for I in ${EXAMPLES}; \
@for I in ${EX_LIST}; \
do (cd $$I; echo "==> Cleaning for $$I"; \
gmake distclean; \
rm -Rf obj; \

View File

@ -1,9 +0,0 @@
Building QWT Examples on OpenBSD
To build the qwt examples:
cd !!PREFIX!!/share/examples/qwt
make
A qwt example binary will be built in each subdirectory of
!!PREFIX!!/share/examples/qwt.

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-designer_designer_pro,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
--- designer/designer.pro.orig Wed Sep 5 00:44:17 2007
+++ designer/designer.pro Wed Sep 5 00:44:32 2007
@@ -92,7 +92,7 @@ contains(CONFIG, QwtDesigner) {
$OpenBSD: patch-designer_designer_pro,v 1.2 2010/11/07 00:26:13 merdely Exp $
--- designer/designer.pro.orig Sun Apr 11 05:55:06 2010
+++ designer/designer.pro Tue Oct 26 04:56:10 2010
@@ -126,7 +126,7 @@ contains(CONFIG, QwtDesigner) {
RESOURCES += \
qwt_designer_plugin.qrc
- target.path = $$[QT_INSTALL_PLUGINS]/designer
+ target.path = !!QTDIR!!/plugins/designer
+ target.path = ${WRKINST}${PREFIX}/lib/qt4/plugins/designer
INSTALLS += target
}
}

View File

@ -1,20 +1,23 @@
$OpenBSD: patch-examples_examples_pri,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
--- examples/examples.pri.orig Tue Sep 11 21:11:54 2007
+++ examples/examples.pri Tue Sep 11 21:13:42 2007
@@ -7,14 +7,12 @@
# modify it under the terms of the Qwt License, Version 1.0
###################################################################
$OpenBSD: patch-examples_examples_pri,v 1.2 2010/11/07 00:26:14 merdely Exp $
--- examples/examples.pri.orig Sun Apr 11 05:55:06 2010
+++ examples/examples.pri Tue Oct 26 03:03:10 2010
@@ -9,8 +9,6 @@
-include( ../../qwtconfig.pri )
QWT_ROOT = ../..
-include( $${QWT_ROOT}/qwtconfig.pri )
-
SUFFIX_STR =
VVERSION = $$[QT_VERSION]
isEmpty(VVERSION) {
@@ -35,8 +33,8 @@ else {
TEMPLATE = app
MOC_DIR = moc
OBJECTS_DIR = obj
-INCLUDEPATH += ../../src
-DEPENDPATH += ../../src
+INCLUDEPATH += !!PREFIX!!/include
+DEPENDPATH += !!PREFIX!!/lib
unix:LIBS += -L../../lib -lqwt
-INCLUDEPATH += $${QWT_ROOT}/src
-DEPENDPATH += $${QWT_ROOT}/src
+INCLUDEPATH += ${PREFIX}/include
+DEPENDPATH += ${PREFIX}/lib
OBJECTS_DIR = obj$${SUFFIX_STR}
DESTDIR = $${QWT_ROOT}/examples/bin$${SUFFIX_STR}

View File

@ -1,16 +1,16 @@
$OpenBSD: patch-qwtconfig_pri,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
--- qwtconfig.pri.orig Mon Jun 11 01:41:29 2007
+++ qwtconfig.pri Tue Sep 11 10:59:39 2007
@@ -3,7 +3,7 @@
######################################################################
$OpenBSD: patch-qwtconfig_pri,v 1.2 2010/11/07 00:26:14 merdely Exp $
--- qwtconfig.pri.orig Sun Apr 11 05:55:06 2010
+++ qwtconfig.pri Tue Oct 26 04:57:31 2010
@@ -8,7 +8,7 @@ VER_PAT = 1
VERSION = $${VER_MAJ}.$${VER_MIN}.$${VER_PAT}
unix {
- INSTALLBASE = /usr/local/qwt-5.0.2
+ INSTALLBASE = !!PREFIX!!
- INSTALLBASE = /usr/local/qwt-5.2.1
+ INSTALLBASE = ${WRKINST}${PREFIX}
}
win32 {
@@ -12,7 +12,7 @@ win32 {
@@ -17,7 +17,7 @@ win32 {
target.path = $$INSTALLBASE/lib
headers.path = $$INSTALLBASE/include

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-src_src_pro,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
--- src/src.pro.orig Wed Sep 5 02:00:12 2007
+++ src/src.pro Wed Sep 5 02:00:17 2007
@@ -190,7 +190,7 @@ contains(CONFIG, QwtWidgets) {
$OpenBSD: patch-src_src_pro,v 1.2 2010/11/07 00:26:14 merdely Exp $
--- src/src.pro.orig Sun Apr 11 05:55:06 2010
+++ src/src.pro Tue Oct 26 02:59:04 2010
@@ -222,7 +222,7 @@ contains(CONFIG, QwtWidgets) {
headers.files = $$HEADERS
doc.files = ../doc/html
doc.files = $${QWT_ROOT}/doc/html $${QWT_ROOT}/doc/qwt-5.2.0.qch
unix {
- doc.files += ../doc/man
+# doc.files += ../doc/man
- doc.files += $${QWT_ROOT}/doc/man
+ # doc.files += $${QWT_ROOT}/doc/man
}
INSTALLS = target headers doc

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
@comment $OpenBSD: PLIST,v 1.2 2010/11/07 00:26:14 merdely Exp $
include/qwt.h
include/qwt_abstract_scale.h
include/qwt_abstract_scale_draw.h
@ -6,6 +6,7 @@ include/qwt_abstract_slider.h
include/qwt_analog_clock.h
include/qwt_array.h
include/qwt_arrow_button.h
include/qwt_clipper.h
include/qwt_color_map.h
include/qwt_compass.h
include/qwt_compass_rose.h
@ -25,6 +26,8 @@ include/qwt_knob.h
include/qwt_layout_metrics.h
include/qwt_legend.h
include/qwt_legend_item.h
include/qwt_legend_itemmanager.h
include/qwt_magnifier.h
include/qwt_math.h
include/qwt_paint_buffer.h
include/qwt_painter.h
@ -44,11 +47,12 @@ include/qwt_plot_panner.h
include/qwt_plot_picker.h
include/qwt_plot_printfilter.h
include/qwt_plot_rasteritem.h
include/qwt_plot_rescaler.h
include/qwt_plot_scaleitem.h
include/qwt_plot_spectrogram.h
include/qwt_plot_zoomer.h
include/qwt_polygon.h
include/qwt_raster_data.h
include/qwt_rect.h
include/qwt_round_scale_draw.h
include/qwt_scale_div.h
include/qwt_scale_draw.h
@ -74,6 +78,7 @@ lib/qt4/plugins/designer/libqwt_designer_plugin.so
@man man/man3/QwtArrayData.3
@man man/man3/QwtArrowButton.3
@man man/man3/QwtCPointerData.3
@man man/man3/QwtClipper.3
@man man/man3/QwtColorMap.3
@man man/man3/QwtCompass.3
@man man/man3/QwtCompassMagnetNeedle.3
@ -96,9 +101,11 @@ lib/qt4/plugins/designer/libqwt_designer_plugin.so
@man man/man3/QwtKnob.3
@man man/man3/QwtLegend.3
@man man/man3/QwtLegendItem.3
@man man/man3/QwtLegendItemManager.3
@man man/man3/QwtLinearColorMap.3
@man man/man3/QwtLinearScaleEngine.3
@man man/man3/QwtLog10ScaleEngine.3
@man man/man3/QwtMagnifier.3
@man man/man3/QwtMathMLTextEngine.3
@man man/man3/QwtMetricsMap.3
@man man/man3/QwtPainter.3
@ -124,12 +131,13 @@ lib/qt4/plugins/designer/libqwt_designer_plugin.so
@man man/man3/QwtPlotPicker.3
@man man/man3/QwtPlotPrintFilter.3
@man man/man3/QwtPlotRasterItem.3
@man man/man3/QwtPlotRescaler.3
@man man/man3/QwtPlotScaleItem.3
@man man/man3/QwtPlotSpectrogram.3
@man man/man3/QwtPlotSvgItem.3
@man man/man3/QwtPlotZoomer.3
@man man/man3/QwtPolygonFData.3
@man man/man3/QwtRasterData.3
@man man/man3/QwtRect.3
@man man/man3/QwtRichTextEngine.3
@man man/man3/QwtRoundScaleDraw.3
@man man/man3/QwtScaleArithmetic.3
@ -157,7 +165,7 @@ lib/qt4/plugins/designer/libqwt_designer_plugin.so
@man man/man3/qwtlicense.3
@man man/man3/scatterscreenshots.3
@man man/man3/spectrogramscreenshots.3
@man man/man3/todo.3
share/doc/pkg-readmes/${FULLPKGNAME}
share/doc/qwt/
share/doc/qwt/html/
share/doc/qwt/html/analogclock.png
@ -174,33 +182,21 @@ share/doc/qwt/html/class_qwt_abstract_scale_draw__inherit__graph.md5
share/doc/qwt/html/class_qwt_abstract_scale_draw__inherit__graph.png
share/doc/qwt/html/class_qwt_abstract_slider-members.html
share/doc/qwt/html/class_qwt_abstract_slider.html
share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.map
share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.md5
share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.png
share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.map
share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.md5
share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.png
share/doc/qwt/html/class_qwt_alpha_color_map-members.html
share/doc/qwt/html/class_qwt_alpha_color_map.html
share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.map
share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.md5
share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.png
share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.map
share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.md5
share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.png
share/doc/qwt/html/class_qwt_analog_clock-members.html
share/doc/qwt/html/class_qwt_analog_clock.html
share/doc/qwt/html/class_qwt_analog_clock__coll__graph.map
share/doc/qwt/html/class_qwt_analog_clock__coll__graph.md5
share/doc/qwt/html/class_qwt_analog_clock__coll__graph.png
share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.map
share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.md5
share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.png
share/doc/qwt/html/class_qwt_array_data-members.html
share/doc/qwt/html/class_qwt_array_data.html
share/doc/qwt/html/class_qwt_array_data__coll__graph.map
share/doc/qwt/html/class_qwt_array_data__coll__graph.md5
share/doc/qwt/html/class_qwt_array_data__coll__graph.png
share/doc/qwt/html/class_qwt_array_data__inherit__graph.map
share/doc/qwt/html/class_qwt_array_data__inherit__graph.md5
share/doc/qwt/html/class_qwt_array_data__inherit__graph.png
@ -208,12 +204,11 @@ share/doc/qwt/html/class_qwt_arrow_button-members.html
share/doc/qwt/html/class_qwt_arrow_button.html
share/doc/qwt/html/class_qwt_c_pointer_data-members.html
share/doc/qwt/html/class_qwt_c_pointer_data.html
share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.map
share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.md5
share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.png
share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.map
share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.md5
share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.png
share/doc/qwt/html/class_qwt_clipper-members.html
share/doc/qwt/html/class_qwt_clipper.html
share/doc/qwt/html/class_qwt_color_map-members.html
share/doc/qwt/html/class_qwt_color_map.html
share/doc/qwt/html/class_qwt_color_map__inherit__graph.map
@ -221,17 +216,11 @@ share/doc/qwt/html/class_qwt_color_map__inherit__graph.md5
share/doc/qwt/html/class_qwt_color_map__inherit__graph.png
share/doc/qwt/html/class_qwt_compass-members.html
share/doc/qwt/html/class_qwt_compass.html
share/doc/qwt/html/class_qwt_compass__coll__graph.map
share/doc/qwt/html/class_qwt_compass__coll__graph.md5
share/doc/qwt/html/class_qwt_compass__coll__graph.png
share/doc/qwt/html/class_qwt_compass__inherit__graph.map
share/doc/qwt/html/class_qwt_compass__inherit__graph.md5
share/doc/qwt/html/class_qwt_compass__inherit__graph.png
share/doc/qwt/html/class_qwt_compass_magnet_needle-members.html
share/doc/qwt/html/class_qwt_compass_magnet_needle.html
share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.map
share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.md5
share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.png
share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.map
share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.md5
share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.png
@ -242,17 +231,11 @@ share/doc/qwt/html/class_qwt_compass_rose__inherit__graph.md5
share/doc/qwt/html/class_qwt_compass_rose__inherit__graph.png
share/doc/qwt/html/class_qwt_compass_wind_arrow-members.html
share/doc/qwt/html/class_qwt_compass_wind_arrow.html
share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.map
share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.md5
share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.png
share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.map
share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.md5
share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.png
share/doc/qwt/html/class_qwt_counter-members.html
share/doc/qwt/html/class_qwt_counter.html
share/doc/qwt/html/class_qwt_counter__coll__graph.map
share/doc/qwt/html/class_qwt_counter__coll__graph.md5
share/doc/qwt/html/class_qwt_counter__coll__graph.png
share/doc/qwt/html/class_qwt_counter__inherit__graph.map
share/doc/qwt/html/class_qwt_counter__inherit__graph.md5
share/doc/qwt/html/class_qwt_counter__inherit__graph.png
@ -268,9 +251,6 @@ share/doc/qwt/html/class_qwt_data__inherit__graph.md5
share/doc/qwt/html/class_qwt_data__inherit__graph.png
share/doc/qwt/html/class_qwt_dial-members.html
share/doc/qwt/html/class_qwt_dial.html
share/doc/qwt/html/class_qwt_dial__coll__graph.map
share/doc/qwt/html/class_qwt_dial__coll__graph.md5
share/doc/qwt/html/class_qwt_dial__coll__graph.png
share/doc/qwt/html/class_qwt_dial__inherit__graph.map
share/doc/qwt/html/class_qwt_dial__inherit__graph.md5
share/doc/qwt/html/class_qwt_dial__inherit__graph.png
@ -281,17 +261,11 @@ share/doc/qwt/html/class_qwt_dial_needle__inherit__graph.md5
share/doc/qwt/html/class_qwt_dial_needle__inherit__graph.png
share/doc/qwt/html/class_qwt_dial_scale_draw-members.html
share/doc/qwt/html/class_qwt_dial_scale_draw.html
share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.map
share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.md5
share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.png
share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.map
share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.md5
share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.png
share/doc/qwt/html/class_qwt_dial_simple_needle-members.html
share/doc/qwt/html/class_qwt_dial_simple_needle.html
share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.map
share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.md5
share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.png
share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.map
share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.md5
share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.png
@ -317,9 +291,6 @@ share/doc/qwt/html/class_qwt_interval_data-members.html
share/doc/qwt/html/class_qwt_interval_data.html
share/doc/qwt/html/class_qwt_knob-members.html
share/doc/qwt/html/class_qwt_knob.html
share/doc/qwt/html/class_qwt_knob__coll__graph.map
share/doc/qwt/html/class_qwt_knob__coll__graph.md5
share/doc/qwt/html/class_qwt_knob__coll__graph.png
share/doc/qwt/html/class_qwt_knob__inherit__graph.map
share/doc/qwt/html/class_qwt_knob__inherit__graph.md5
share/doc/qwt/html/class_qwt_knob__inherit__graph.png
@ -327,41 +298,36 @@ share/doc/qwt/html/class_qwt_legend-members.html
share/doc/qwt/html/class_qwt_legend.html
share/doc/qwt/html/class_qwt_legend_item-members.html
share/doc/qwt/html/class_qwt_legend_item.html
share/doc/qwt/html/class_qwt_legend_item__coll__graph.map
share/doc/qwt/html/class_qwt_legend_item__coll__graph.md5
share/doc/qwt/html/class_qwt_legend_item__coll__graph.png
share/doc/qwt/html/class_qwt_legend_item__inherit__graph.map
share/doc/qwt/html/class_qwt_legend_item__inherit__graph.md5
share/doc/qwt/html/class_qwt_legend_item__inherit__graph.png
share/doc/qwt/html/class_qwt_legend_item_manager-members.html
share/doc/qwt/html/class_qwt_legend_item_manager.html
share/doc/qwt/html/class_qwt_legend_item_manager__inherit__graph.map
share/doc/qwt/html/class_qwt_legend_item_manager__inherit__graph.md5
share/doc/qwt/html/class_qwt_legend_item_manager__inherit__graph.png
share/doc/qwt/html/class_qwt_linear_color_map-members.html
share/doc/qwt/html/class_qwt_linear_color_map.html
share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.map
share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.md5
share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.png
share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.map
share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.md5
share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.png
share/doc/qwt/html/class_qwt_linear_scale_engine-members.html
share/doc/qwt/html/class_qwt_linear_scale_engine.html
share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.map
share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.md5
share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.png
share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.map
share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.png
share/doc/qwt/html/class_qwt_log10_scale_engine-members.html
share/doc/qwt/html/class_qwt_log10_scale_engine.html
share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.map
share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.md5
share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.png
share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.map
share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.png
share/doc/qwt/html/class_qwt_magnifier-members.html
share/doc/qwt/html/class_qwt_magnifier.html
share/doc/qwt/html/class_qwt_magnifier__inherit__graph.map
share/doc/qwt/html/class_qwt_magnifier__inherit__graph.md5
share/doc/qwt/html/class_qwt_magnifier__inherit__graph.png
share/doc/qwt/html/class_qwt_math_m_l_text_engine-members.html
share/doc/qwt/html/class_qwt_math_m_l_text_engine.html
share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.map
share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.md5
share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.png
share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.map
share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.png
@ -369,9 +335,6 @@ share/doc/qwt/html/class_qwt_metrics_map-members.html
share/doc/qwt/html/class_qwt_metrics_map.html
share/doc/qwt/html/class_qwt_painter-members.html
share/doc/qwt/html/class_qwt_painter.html
share/doc/qwt/html/class_qwt_painter__coll__graph.map
share/doc/qwt/html/class_qwt_painter__coll__graph.md5
share/doc/qwt/html/class_qwt_painter__coll__graph.png
share/doc/qwt/html/class_qwt_panner-members.html
share/doc/qwt/html/class_qwt_panner.html
share/doc/qwt/html/class_qwt_panner__inherit__graph.map
@ -379,41 +342,26 @@ share/doc/qwt/html/class_qwt_panner__inherit__graph.md5
share/doc/qwt/html/class_qwt_panner__inherit__graph.png
share/doc/qwt/html/class_qwt_picker-members.html
share/doc/qwt/html/class_qwt_picker.html
share/doc/qwt/html/class_qwt_picker__coll__graph.map
share/doc/qwt/html/class_qwt_picker__coll__graph.md5
share/doc/qwt/html/class_qwt_picker__coll__graph.png
share/doc/qwt/html/class_qwt_picker__inherit__graph.map
share/doc/qwt/html/class_qwt_picker__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker__inherit__graph.png
share/doc/qwt/html/class_qwt_picker_click_point_machine-members.html
share/doc/qwt/html/class_qwt_picker_click_point_machine.html
share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.map
share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.md5
share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.png
share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.map
share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.png
share/doc/qwt/html/class_qwt_picker_click_rect_machine-members.html
share/doc/qwt/html/class_qwt_picker_click_rect_machine.html
share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.map
share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.md5
share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.png
share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.map
share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.png
share/doc/qwt/html/class_qwt_picker_drag_point_machine-members.html
share/doc/qwt/html/class_qwt_picker_drag_point_machine.html
share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.map
share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.md5
share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.png
share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.map
share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.png
share/doc/qwt/html/class_qwt_picker_drag_rect_machine-members.html
share/doc/qwt/html/class_qwt_picker_drag_rect_machine.html
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.map
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.md5
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.png
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.map
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.png
@ -424,25 +372,16 @@ share/doc/qwt/html/class_qwt_picker_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_machine__inherit__graph.png
share/doc/qwt/html/class_qwt_picker_polygon_machine-members.html
share/doc/qwt/html/class_qwt_picker_polygon_machine.html
share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.map
share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.md5
share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.png
share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.map
share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.md5
share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.png
share/doc/qwt/html/class_qwt_plain_text_engine-members.html
share/doc/qwt/html/class_qwt_plain_text_engine.html
share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.map
share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.md5
share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.png
share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.map
share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.png
share/doc/qwt/html/class_qwt_plot-members.html
share/doc/qwt/html/class_qwt_plot.html
share/doc/qwt/html/class_qwt_plot__coll__graph.map
share/doc/qwt/html/class_qwt_plot__coll__graph.md5
share/doc/qwt/html/class_qwt_plot__coll__graph.png
share/doc/qwt/html/class_qwt_plot__inherit__graph.map
share/doc/qwt/html/class_qwt_plot__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot__inherit__graph.png
@ -450,9 +389,6 @@ share/doc/qwt/html/class_qwt_plot_canvas-members.html
share/doc/qwt/html/class_qwt_plot_canvas.html
share/doc/qwt/html/class_qwt_plot_curve-members.html
share/doc/qwt/html/class_qwt_plot_curve.html
share/doc/qwt/html/class_qwt_plot_curve__coll__graph.map
share/doc/qwt/html/class_qwt_plot_curve__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_curve__coll__graph.png
share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.png
@ -463,9 +399,6 @@ share/doc/qwt/html/class_qwt_plot_dict__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_dict__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_grid-members.html
share/doc/qwt/html/class_qwt_plot_grid.html
share/doc/qwt/html/class_qwt_plot_grid__coll__graph.map
share/doc/qwt/html/class_qwt_plot_grid__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_grid__coll__graph.png
share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.png
@ -478,27 +411,21 @@ share/doc/qwt/html/class_qwt_plot_layout-members.html
share/doc/qwt/html/class_qwt_plot_layout.html
share/doc/qwt/html/class_qwt_plot_magnifier-members.html
share/doc/qwt/html/class_qwt_plot_magnifier.html
share/doc/qwt/html/class_qwt_plot_magnifier__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_magnifier__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_magnifier__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_marker-members.html
share/doc/qwt/html/class_qwt_plot_marker.html
share/doc/qwt/html/class_qwt_plot_marker__coll__graph.map
share/doc/qwt/html/class_qwt_plot_marker__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_marker__coll__graph.png
share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_panner-members.html
share/doc/qwt/html/class_qwt_plot_panner.html
share/doc/qwt/html/class_qwt_plot_panner__coll__graph.map
share/doc/qwt/html/class_qwt_plot_panner__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_panner__coll__graph.png
share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_picker-members.html
share/doc/qwt/html/class_qwt_plot_picker.html
share/doc/qwt/html/class_qwt_plot_picker__coll__graph.map
share/doc/qwt/html/class_qwt_plot_picker__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_picker__coll__graph.png
share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.png
@ -506,41 +433,33 @@ share/doc/qwt/html/class_qwt_plot_print_filter-members.html
share/doc/qwt/html/class_qwt_plot_print_filter.html
share/doc/qwt/html/class_qwt_plot_raster_item-members.html
share/doc/qwt/html/class_qwt_plot_raster_item.html
share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.map
share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.png
share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_rescaler-members.html
share/doc/qwt/html/class_qwt_plot_rescaler.html
share/doc/qwt/html/class_qwt_plot_scale_item-members.html
share/doc/qwt/html/class_qwt_plot_scale_item.html
share/doc/qwt/html/class_qwt_plot_scale_item__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_scale_item__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_scale_item__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_spectrogram-members.html
share/doc/qwt/html/class_qwt_plot_spectrogram.html
share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.map
share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.png
share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_svg_item-members.html
share/doc/qwt/html/class_qwt_plot_svg_item.html
share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.map
share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.png
share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.png
share/doc/qwt/html/class_qwt_plot_zoomer-members.html
share/doc/qwt/html/class_qwt_plot_zoomer.html
share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.map
share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.md5
share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.png
share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.map
share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.md5
share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.png
share/doc/qwt/html/class_qwt_polygon_f_data-members.html
share/doc/qwt/html/class_qwt_polygon_f_data.html
share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.map
share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.md5
share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.png
share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.map
share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.md5
share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.png
@ -549,21 +468,13 @@ share/doc/qwt/html/class_qwt_raster_data.html
share/doc/qwt/html/class_qwt_raster_data__inherit__graph.map
share/doc/qwt/html/class_qwt_raster_data__inherit__graph.md5
share/doc/qwt/html/class_qwt_raster_data__inherit__graph.png
share/doc/qwt/html/class_qwt_rect-members.html
share/doc/qwt/html/class_qwt_rect.html
share/doc/qwt/html/class_qwt_rich_text_engine-members.html
share/doc/qwt/html/class_qwt_rich_text_engine.html
share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.map
share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.md5
share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.png
share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.map
share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.png
share/doc/qwt/html/class_qwt_round_scale_draw-members.html
share/doc/qwt/html/class_qwt_round_scale_draw.html
share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.map
share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.md5
share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.png
share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.map
share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.md5
share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.png
@ -573,9 +484,6 @@ share/doc/qwt/html/class_qwt_scale_div-members.html
share/doc/qwt/html/class_qwt_scale_div.html
share/doc/qwt/html/class_qwt_scale_draw-members.html
share/doc/qwt/html/class_qwt_scale_draw.html
share/doc/qwt/html/class_qwt_scale_draw__coll__graph.map
share/doc/qwt/html/class_qwt_scale_draw__coll__graph.md5
share/doc/qwt/html/class_qwt_scale_draw__coll__graph.png
share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.map
share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.md5
share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.png
@ -586,26 +494,17 @@ share/doc/qwt/html/class_qwt_scale_engine__inherit__graph.md5
share/doc/qwt/html/class_qwt_scale_engine__inherit__graph.png
share/doc/qwt/html/class_qwt_scale_map-members.html
share/doc/qwt/html/class_qwt_scale_map.html
share/doc/qwt/html/class_qwt_scale_map__coll__graph.map
share/doc/qwt/html/class_qwt_scale_map__coll__graph.md5
share/doc/qwt/html/class_qwt_scale_map__coll__graph.png
share/doc/qwt/html/class_qwt_scale_transformation-members.html
share/doc/qwt/html/class_qwt_scale_transformation.html
share/doc/qwt/html/class_qwt_scale_widget-members.html
share/doc/qwt/html/class_qwt_scale_widget.html
share/doc/qwt/html/class_qwt_simple_compass_rose-members.html
share/doc/qwt/html/class_qwt_simple_compass_rose.html
share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.map
share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.md5
share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.png
share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.map
share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.md5
share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.png
share/doc/qwt/html/class_qwt_slider-members.html
share/doc/qwt/html/class_qwt_slider.html
share/doc/qwt/html/class_qwt_slider__coll__graph.map
share/doc/qwt/html/class_qwt_slider__coll__graph.md5
share/doc/qwt/html/class_qwt_slider__coll__graph.png
share/doc/qwt/html/class_qwt_slider__inherit__graph.map
share/doc/qwt/html/class_qwt_slider__inherit__graph.md5
share/doc/qwt/html/class_qwt_slider__inherit__graph.png
@ -613,9 +512,6 @@ share/doc/qwt/html/class_qwt_spline-members.html
share/doc/qwt/html/class_qwt_spline.html
share/doc/qwt/html/class_qwt_spline_curve_fitter-members.html
share/doc/qwt/html/class_qwt_spline_curve_fitter.html
share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.map
share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.md5
share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.png
share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.map
share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.md5
share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.png
@ -635,17 +531,11 @@ share/doc/qwt/html/class_qwt_text_label__inherit__graph.md5
share/doc/qwt/html/class_qwt_text_label__inherit__graph.png
share/doc/qwt/html/class_qwt_thermo-members.html
share/doc/qwt/html/class_qwt_thermo.html
share/doc/qwt/html/class_qwt_thermo__coll__graph.map
share/doc/qwt/html/class_qwt_thermo__coll__graph.md5
share/doc/qwt/html/class_qwt_thermo__coll__graph.png
share/doc/qwt/html/class_qwt_thermo__inherit__graph.map
share/doc/qwt/html/class_qwt_thermo__inherit__graph.md5
share/doc/qwt/html/class_qwt_thermo__inherit__graph.png
share/doc/qwt/html/class_qwt_wheel-members.html
share/doc/qwt/html/class_qwt_wheel.html
share/doc/qwt/html/class_qwt_wheel__coll__graph.map
share/doc/qwt/html/class_qwt_wheel__coll__graph.md5
share/doc/qwt/html/class_qwt_wheel__coll__graph.png
share/doc/qwt/html/class_qwt_wheel__inherit__graph.map
share/doc/qwt/html/class_qwt_wheel__inherit__graph.md5
share/doc/qwt/html/class_qwt_wheel__inherit__graph.png
@ -663,6 +553,7 @@ share/doc/qwt/html/files.html
share/doc/qwt/html/form_0.png
share/doc/qwt/html/form_1.png
share/doc/qwt/html/form_2.png
share/doc/qwt/html/form_3.png
share/doc/qwt/html/formula.repository
share/doc/qwt/html/functions.html
share/doc/qwt/html/functions_0x62.html
@ -679,7 +570,6 @@ share/doc/qwt/html/functions_0x6d.html
share/doc/qwt/html/functions_0x6e.html
share/doc/qwt/html/functions_0x6f.html
share/doc/qwt/html/functions_0x70.html
share/doc/qwt/html/functions_0x71.html
share/doc/qwt/html/functions_0x72.html
share/doc/qwt/html/functions_0x73.html
share/doc/qwt/html/functions_0x74.html
@ -706,7 +596,6 @@ share/doc/qwt/html/functions_func_0x6d.html
share/doc/qwt/html/functions_func_0x6e.html
share/doc/qwt/html/functions_func_0x6f.html
share/doc/qwt/html/functions_func_0x70.html
share/doc/qwt/html/functions_func_0x71.html
share/doc/qwt/html/functions_func_0x72.html
share/doc/qwt/html/functions_func_0x73.html
share/doc/qwt/html/functions_func_0x74.html
@ -717,9 +606,6 @@ share/doc/qwt/html/functions_func_0x78.html
share/doc/qwt/html/functions_func_0x79.html
share/doc/qwt/html/functions_func_0x7a.html
share/doc/qwt/html/functions_func_0x7e.html
share/doc/qwt/html/functions_rela.html
share/doc/qwt/html/functions_type.html
share/doc/qwt/html/functions_vars.html
share/doc/qwt/html/graph.png
share/doc/qwt/html/graph_legend.dot
share/doc/qwt/html/graph_legend.html
@ -728,6 +614,7 @@ share/doc/qwt/html/hierarchy.html
share/doc/qwt/html/histogram.png
share/doc/qwt/html/histogramscreenshots.html
share/doc/qwt/html/index.html
share/doc/qwt/html/index.qhp
share/doc/qwt/html/inherit__graph__0.map
share/doc/qwt/html/inherit__graph__0.md5
share/doc/qwt/html/inherit__graph__0.png
@ -824,6 +711,9 @@ share/doc/qwt/html/inherit__graph__36.png
share/doc/qwt/html/inherit__graph__37.map
share/doc/qwt/html/inherit__graph__37.md5
share/doc/qwt/html/inherit__graph__37.png
share/doc/qwt/html/inherit__graph__38.map
share/doc/qwt/html/inherit__graph__38.md5
share/doc/qwt/html/inherit__graph__38.png
share/doc/qwt/html/inherit__graph__4.map
share/doc/qwt/html/inherit__graph__4.md5
share/doc/qwt/html/inherit__graph__4.png
@ -846,137 +736,76 @@ share/doc/qwt/html/inherits.html
share/doc/qwt/html/knob.png
share/doc/qwt/html/pages.html
share/doc/qwt/html/plot.png
share/doc/qwt/html/qwt__abstract__scale_8cpp-source.html
share/doc/qwt/html/qwt__abstract__scale_8h-source.html
share/doc/qwt/html/qwt__abstract__scale__draw_8cpp-source.html
share/doc/qwt/html/qwt__abstract__scale__draw_8h-source.html
share/doc/qwt/html/qwt__abstract__slider_8cpp-source.html
share/doc/qwt/html/qwt__abstract__slider_8h-source.html
share/doc/qwt/html/qwt__analog__clock_8cpp-source.html
share/doc/qwt/html/qwt__analog__clock_8h-source.html
share/doc/qwt/html/qwt__array_8h-source.html
share/doc/qwt/html/qwt__arrow__button_8cpp-source.html
share/doc/qwt/html/qwt__arrow__button_8h-source.html
share/doc/qwt/html/qwt__color__map_8cpp-source.html
share/doc/qwt/html/qwt__color__map_8h-source.html
share/doc/qwt/html/qwt__compass_8cpp-source.html
share/doc/qwt/html/qwt__compass_8h-source.html
share/doc/qwt/html/qwt__compass__rose_8cpp-source.html
share/doc/qwt/html/qwt__compass__rose_8h-source.html
share/doc/qwt/html/qwt__counter_8cpp-source.html
share/doc/qwt/html/qwt__counter_8h-source.html
share/doc/qwt/html/qwt__curve__fitter_8cpp-source.html
share/doc/qwt/html/qwt__curve__fitter_8h-source.html
share/doc/qwt/html/qwt__data_8cpp-source.html
share/doc/qwt/html/qwt__data_8h-source.html
share/doc/qwt/html/qwt__dial_8cpp-source.html
share/doc/qwt/html/qwt__dial_8h-source.html
share/doc/qwt/html/qwt__dial__needle_8cpp-source.html
share/doc/qwt/html/qwt__dial__needle_8h-source.html
share/doc/qwt/html/qwt__double__interval_8cpp-source.html
share/doc/qwt/html/qwt__double__interval_8h-source.html
share/doc/qwt/html/qwt__double__range_8cpp-source.html
share/doc/qwt/html/qwt__double__range_8h-source.html
share/doc/qwt/html/qwt__double__rect_8cpp-source.html
share/doc/qwt/html/qwt__double__rect_8h-source.html
share/doc/qwt/html/qwt__dyngrid__layout_8cpp-source.html
share/doc/qwt/html/qwt__dyngrid__layout_8h-source.html
share/doc/qwt/html/qwt__event__pattern_8cpp-source.html
share/doc/qwt/html/qwt__event__pattern_8h-source.html
share/doc/qwt/html/qwt__global_8h-source.html
share/doc/qwt/html/qwt__interval__data_8cpp-source.html
share/doc/qwt/html/qwt__interval__data_8h-source.html
share/doc/qwt/html/qwt__knob_8cpp-source.html
share/doc/qwt/html/qwt__knob_8h-source.html
share/doc/qwt/html/qwt__layout__metrics_8cpp-source.html
share/doc/qwt/html/qwt__layout__metrics_8h-source.html
share/doc/qwt/html/qwt__legend_8cpp-source.html
share/doc/qwt/html/qwt__legend_8h-source.html
share/doc/qwt/html/qwt__legend__item_8cpp-source.html
share/doc/qwt/html/qwt__legend__item_8h-source.html
share/doc/qwt/html/qwt__math_8cpp-source.html
share/doc/qwt/html/qwt__math_8h-source.html
share/doc/qwt/html/qwt__mathml__text__engine_8cpp-source.html
share/doc/qwt/html/qwt__mathml__text__engine_8h-source.html
share/doc/qwt/html/qwt__paint__buffer_8cpp-source.html
share/doc/qwt/html/qwt__paint__buffer_8h-source.html
share/doc/qwt/html/qwt__painter_8cpp-source.html
share/doc/qwt/html/qwt__painter_8h-source.html
share/doc/qwt/html/qwt__panner_8cpp-source.html
share/doc/qwt/html/qwt__panner_8h-source.html
share/doc/qwt/html/qwt__picker_8cpp-source.html
share/doc/qwt/html/qwt__picker_8h-source.html
share/doc/qwt/html/qwt__picker__machine_8cpp-source.html
share/doc/qwt/html/qwt__picker__machine_8h-source.html
share/doc/qwt/html/qwt__plot_8cpp-source.html
share/doc/qwt/html/qwt__plot_8h-source.html
share/doc/qwt/html/qwt__plot__axis_8cpp-source.html
share/doc/qwt/html/qwt__plot__canvas_8cpp-source.html
share/doc/qwt/html/qwt__plot__canvas_8h-source.html
share/doc/qwt/html/qwt__plot__curve_8cpp-source.html
share/doc/qwt/html/qwt__plot__curve_8h-source.html
share/doc/qwt/html/qwt__plot__dict_8cpp-source.html
share/doc/qwt/html/qwt__plot__dict_8h-source.html
share/doc/qwt/html/qwt__plot__grid_8cpp-source.html
share/doc/qwt/html/qwt__plot__grid_8h-source.html
share/doc/qwt/html/qwt__plot__item_8cpp-source.html
share/doc/qwt/html/qwt__plot__item_8h-source.html
share/doc/qwt/html/qwt__plot__layout_8cpp-source.html
share/doc/qwt/html/qwt__plot__layout_8h-source.html
share/doc/qwt/html/qwt__plot__magnifier_8cpp-source.html
share/doc/qwt/html/qwt__plot__magnifier_8h-source.html
share/doc/qwt/html/qwt__plot__marker_8cpp-source.html
share/doc/qwt/html/qwt__plot__marker_8h-source.html
share/doc/qwt/html/qwt__plot__panner_8cpp-source.html
share/doc/qwt/html/qwt__plot__panner_8h-source.html
share/doc/qwt/html/qwt__plot__picker_8cpp-source.html
share/doc/qwt/html/qwt__plot__picker_8h-source.html
share/doc/qwt/html/qwt__plot__print_8cpp-source.html
share/doc/qwt/html/qwt__plot__printfilter_8cpp-source.html
share/doc/qwt/html/qwt__plot__printfilter_8h-source.html
share/doc/qwt/html/qwt__plot__rasteritem_8cpp-source.html
share/doc/qwt/html/qwt__plot__rasteritem_8h-source.html
share/doc/qwt/html/qwt__plot__spectrogram_8cpp-source.html
share/doc/qwt/html/qwt__plot__spectrogram_8h-source.html
share/doc/qwt/html/qwt__plot__svgitem_8cpp-source.html
share/doc/qwt/html/qwt__plot__svgitem_8h-source.html
share/doc/qwt/html/qwt__plot__xml_8cpp-source.html
share/doc/qwt/html/qwt__plot__zoomer_8cpp-source.html
share/doc/qwt/html/qwt__plot__zoomer_8h-source.html
share/doc/qwt/html/qwt__polygon_8h-source.html
share/doc/qwt/html/qwt__raster__data_8cpp-source.html
share/doc/qwt/html/qwt__raster__data_8h-source.html
share/doc/qwt/html/qwt__rect_8cpp-source.html
share/doc/qwt/html/qwt__rect_8h-source.html
share/doc/qwt/html/qwt__round__scale__draw_8cpp-source.html
share/doc/qwt/html/qwt__round__scale__draw_8h-source.html
share/doc/qwt/html/qwt__scale__div_8cpp-source.html
share/doc/qwt/html/qwt__scale__div_8h-source.html
share/doc/qwt/html/qwt__scale__draw_8cpp-source.html
share/doc/qwt/html/qwt__scale__draw_8h-source.html
share/doc/qwt/html/qwt__scale__engine_8cpp-source.html
share/doc/qwt/html/qwt__scale__engine_8h-source.html
share/doc/qwt/html/qwt__scale__map_8cpp-source.html
share/doc/qwt/html/qwt__scale__map_8h-source.html
share/doc/qwt/html/qwt__scale__widget_8cpp-source.html
share/doc/qwt/html/qwt__scale__widget_8h-source.html
share/doc/qwt/html/qwt__slider_8cpp-source.html
share/doc/qwt/html/qwt__slider_8h-source.html
share/doc/qwt/html/qwt__spline_8cpp-source.html
share/doc/qwt/html/qwt__spline_8h-source.html
share/doc/qwt/html/qwt__symbol_8cpp-source.html
share/doc/qwt/html/qwt__symbol_8h-source.html
share/doc/qwt/html/qwt__text_8cpp-source.html
share/doc/qwt/html/qwt__text_8h-source.html
share/doc/qwt/html/qwt__text__engine_8cpp-source.html
share/doc/qwt/html/qwt__text__engine_8h-source.html
share/doc/qwt/html/qwt__text__label_8cpp-source.html
share/doc/qwt/html/qwt__text__label_8h-source.html
share/doc/qwt/html/qwt__thermo_8cpp-source.html
share/doc/qwt/html/qwt__thermo_8h-source.html
share/doc/qwt/html/qwt__valuelist_8h-source.html
share/doc/qwt/html/qwt__wheel_8cpp-source.html
share/doc/qwt/html/qwt__wheel_8h-source.html
share/doc/qwt/html/qwt__abstract__scale_8h_source.html
share/doc/qwt/html/qwt__abstract__scale__draw_8h_source.html
share/doc/qwt/html/qwt__abstract__slider_8h_source.html
share/doc/qwt/html/qwt__analog__clock_8h_source.html
share/doc/qwt/html/qwt__array_8h_source.html
share/doc/qwt/html/qwt__arrow__button_8h_source.html
share/doc/qwt/html/qwt__clipper_8h_source.html
share/doc/qwt/html/qwt__color__map_8h_source.html
share/doc/qwt/html/qwt__compass_8h_source.html
share/doc/qwt/html/qwt__compass__rose_8h_source.html
share/doc/qwt/html/qwt__counter_8h_source.html
share/doc/qwt/html/qwt__curve__fitter_8h_source.html
share/doc/qwt/html/qwt__data_8h_source.html
share/doc/qwt/html/qwt__dial_8h_source.html
share/doc/qwt/html/qwt__dial__needle_8h_source.html
share/doc/qwt/html/qwt__double__interval_8h_source.html
share/doc/qwt/html/qwt__double__range_8h_source.html
share/doc/qwt/html/qwt__double__rect_8h_source.html
share/doc/qwt/html/qwt__dyngrid__layout_8h_source.html
share/doc/qwt/html/qwt__event__pattern_8h_source.html
share/doc/qwt/html/qwt__global_8h_source.html
share/doc/qwt/html/qwt__interval__data_8h_source.html
share/doc/qwt/html/qwt__knob_8h_source.html
share/doc/qwt/html/qwt__layout__metrics_8h_source.html
share/doc/qwt/html/qwt__legend_8h_source.html
share/doc/qwt/html/qwt__legend__item_8h_source.html
share/doc/qwt/html/qwt__legend__itemmanager_8h_source.html
share/doc/qwt/html/qwt__magnifier_8h_source.html
share/doc/qwt/html/qwt__math_8h_source.html
share/doc/qwt/html/qwt__mathml__text__engine_8h_source.html
share/doc/qwt/html/qwt__paint__buffer_8h_source.html
share/doc/qwt/html/qwt__painter_8h_source.html
share/doc/qwt/html/qwt__panner_8h_source.html
share/doc/qwt/html/qwt__picker_8h_source.html
share/doc/qwt/html/qwt__picker__machine_8h_source.html
share/doc/qwt/html/qwt__plot_8h_source.html
share/doc/qwt/html/qwt__plot__canvas_8h_source.html
share/doc/qwt/html/qwt__plot__curve_8h_source.html
share/doc/qwt/html/qwt__plot__dict_8h_source.html
share/doc/qwt/html/qwt__plot__grid_8h_source.html
share/doc/qwt/html/qwt__plot__item_8h_source.html
share/doc/qwt/html/qwt__plot__layout_8h_source.html
share/doc/qwt/html/qwt__plot__magnifier_8h_source.html
share/doc/qwt/html/qwt__plot__marker_8h_source.html
share/doc/qwt/html/qwt__plot__panner_8h_source.html
share/doc/qwt/html/qwt__plot__picker_8h_source.html
share/doc/qwt/html/qwt__plot__printfilter_8h_source.html
share/doc/qwt/html/qwt__plot__rasteritem_8h_source.html
share/doc/qwt/html/qwt__plot__rescaler_8h_source.html
share/doc/qwt/html/qwt__plot__scaleitem_8h_source.html
share/doc/qwt/html/qwt__plot__spectrogram_8h_source.html
share/doc/qwt/html/qwt__plot__svgitem_8h_source.html
share/doc/qwt/html/qwt__plot__zoomer_8h_source.html
share/doc/qwt/html/qwt__polygon_8h_source.html
share/doc/qwt/html/qwt__raster__data_8h_source.html
share/doc/qwt/html/qwt__round__scale__draw_8h_source.html
share/doc/qwt/html/qwt__scale__div_8h_source.html
share/doc/qwt/html/qwt__scale__draw_8h_source.html
share/doc/qwt/html/qwt__scale__engine_8h_source.html
share/doc/qwt/html/qwt__scale__map_8h_source.html
share/doc/qwt/html/qwt__scale__widget_8h_source.html
share/doc/qwt/html/qwt__slider_8h_source.html
share/doc/qwt/html/qwt__spline_8h_source.html
share/doc/qwt/html/qwt__symbol_8h_source.html
share/doc/qwt/html/qwt__text_8h_source.html
share/doc/qwt/html/qwt__text__engine_8h_source.html
share/doc/qwt/html/qwt__text__label_8h_source.html
share/doc/qwt/html/qwt__thermo_8h_source.html
share/doc/qwt/html/qwt__valuelist_8h_source.html
share/doc/qwt/html/qwt__wheel_8h_source.html
share/doc/qwt/html/qwtinstall.html
share/doc/qwt/html/qwtlicense.html
share/doc/qwt/html/radio.png
@ -993,12 +822,10 @@ share/doc/qwt/html/tab_b.gif
share/doc/qwt/html/tab_l.gif
share/doc/qwt/html/tab_r.gif
share/doc/qwt/html/tabs.css
share/doc/qwt/html/todo.html
@mode ug+w
@group wsrc
share/examples/qwt/
share/examples/qwt/Makefile
share/examples/qwt/README.OpenBSD
share/examples/qwt/bode/
share/examples/qwt/bode/bode.cpp
share/examples/qwt/bode/bode.h

11
x11/qwt/pkg/README Normal file
View File

@ -0,0 +1,11 @@
$OpenBSD: README,v 1.1 2010/11/07 00:26:14 merdely Exp $
Building QWT Examples on OpenBSD
To build the qwt examples:
cd ${TRUEPREFIX}/share/examples/qwt
make
A qwt example binary will be built in each subdirectory of
${TRUEPREFIX}/share/examples/qwt.