From b657da588561a59e6e8d030615e7f36d5fbd003e Mon Sep 17 00:00:00 2001 From: Anthony Mallet <anthony.mallet@laas.fr> Date: Fri, 9 Jun 2017 15:39:02 +0200 Subject: [PATCH] [wip/oro-view] Delete: timeout --- Makefile | 1 - oro-view/DESCR | 14 -------------- oro-view/Makefile | 24 ------------------------ oro-view/PLIST | 15 --------------- oro-view/depend.mk | 25 ------------------------- oro-view/distinfo | 4 ---- oro-view/patches/patch-aa | 14 -------------- 7 files changed, 97 deletions(-) delete mode 100644 oro-view/DESCR delete mode 100644 oro-view/Makefile delete mode 100644 oro-view/PLIST delete mode 100644 oro-view/depend.mk delete mode 100644 oro-view/distinfo delete mode 100644 oro-view/patches/patch-aa diff --git a/Makefile b/Makefile index b5bf038c..52767159 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,6 @@ SUBDIR+= octovis SUBDIR+= ompl SUBDIR+= openhrp3-simulator-wo-rtm SUBDIR+= openhrp3-hrp2 -SUBDIR+= oro-view SUBDIR+= orocos-bfl SUBDIR+= orocos-dot_service SUBDIR+= orocos-yarp_transport diff --git a/oro-view/DESCR b/oro-view/DESCR deleted file mode 100644 index fb99e628..00000000 --- a/oro-view/DESCR +++ /dev/null @@ -1,14 +0,0 @@ -oro-view is an OpenGL-based viewer for semantic networks. - -The code is originally based on Gource, by Andrew Caudwell. - -oro-view requires oro-server (http://oro.openrobots.org) to -fetch the concepts and their relationships. - -The graph can be zoomed/panned with the mouse. - -It features a special, shiny, "Active Concept" focus method: -if a concept is asserted to belong to the ActiveConcept class, -then it pops on the screen, as a bright, warm, yellow spot. - - diff --git a/oro-view/Makefile b/oro-view/Makefile deleted file mode 100644 index b28f0e5b..00000000 --- a/oro-view/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# robotpkg Makefile for: knowledge/oro-view -# Created: Séverin Lemaignan, on Wed 19/10/2011 -# - -DISTNAME= oro-view-1.0.1 -CATEGORIES= knowledge -MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=oro-view/} -MASTER_REPOSITORY= ${MASTER_REPOSITORY_OPENROBOTS_TRAC}oro-view - -COMMENT= OpenGL-based viewer for ontologies exposed by oro-server -MAINTAINER= severin.lemaignan@laas.fr -LICENSE= gnu-gpl-v3 - -GNU_CONFIGURE= yes - -include ../../pkgtools/pkg-config/depend.mk -include ../../knowledge/liboro/depend.mk -include ../../devel/jsoncpp/depend.mk -include ../../mk/sysdep/ftgl.mk -include ../../mk/sysdep/SDL.mk -include ../../mk/sysdep/SDL_image.mk -include ../../mk/language/c.mk -include ../../mk/language/c++.mk -include ../../mk/robotpkg.mk diff --git a/oro-view/PLIST b/oro-view/PLIST deleted file mode 100644 index 515f70dc..00000000 --- a/oro-view/PLIST +++ /dev/null @@ -1,15 +0,0 @@ -@comment Sat May 12 12:29:17 CEST 2012 -bin/oroview -etc/oro-view.json -share/oro-view/beam.png -share/oro-view/bloom.tga -share/oro-view/classes.png -share/oro-view/comment.png -share/oro-view/fonts/Aller_Bd.ttf -share/oro-view/fonts/Aller_Lt.ttf -share/oro-view/gource.style -share/oro-view/instances.png -share/oro-view/literals.png -share/oro-view/no.png -share/oro-view/no_photo.png -share/oro-view/yes.png diff --git a/oro-view/depend.mk b/oro-view/depend.mk deleted file mode 100644 index 83eb1c6e..00000000 --- a/oro-view/depend.mk +++ /dev/null @@ -1,25 +0,0 @@ -# robotpkg depend.mk for: graphics/oro-view -# Created: Xavier Broquere on Fri, 29 Oct 2010 -# -DEPEND_DEPTH:= ${DEPEND_DEPTH}+ -OROVIEW_DEPEND_MK:= ${OROVIEW_DEPEND_MK}+ - -ifeq (+,$(DEPEND_DEPTH)) -DEPEND_PKG+= oro-view -endif - -ifeq (+,$(OROVIEW_DEPEND_MK)) # ------------------------------------------------ - -PREFER.oro-view?= robotpkg - -SYSTEM_SEARCH.oro-view=\ - bin/oroview - -DEPEND_USE+= oro-view - -DEPEND_ABI.oro-view?= oro-view>=1.0 -DEPEND_DIR.oro-view?= ../../wip/oro-view - -endif # OROVIEW_DEPEND_MK ------------------------------------------------------ - -DEPEND_DEPTH:= ${DEPEND_DEPTH:+=} diff --git a/oro-view/distinfo b/oro-view/distinfo deleted file mode 100644 index 89182ed6..00000000 --- a/oro-view/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -SHA1 (oro-view-1.0.1.tar.gz) = a292a7e5d781f38d050e49d40fb6b53030501f2a -RMD160 (oro-view-1.0.1.tar.gz) = 735e628a0d70f6264ca96c6c568b3ab9ef366866 -Size (oro-view-1.0.1.tar.gz) = 336853 bytes -SHA1 (patch-aa) = bd45ce1ffac9099915f8496c337cbe5b1bc5ed94 diff --git a/oro-view/patches/patch-aa b/oro-view/patches/patch-aa deleted file mode 100644 index 4ab0538c..00000000 --- a/oro-view/patches/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ -Fix a call to std::pow(int, int) that gcc-4.2.1 doesn't like -Use std::pow(float, int) instead. - ---- src/node_renderer.cpp~ 2011-10-13 15:29:31.000000000 +0200 -+++ src/node_renderer.cpp 2012-05-11 11:24:03.000000000 +0200 -@@ -105,7 +105,7 @@ - - if (current_distance_to_selected <= 1) return 1.0f; - -- int distance = std::max(1, current_distance_to_selected); -+ float distance = std::max(1, current_distance_to_selected); - //float level = FADE_TIME - (idle_time * distance)/FADE_TIME; - - // We use a function in (1-x^3) to smooth the fading of nodes -- GitLab