Yuval Levy schrieb:
> Dale Beams wrote:
>> Ubuntu build docs are broke. Following them to the letter does not get the
>> desired results.
>
> what breaks where?
Enblend:
The first command after "cd enblend" should be
make -f Makefile.scm
instead of
make -f Makefile.cvs
Hugin:
If one actually checks out "-r 4061
https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/tags/hugin-2009.07.1/"
as per wiki, the "svn up" in the next code section fails with
svn: Target path '/hugin/branches/release-2009.07' does not exist
I recommend to drop the '-r xxxx' part as the branch is a copy of the
repository at a defined revision. If there is further work on this
branch, it will not be incorporated if checked out with a -r switch.
As a side note, the link given for the hugin repository
(https://hugin.svn.sourceforge.net/svnroot/hugin/trunk/) in the intro
part for hugin is wrong: it should be
https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk/
My further testing continued using
https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/releases/2009.2/
The command "cmake ../hugin ..." failed with
CMake Error at CMakeModules/FindSubversion.cmake:82 (MESSAGE):
Command "/usr/bin/svn info /home/stefan/src/hugin" failed with output:
svn: '/home/stefan/src' is not a working copy
svn: Can't open file '/home/stefan/src/.svn/entries': No such file or
directory
Call Stack (most recent call first):
CMakeLists.txt:39 (Subversion_WC_INFO)
as did the manual commnd svn info /home/stefan/src/hugin.
Not being a subversion crack, I hacked CmakeLists.txt (See attached patch).
However, there was no Makefile created in hugin-build and therefore, the
command "make package" had to fail. I assume that this is because I used
release-2009.07, so I changed to ../hugin and repeated the cmake command.
It is building currently, I will report the rest when it is done.
Regards
Stefan Peter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at:
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~----------~----~----~----~------~----~------~--~---
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt (Revision 4321)
+++ CMakeLists.txt (Arbeitskopie)
@@ -36,7 +36,7 @@
ELSE(WIN32 AND NOT CMAKE_CROSSCOMPILING)
FIND_PACKAGE(Subversion REQUIRED)
IF(Subversion_FOUND)
- Subversion_WC_INFO(${PROJECT_SOURCE_DIR} HUGIN)
+ Subversion_WC_INFO(${PROJECT_SOURCE_DIR}/src HUGIN)
MESSAGE("-- Current SVN revision is ${HUGIN_WC_REVISION}")
ELSE(Subversion_FOUND)
MESSAGE(SEND_ERROR "Could not determine SVN revision")