Warning: session_start(): open(/tmp/sess_dpgs2il0j0ko7acjajg4dn1ra0, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Colin openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Colin

   0.1.8  

Qt Education

Score 61%
Colin
zoom


Colin
zoom


Colin
zoom


Homepage:  Link
Downloads:  488
Submitted:  Oct 14 2011
Updated:  Oct 15 2011

Description:

Colin is a structural analysis application with a lightweight Interface.

It has been developed by civil engineering students at the university of Innsbruck as an unofficial project. The idea was to create an easy to use structural analysis software for students, in order to provide an easier way to learn the basics of civil engineering.


Some tutorials (in German) can be found on youtube.com: http://www.youtube.com/user/ognop42

Setups for Windows can be found in the download area: http://download.clazzes.org/colin/testing/

Packages for Ubuntu/Debian are available as well in our repository: http://deb.clazzes.org/

Our SVN repository: http://svn.clazzes.org/svn/colin/trunk/colin/


When launching from terminal you should add the parameter "-graphicssystem raster" since this paint engine is much more faster than the native X11 one.

We hope it will be useful and that we get some feedback to improve it.




LicenseGPL
(clazzes.org)
Send to a friend
Subscribe
Other  Content  from matti42
Report inappropriate content



-

 I try to build from svn

 
 by 3 on: Oct 15 2011
 
Score 50%
33
Klimov D.V.
Home

and i get colionversion.h file not found.

this simple parch



--- src/colinversion.cpp 2011-04-03 10:46:05.122086000 +0400
+++ src/colinversion.cpp 2011-10-15 03:01:36.833126225 +0400
@@ -24,7 +24,7 @@
*
***********************************************************/

-#include <colinversion.h>
+#include "colinversion.h"

const char* ColinVersion() {
return "__VERSION__"; // now set in includes.mk


Reply to this

-

 Re: I try to build from svn

 
 by matti42 on: Oct 15 2011
 
Score 50%

thanks you for this!
i changed it in the svn.


Reply to this

-
.

 INSTALL file

 
 by 3 on: Oct 15 2011
 
Score 50%
33
Klimov D.V.
Home

How to build from svn?

I try:
qmake
make
make install


and i get "no rules to make install"


Reply to this

-

 Re: INSTALL file

 
 by matti42 on: Oct 15 2011
 
Score 50%

Hi,
I never used the possibility to install colin using qmake/make.

If I find some time in the next few days I will add it. :)


Reply to this

-

 Re: INSTALL file

 
 by wmhrae on: Oct 23 2011
 
Score 50%
wmhraewmhrae
iovumos
Home

Ok here is a little script doing the build and install

#!/bin/sh

mkdir -p colin-svn-build
cd colin-svn-build
svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/
cd colin
qmake
make
cp -a colin/xdg/colin.desktop /usr/share/applications/
cp -a colin/xdg/*.png /usr/share/pixmaps/
mkdir -p /usr/lib64/colin-1.0
mv colin *.o /usr/lib64/colin-1.0
cd /usr/bin
ln -s /usr/lib64/colin-1.0/colin colin


Reply to this

-

 Re: Re: INSTALL file

 
 by wmhrae on: Oct 23 2011
 
Score 63%
wmhraewmhrae
iovumos
Home

Just a fix removed colin on line 9 and 10 of previous post

#!/bin/sh
mkdir -p colin-svn-build
cd colin-svn-build
svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/
cd colin
qmake
make
cp -a xdg/colin.desktop /usr/share/applications/
cp -a xdg/*.png /usr/share/pixmaps/
mkdir -p /usr/lib64/colin-1.0
mv colin *.o /usr/lib64/colin-1.0
cd /usr/bin
ln -s /usr/lib64/colin-1.0/colin colin


Reply to this

-

 Re: Re: Re: INSTALL file

 
 by matti42 on: Oct 23 2011
 
Score 50%

thanks for this!


Reply to this

-
.

 INSTALL file

 
 by 3 on: Oct 15 2011
 
Score 50%
33
Klimov D.V.
Home

How to build from svn?

I try:
qmake
make
make install


and i get "no rules to make install"


Reply to this

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team