* Carnë Draug <carandraug+...@gmail.com> [2012-10-12 17:22]:

a new release of the geometry package is out, version 1.6.0, by Juan Carbajal. Enjoy Octave responsibly.

Thanks for this new release. When trying to build the Debian package for geometry, I have found two problems in the tarball:

1) The directories src/octclip/ and inst/octclip/src/ seem to be duplicated. I think that the second one should be removed from the tarball.

2) The file _oc_polybool.oct is correctly built but does not get installed into the architecture-dependent directory. The very thin patch attached below fixes the problem. It simply copies the file from src/octclip/ into src/, after its compilation. That may not be an elegant way of addressing this issue but it works, at least.

Please, fix these issues in the next release.

Rafael





Description: Ensure that file _oc_polybool.oct is installed
 It seems that only the compiled *.oct that are present in the src/
 directory get installed in the architecture-dependent directory of the
 package.  This patch just move the _oc_polybool.oct file, which is built
 in src/octclip/, into src/.
Author: Rafael Laboissiere <raf...@laboissiere.net>
Last-Update: 2012-10-15

--- octave-geometry-1.6.0.orig/src/octclip/Makefile
+++ octave-geometry-1.6.0/src/octclip/Makefile
@@ -15,6 +15,7 @@ FLAGS = -Wall -Wextra
 	$(MKOCTFILE) $< $(CLIPOBJECT) $(FLAGS) -v  -I.
 
 all: _oc_polybool.oct
+	cp _oc_polybool.oct ..
 
 clean:
 	rm -rf *.o *~
------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to