Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

4
graphics/extrema/DESCR Normal file
View File

@@ -0,0 +1,4 @@
Extrema is a powerful visualization and data analysis tool that enables
researchers to quickly distill their large, complex data sets into
meaningful information. Its flexibility, sophistication, and power allow
you to easily develop your own commands and create highly customized graphs.

20
graphics/extrema/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# $NetBSD: Makefile,v 1.22 2013/06/06 12:54:29 wiz Exp $
#
DISTNAME= extrema-4.4.4
PKGREVISION= 16
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=extrema/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://exsitewebware.com/extrema/
COMMENT= Visualization and data analysis tool
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
CONFIGURE_ARGS+= --with-wxGTK
.include "../../x11/wxGTK28/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

1054
graphics/extrema/PLIST Normal file

File diff suppressed because it is too large Load Diff

13
graphics/extrema/distinfo Normal file
View File

@@ -0,0 +1,13 @@
$NetBSD: distinfo,v 1.6 2013/05/04 12:46:01 joerg Exp $
SHA1 (extrema-4.4.4.tar.gz) = eff38eb3c36aa9acc3ad471ea57f2037c66e1842
RMD160 (extrema-4.4.4.tar.gz) = 4ce6dcacca51ac18deb770cd9c0f7f77d0458ccd
Size (extrema-4.4.4.tar.gz) = 6404330 bytes
SHA1 (patch-src_Expression_Expression.h) = 7c6101f9eff147cacfca5ba581785b5c72826894
SHA1 (patch-src_Graphics_GRA__thiessenTriangulation_h) = ede808bc2f19f3aafb31310eb04aa5317ad9b471
SHA1 (patch-src_Variables_NVariableTable.h) = b15ef23916559b714b75d3867c39735e70ad6cbc
SHA1 (patch-src_Variables_TVariableTable.h) = 94783b18d48e369a457e65e50d1ff227eb5aa8d8
SHA1 (patch-src_wxForms_AxisPopup.cpp) = 8b96ab1d88f5abfaa6d45562bc02c990b8143a48
SHA1 (patch-src_wxForms_FontChooser.cpp) = bc6a979c8d693347efdf581653008a62abce149a
SHA1 (patch-src_wxForms_LegendPopup.cpp) = 51491d6fe345c380dda6044d4c463d9f8da5fe49
SHA1 (patch-src_wxForms_TextPopup.cpp) = 314885dc14f69b113af801c5d421c16d107c0887

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_Expression_Expression.h,v 1.1 2013/05/04 12:46:01 joerg Exp $
--- src/Expression/Expression.h.orig 2013-05-03 20:24:01.000000000 +0000
+++ src/Expression/Expression.h
@@ -37,7 +37,7 @@ class Workspace;
class Expression
{
private:
- typedef std::multimap< int const, Workspace* > WSLevel;
+ typedef std::multimap< int, Workspace* > WSLevel;
typedef WSLevel::value_type WSEntryType;
typedef std::pair< WSLevel::const_iterator, WSLevel::const_iterator > WSLevelPair;
typedef std::pair< int const, Workspace* > WSLevelValuePair;

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_Graphics_GRA__thiessenTriangulation_h,v 1.1 2012/06/24 01:49:14 dholland Exp $
- this file uses size_t without including a definition of it, leading
to build failure on Solaris.
--- src/Graphics/GRA_thiessenTriangulation.h~ 2009-11-05 21:03:01.000000000 +0000
+++ src/Graphics/GRA_thiessenTriangulation.h
@@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fi
#ifndef GRA_THIESSENTRIANGULATION
#define GRA_THIESSENTRIANGULATION
+#include <cstddef>
#include <vector>
class GRA_thiessenTriangulation

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_Variables_NVariableTable.h,v 1.1 2013/05/04 12:46:01 joerg Exp $
--- src/Variables/NVariableTable.h.orig 2013-05-03 20:13:43.000000000 +0000
+++ src/Variables/NVariableTable.h
@@ -28,7 +28,7 @@ class NumericVariable;
class NVariableTable
{
private:
- typedef std::map<wxString const,NumericVariable*> NVariableMap;
+ typedef std::map<wxString, NumericVariable*> NVariableMap;
typedef NVariableMap::value_type entry_type;
// NVariableTable is the table of pointers to NumericVariables

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_Variables_TVariableTable.h,v 1.1 2013/05/04 12:46:01 joerg Exp $
--- src/Variables/TVariableTable.h.orig 2013-05-03 20:09:16.000000000 +0000
+++ src/Variables/TVariableTable.h
@@ -27,7 +27,7 @@ class TextVariable;
class TVariableTable
{
private:
- typedef std::map< wxString const, TextVariable* > TVariableMap;
+ typedef std::map< wxString, TextVariable* > TVariableMap;
typedef TVariableMap::value_type entry_type;
// TVariableTable is the table of pointers to TextVariables

View File

@@ -0,0 +1,28 @@
$NetBSD: patch-src_wxForms_AxisPopup.cpp,v 1.1 2012/11/23 12:29:15 joerg Exp $
--- src/wxForms/AxisPopup.cpp.orig 2012-11-21 22:06:14.000000000 +0000
+++ src/wxForms/AxisPopup.cpp
@@ -214,9 +214,10 @@ void AxisPopup::MakeNumbersPanel()
sizer->Add( new wxStaticText(panel,wxID_ANY,wxT("Font ")), wxSizerFlags(0).Left().Border(wxTOP,5) );
int nf = GRA_fontControl::GetCount();
- wxString choices[nf];
+ wxString *choices = new wxString[nf];
for( int i=0; i<nf; ++i )choices[i] = GRA_fontControl::GetFont(i)->GetFontName();
nFontCB_ = new wxComboBox( panel, ID_numbersFont, wxT(""), wxDefaultPosition, wxSize(200,25), nf, choices, wxCB_READONLY );
+ delete[] choices;
nFontCB_->SetToolTip( wxT("choose the axis numbers font") );
sizer->Add( nFontCB_, wxSizerFlags(0).Left().Border(wxALL,2) );
@@ -268,9 +269,10 @@ void AxisPopup::MakeLabelPanel()
topSizer->Add( new wxStaticText(topPanel,wxID_ANY,wxT("Font ")), wxSizerFlags(0).Left().Border(wxTOP,5) );
int nf = GRA_fontControl::GetCount();
- wxString choices[nf];
+ wxString *choices = new wxString[nf];
for( int i=0; i<nf; ++i )choices[i] = GRA_fontControl::GetFont(i)->GetFontName();
lFontCB_ = new wxComboBox( topPanel, ID_labelFont, wxT(""), wxDefaultPosition, wxSize(200,25), nf, choices, wxCB_READONLY );
+ delete[] choices;
lFontCB_->SetToolTip( wxT("choose the axis label font") );
topSizer->Add( lFontCB_, wxSizerFlags(0).Left().Border(wxALL,2) );

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-src_wxForms_FontChooser.cpp,v 1.1 2012/11/23 12:29:15 joerg Exp $
--- src/wxForms/FontChooser.cpp.orig 2012-11-21 22:08:15.000000000 +0000
+++ src/wxForms/FontChooser.cpp
@@ -101,9 +101,10 @@ void FontChooser::CreateForm()
topSizer->Add( new wxStaticText(topPanel,wxID_ANY,wxT("Font ")), wxSizerFlags(0).Right().Border(wxTOP,5) );
//
int nf = GRA_fontControl::GetCount();
- wxString choices[nf];
+ wxString *choices = new wxString[nf];
for( int i=0; i<nf; ++i )choices[i] = GRA_fontControl::GetFont(i)->GetFontName();
fontCB_ = new wxComboBox( topPanel, ID_font, wxT(""), wxDefaultPosition, wxSize(200,25), nf, choices, wxCB_READONLY );
+ delete[] choices;
topSizer->Add( fontCB_, wxSizerFlags(1).Left().Border(wxALL,2) );
topPanel->SetSizer( topSizer );
mainSizer->Add( topPanel, wxSizerFlags(0).Expand().Border(wxALL,2) );

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-src_wxForms_LegendPopup.cpp,v 1.1 2012/11/23 12:29:15 joerg Exp $
--- src/wxForms/LegendPopup.cpp.orig 2012-11-21 22:11:15.000000000 +0000
+++ src/wxForms/LegendPopup.cpp
@@ -166,10 +166,11 @@ void LegendPopup::CreateForm()
titleBotSizer->Add( new wxStaticText(titleBotPanel,wxID_ANY,wxT("Font")),
wxSizerFlags(0).Left().Border(wxALL,2) );
int nf = GRA_fontControl::GetCount();
- wxString choices[nf];
+ wxString *choices = new wxString[nf];
for( int i=0; i<nf; ++i )choices[i] = GRA_fontControl::GetFont(i)->GetFontName();
titleFontCB_ = new wxComboBox( titleBotPanel, ID_font, wxT(""), wxDefaultPosition, wxSize(200,25), nf,
choices, wxCB_READONLY );
+ delete[] choices;
titleFontCB_->SetToolTip( wxT("choose the title font") );
titleBotSizer->Add( titleFontCB_, wxSizerFlags(0).Left().Border(wxALL,2) );

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-src_wxForms_TextPopup.cpp,v 1.1 2012/11/23 12:29:15 joerg Exp $
--- src/wxForms/TextPopup.cpp.orig 2012-11-21 22:13:23.000000000 +0000
+++ src/wxForms/TextPopup.cpp
@@ -107,10 +107,11 @@ void TextPopup::CreateForm()
//
fSizer->Add( new wxStaticText(fPanel,wxID_ANY,wxT("Font")), wxSizerFlags(0).Left().Border(wxTOP,2) );
int nf = GRA_fontControl::GetCount();
- wxString choices[nf];
+ wxString *choices = new wxString[nf];
for( int i=0; i<nf; ++i )choices[i] = GRA_fontControl::GetFont(i)->GetFontName();
fontCB_ = new wxComboBox( fPanel, ID_font, wxT(""), wxDefaultPosition, wxSize(200,25), nf,
choices, wxCB_READONLY );
+ delete[] choices;
fontCB_->SetToolTip( wxT("choose the text font") );
fSizer->Add( fontCB_, wxSizerFlags(0).Left().Border(wxALL,2) );