1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Update to version 3.9.0

Features:
 - VSPAERO v3.0 - Panel method, batch runs, control surfaces, much more
 - Improved VSPAERO integration
 - One-Axis Kinematic Joint (Hinge/Slider)
 - Group Transformation/Scale -- Thanks Alex Gary
 - 2D AutoCad Export of feature lines

Bug Fixes:
 - Change to Geom type name lookup instead of type ID number
 - Fix Python API
 - Fix VarPresets API to built-in scripting

PR:		212131
Submitted by:	maintainer
This commit is contained in:
Pawel Pekala 2016-08-25 16:54:32 +00:00
parent 709be99b77
commit 8094b849a0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=420862
9 changed files with 88 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= openvsp
PORTVERSION= 3.8.1
PORTVERSION= 3.9.0
DISTVERSIONPREFIX= ${GH_PROJECT}_
CATEGORIES= cad
MASTER_SITES= GH

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1470080361
SHA256 (OpenVSP-OpenVSP-OpenVSP_3.8.1_GH0.tar.gz) = 107d2f6f18817fa5f690f60bc2799418469862ff374963a6a559f6b755df3416
SIZE (OpenVSP-OpenVSP-OpenVSP_3.8.1_GH0.tar.gz) = 32679615
TIMESTAMP = 1472060174
SHA256 (OpenVSP-OpenVSP-OpenVSP_3.9.0_GH0.tar.gz) = 582efa843ecd46543950a8faac9c4c1274f0d897d31eef0bef887795d91142d3
SIZE (OpenVSP-OpenVSP-OpenVSP_3.9.0_GH0.tar.gz) = 32750881

View File

@ -1,4 +1,4 @@
--- Libraries/cmake/External_CMinpack.cmake.orig 2016-02-14 00:01:30 UTC
--- Libraries/cmake/External_CMinpack.cmake.orig 2016-08-21 15:22:39 UTC
+++ Libraries/cmake/External_CMinpack.cmake
@@ -1,3 +1,6 @@
+SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -lm -fPIC")

View File

@ -0,0 +1,11 @@
--- src/vsp_aero/viewer/ContourLevel.fl.orig 2016-08-21 15:22:39 UTC
+++ src/vsp_aero/viewer/ContourLevel.fl
@@ -12,7 +12,7 @@ class ContourLevelUserInterface {open
Fl_Window MainWindow {
label {Set Contour Levels} open
xywh {603 165 297 144} align 129
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
code1 {\#include "glviewer.H"} visible
} {
Fl_Button Reset {

View File

@ -0,0 +1,11 @@
--- src/vsp_aero/viewer/CuttingPlane.fl.orig 2016-08-21 15:22:39 UTC
+++ src/vsp_aero/viewer/CuttingPlane.fl
@@ -9,7 +9,7 @@ class CuttingPlaneUserInterface {open
Fl_Window MainWindow {
label {Cutting Plane} open
xywh {525 164 297 106} type Double align 129
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
code1 {\#include "glviewer.H"} visible
} {
Fl_Value_Input CuttingPlaneValue {

View File

@ -0,0 +1,11 @@
--- src/vsp_aero/viewer/glviewer.H.orig 2016-08-21 15:22:39 UTC
+++ src/vsp_aero/viewer/glviewer.H
@@ -36,7 +36,7 @@
#include "utils.H"
#include "glf.H"
#include "binaryio.H"
-#include "viewerUI.H"
+#include "viewerUI.h"
//#include "tiffio.h"
#include "TagList.H"
#include "TagListGroup.H"

View File

@ -0,0 +1,35 @@
--- src/vsp_aero/viewer/viewerUI.fl.orig 2016-08-21 15:22:39 UTC
+++ src/vsp_aero/viewer/viewerUI.fl
@@ -324,28 +324,28 @@ glviewer->redraw();}
CL = new ContourLevelUserInterface;
CL->show(glviewer);}
xywh {10 10 100 20} divider
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
}
MenuItem OptionsMenuUseSmoothFunctionShading {
label {Use Smooth Function Shading}
callback {glviewer->DrawSmoothFunctionsWasPicked();
glviewer->redraw();}
xywh {40 40 100 20} type Toggle divider
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
}
MenuItem OptionsMenuUseFlatShading {
label {Use Flat Shading}
callback {glviewer->DrawFlatShadedWasPicked();
glviewer->redraw();}
xywh {40 40 100 20} type Toggle divider
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
}
MenuItem OptionsMenuDrawWakesToInfinity {
label {Draw Wakes To Infinity}
callback {glviewer->DrawWakesToInfinityWasPicked();
glviewer->redraw();}
xywh {50 50 100 20} type Toggle divider
- code0 {\#include "ContourLevel.H"}
+ code0 {\#include "ContourLevel.h"}
}
}
Fl_Button KeyboardControlInfoButton {

View File

@ -0,0 +1,11 @@
--- src/vsp_aero/viewer/vspaero_viewer.C.orig 2016-08-24 17:53:16 UTC
+++ src/vsp_aero/viewer/vspaero_viewer.C
@@ -8,7 +8,7 @@
#include <stdio.h>
//#include <config.h>
#include <FL/Fl.H>
-#include "viewerUI.H"
+#include "viewerUI.h"
int ForceView = 0;
int TimeStamp = 0;

View File

@ -38,7 +38,9 @@ scripts/Stack.vspscript
scripts/SubSurface.vspscript
scripts/TestAll.vspscript
scripts/TestAnalysis.vspscript
scripts/TestAnalysisVSPAERO.vspscript
scripts/TestAreaProj.vspscript
scripts/TestDXF.vspscript
scripts/Wing.vspscript
%%DATADIR%%/23015.af
%%DATADIR%%/Box.vsppart
@ -64,7 +66,9 @@ scripts/Wing.vspscript
%%DATADIR%%/SubSurface.vspscript
%%DATADIR%%/TestAll.vspscript
%%DATADIR%%/TestAnalysis.vspscript
%%DATADIR%%/TestAnalysisVSPAERO.vspscript
%%DATADIR%%/TestAreaProj.vspscript
%%DATADIR%%/TestDXF.vspscript
%%DATADIR%%/TransportFuse.vsppart
%%DATADIR%%/Wing.vspscript
%%DATADIR%%/b737a.af