From: Dominic L?t. <ma...@us...> - 2004-05-30 10:19:30
|
Update of /cvsroot/robotflow/RobotFlow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24933 Modified Files: Makefile.am configure.in Added Files: RobotFlow.spec.in Removed Files: RobotFlow.spec Log Message: updated configure scripts to compile Player blocks if requested --- RobotFlow.spec DELETED --- --- NEW FILE: RobotFlow.spec.in --- %define name @PACKAGE@ %define ver @VERSION@ %define rel 1 Summary: A Robotics Toolkit for FlowDesigner Name: %name Version: %ver Release: %rel Copyright: GPL/LGPL Group: Application/Devel Source: http://download.sourceforge.net/robotflow/%{name}-%{ver}.tar.gz URL: http://robotflow.sourceforge.net/ Vendor: Laborius Packager: Dominic Letourneau (dom...@us...) BuildRoot: %{_tmppath}/root-%{name}-%{version} Prefix: %{_prefix} %description RobotFlow is a mobile robotics tookit based on the FlowDesigner project. FlowDesigner is a data-flow oriented architecture, similar to Simulink (Matlab) or Labview that is free (LGPL) and versatile. The visual programming interface provided in the FlowDesigner project will help people to better visualize & understand what is really happening in the robot's control loops, sensors, actuators, by using graphical probes and debugging in real-time. %prep %setup %build export CXXFLAGS='-O3 -march=pentium' export CFLAGS='-O3 -march=pentium' ./configure --prefix=/usr --disable-static %{__make} %install %makeinstall %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-, root, root, 0755) /usr/lib/flowdesigner/toolbox/RobotFlow/* Index: Makefile.am =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Makefile.am,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Makefile.am 27 May 2004 02:29:11 -0000 1.15 --- Makefile.am 30 May 2004 10:19:08 -0000 1.16 *************** *** 2,12 **** # Disable automatic dependency tracking if using other tools than gcc and gmake #AUTOMAKE_OPTIONS = no-dependencies - if WITH_PLAYER ! SUBDIRS = Generic Pioneer2 Behaviors Vision Control Devices Player Probes FSM ! else ! SUBDIRS = Generic Pioneer2 Behaviors Vision Control Devices Probes FSM endif rpm: dist rpmbuild -ta ${PACKAGE}-${VERSION}.tar.gz --- 2,11 ---- # Disable automatic dependency tracking if using other tools than gcc and gmake #AUTOMAKE_OPTIONS = no-dependencies if WITH_PLAYER ! PLAYER_DIR = Player endif + SUBDIRS = Generic Pioneer2 Behaviors Vision Control Devices Probes FSM $(PLAYER_DIR) + rpm: dist rpmbuild -ta ${PACKAGE}-${VERSION}.tar.gz Index: configure.in =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/configure.in,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** configure.in 27 May 2004 02:29:11 -0000 1.32 --- configure.in 30 May 2004 10:19:19 -0000 1.33 *************** *** 184,188 **** Generic/include/Makefile \ Generic/src/Makefile \ ! Generic/n-files/Makefile) --- 184,189 ---- Generic/include/Makefile \ Generic/src/Makefile \ ! Generic/n-files/Makefile \ ! RobotFlow.spec) |