r10882 - in packages/trunk: . nel nel/debian nel/debian/patches

Lubos Novak lubos-guest at alioth.debian.org
Tue Mar 30 08:43:45 UTC 2010


Author: lubos-guest
Date: 2010-03-30 08:43:43 +0000 (Tue, 30 Mar 2010)
New Revision: 10882

Added:
   packages/trunk/nel/
   packages/trunk/nel/debian/
   packages/trunk/nel/debian/README.source
   packages/trunk/nel/debian/changelog
   packages/trunk/nel/debian/compat
   packages/trunk/nel/debian/control
   packages/trunk/nel/debian/copyright
   packages/trunk/nel/debian/libnel-dev.dirs
   packages/trunk/nel/debian/libnel-dev.docs
   packages/trunk/nel/debian/libnel-dev.install
   packages/trunk/nel/debian/libnel-dev.manpages
   packages/trunk/nel/debian/libnel-doc.doc-base.nel
   packages/trunk/nel/debian/libnel-doc.install
   packages/trunk/nel/debian/libnel0.dirs
   packages/trunk/nel/debian/libnel0.install
   packages/trunk/nel/debian/libnel0.lintian-overrides
   packages/trunk/nel/debian/nel-config.1
   packages/trunk/nel/debian/patches/
   packages/trunk/nel/debian/patches/disable_log_log_file.patch
   packages/trunk/nel/debian/patches/ftbfs_gcc_4.5.patch
   packages/trunk/nel/debian/patches/prepare_documentation.patch
   packages/trunk/nel/debian/patches/series
   packages/trunk/nel/debian/rules
Log:
Applying Debian modifications to trunk

Added: packages/trunk/nel/debian/README.source
===================================================================
--- packages/trunk/nel/debian/README.source	                        (rev 0)
+++ packages/trunk/nel/debian/README.source	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.

Added: packages/trunk/nel/debian/changelog
===================================================================
--- packages/trunk/nel/debian/changelog	                        (rev 0)
+++ packages/trunk/nel/debian/changelog	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,47 @@
+nel (0.7.0-1) UNRELEASED; urgency=low
+
+  [ Gürkan Sengün ]
+  * New upstream version. (Closes: #553248)
+  * Updated build dependencies.
+
+  [ Michal Čihař ]
+  * Convert to dh with cmake support.
+  * Bump standards to 3.8.4.
+
+  [ Luboš Novák ]
+  * Change maintainer to 'Debian Games Team'
+  * ftbfs_gcc_4.5.path: Fix build with g++-4.5. (Closes: #565104)
+  * Converted direct changes in source to patches.
+  * Enable building CEGUI renderer.
+  * Add package libnel-doc with documentation.
+  * debian/control
+    + Changed priority of libnel-dbg to extra.
+    + Remove duplicate Section in libnel0.
+    + Update short descriptions.
+    + Replace obsolete package xlibmesa-gl-dev with libgl1-mesa-dev
+      in build-depends.
+    + Add libpng-dev to build-depends.
+    + Remove libalut-dev from build-depends.
+    + New homepage.
+    + Supported architectures are i386 and amd64.
+  * debian/libnel-dev.dirs
+    + Remove empty dir usr/lib/nel.
+  * debian/copyright
+    + Update redistribution licence from GPL to GPL-2.
+  * debian/rules
+    + Disable building unit test, samples and tools.
+
+ -- Luboš Novák <alvinx12 at centrum.cz>  Tue, 30 Mar 2010 10:29:23 +0100
+
+nel (0.5.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Change Build-Depends: libstlport5.2-dev. (Closes: #521762)
+
+ -- Torsten Werner <twerner at debian.org>  Sun, 28 Jun 2009 11:54:05 +0200
+
+nel (0.5.0-1) unstable; urgency=low
+
+  * Initial release. (Closes: #448067)
+
+ -- Gürkan Sengün <gurkan at linuks.mine.nu>  Tue, 23 Oct 2007 12:56:45 +0200

Added: packages/trunk/nel/debian/compat
===================================================================
--- packages/trunk/nel/debian/compat	                        (rev 0)
+++ packages/trunk/nel/debian/compat	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+7

Added: packages/trunk/nel/debian/control
===================================================================
--- packages/trunk/nel/debian/control	                        (rev 0)
+++ packages/trunk/nel/debian/control	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,74 @@
+Source: nel
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Luboš Novák <alvinx12 at centrum.cz>
+Build-Depends: debhelper (>= 7.3.0), cmake(>= 2.6), quilt, doxygen, libxml2-dev,
+ libgl1-mesa-dev, libjpeg62-dev, libpng12-dev, libopenal-dev, libfreetype6-dev,
+ libcegui-mk2-dev, x11proto-xf86vidmode-dev, libxxf86vm-dev, libxmu-dev
+Standards-Version: 3.8.4
+Section: libs
+Homepage: http://dev.ryzom.com/projects/nel/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/nel/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/nel/?op=log
+
+Package: libnel0
+Architecture: amd64 i386
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Massive multi-user 3D game environments library (shared library)
+ This is a software platform for creating and running massively multi-user
+ entertainment in a 3D environment over the Internet.
+ .
+ This library is further divided into specific modules: network, ai, 3d
+ and misc. If you want to use any of these, you also need to use the misc
+ part of the library, but ai, 3d and network are totally independent from
+ each other so you can use only the parts you really need in your project.
+ .
+ This package contains the shared library.
+
+Package: libnel-dev
+Section: libdevel
+Architecture: amd64 i386
+Depends: libnel0 (= ${binary:Version}), ${misc:Depends}, libxml2-dev,
+ libjpeg62-dev, libpng12-dev, libfreetype6-dev, libcegui-mk2-dev
+Suggests: libnel-doc
+Description: Massive multi-user 3D game environments library (development files)
+ This is a software platform for creating and running massively multi-user
+ entertainment in a 3D environment over the Internet.
+ .
+ This library is further divided into specific modules: network, ai, 3d
+ and misc. If you want to use any of these, you also need to use the misc
+ part of the library, but ai, 3d and network are totally independent from
+ each other so you can use only the parts you really need in your project.
+ .
+ This package contains the static library and headers.
+
+Package: libnel-dbg
+Section: debug
+Priority: extra
+Architecture: amd64 i386
+Depends: libnel0 (= ${binary:Version}), ${misc:Depends}
+Description: Massive multi-user 3D game environments library (debugging symbols)
+ This is a software platform for creating and running massively multi-user
+ entertainment in a 3D environment over the Internet.
+ .
+ This library is further divided into specific modules: network, ai, 3d
+ and misc. If you want to use any of these, you also need to use the misc
+ part of the library, but ai, 3d and network are totally independent from
+ each other so you can use only the parts you really need in your project.
+ .
+ This package contains the debugging symbols.
+
+Package: libnel-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Description: Massive multi-user 3D game environments library (documentation)
+ This is a software platform for creating and running massively multi-user
+ entertainment in a 3D environment over the Internet.
+ .
+ This library is further divided into specific modules: network, ai, 3d
+ and misc. If you want to use any of these, you also need to use the misc
+ part of the library, but ai, 3d and network are totally independent from
+ each other so you can use only the parts you really need in your project.
+ .
+ This package contains documentation.

Added: packages/trunk/nel/debian/copyright
===================================================================
--- packages/trunk/nel/debian/copyright	                        (rev 0)
+++ packages/trunk/nel/debian/copyright	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,46 @@
+This package was debianized by Gürkan Sengün <gurkan at phys.ethz.ch> on
+Tue, 23 Oct 2007 12:56:45 +0200.
+
+It was downloaded from <http://dev.ryzom.com/projects/nel>
+
+Upstream Authors:
+
+    Matt Raykowski <matt.raykowski at gmail.com>
+    Vianney Lecroart <acemtp at gmail.com>
+    Robert Wetzel <spexius at gmx.de>
+    Henri Kuuste <al-rtsan at totl.net>
+    Bertram Felgenhauer <int-e at gmx.de>
+    Krzysztof Kotlenga <piernik at gmail.com>
+    Cedric Ochs <kervala at gmail.com>
+    Nevrax <cado at nevrax.com>
+
+Copyright:
+
+    Copyright (C) 2003-2009 Vianney Lecroart
+    Copyright (C) 2003-2009 Matt Raykowski
+    Copyright (C) 2000-2003 Nevrax Ltd.
+
+License:
+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; version 2 dated June, 1991.
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+    The GNU General Public License which can be found,
+    on Debian systems, at /usr/share/common-licenses/GPL-2.
+
+The Debian packaging is:
+
+    Copyright (C) 2007 Gürkan Sengün <gurkan at phys.ethz.ch>
+
+and is licensed under the GPL version 2, 
+see `/usr/share/common-licenses/GPL-2'.

Added: packages/trunk/nel/debian/libnel-dev.dirs
===================================================================
--- packages/trunk/nel/debian/libnel-dev.dirs	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-dev.dirs	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,3 @@
+usr/lib
+usr/include
+usr/bin

Added: packages/trunk/nel/debian/libnel-dev.docs
===================================================================
--- packages/trunk/nel/debian/libnel-dev.docs	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-dev.docs	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+README

Added: packages/trunk/nel/debian/libnel-dev.install
===================================================================
--- packages/trunk/nel/debian/libnel-dev.install	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-dev.install	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,21 @@
+usr/include/*
+usr/lib/lib*.so
+#usr/lib/pkgconfig/*
+#usr/lib/*.la
+usr/bin/nel-config
+#usr/lib/nel/nl_sample_chatclient
+#usr/lib/nel/nl_sample_chatserver
+#usr/lib/nel/nl_sample_clusterview
+#usr/lib/nel/nl_sample_command
+#usr/lib/nel/nl_sample_configfile
+#usr/lib/nel/nl_sample_debug
+#usr/lib/nel/nl_sample_font
+#usr/lib/nel/nl_sample_georges
+#usr/lib/nel/nl_sample_i18n
+#usr/lib/nel/nl_sample_log
+#usr/lib/nel/nl_sample_ls_client
+#usr/lib/nel/nl_sample_ls_fes
+#usr/lib/nel/nl_sample_pacs
+#usr/lib/nel/nl_sample_strings
+#usr/lib/nel/nl_sample_udpclient
+#usr/lib/nel/nl_sample_udpserver

Added: packages/trunk/nel/debian/libnel-dev.manpages
===================================================================
--- packages/trunk/nel/debian/libnel-dev.manpages	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-dev.manpages	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+debian/nel-config.1

Added: packages/trunk/nel/debian/libnel-doc.doc-base.nel
===================================================================
--- packages/trunk/nel/debian/libnel-doc.doc-base.nel	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-doc.doc-base.nel	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,9 @@
+Document: nel
+Title: NeL Reference Manual
+Author: Nevrax
+Abstract: This is a software platform for creating and running massively multi-user entertainment in a 3D environment over the Internet.
+Section: Programming/C
+
+Format: HTML
+Index: /usr/share/doc/libnel-doc/html/index.html
+Files: /usr/share/doc/libnel-doc/html/*.html

Added: packages/trunk/nel/debian/libnel-doc.install
===================================================================
--- packages/trunk/nel/debian/libnel-doc.install	                        (rev 0)
+++ packages/trunk/nel/debian/libnel-doc.install	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+usr/share/doc/libnel-doc/html/*

Added: packages/trunk/nel/debian/libnel0.dirs
===================================================================
--- packages/trunk/nel/debian/libnel0.dirs	                        (rev 0)
+++ packages/trunk/nel/debian/libnel0.dirs	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+usr/lib

Added: packages/trunk/nel/debian/libnel0.install
===================================================================
--- packages/trunk/nel/debian/libnel0.install	                        (rev 0)
+++ packages/trunk/nel/debian/libnel0.install	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+usr/lib/lib*.so.*

Added: packages/trunk/nel/debian/libnel0.lintian-overrides
===================================================================
--- packages/trunk/nel/debian/libnel0.lintian-overrides	                        (rev 0)
+++ packages/trunk/nel/debian/libnel0.lintian-overrides	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1 @@
+libnel0: package-name-doesnt-match-sonames libnel3d0.7.0 libnel-drv-openal0.7.0 libnel-drv-opengl0.7.0 libnelceguirenderer0.7.0 libnelgeorges0.7.0 libnelligo0.7.0 libnellogic0.7.0 libnelmisc0.7.0 libnelnet0.7.0 libnelpacs0.7.0 libnelsnd-lowlevel0.7.0 libnelsound0.7.0

Added: packages/trunk/nel/debian/nel-config.1
===================================================================
--- packages/trunk/nel/debian/nel-config.1	                        (rev 0)
+++ packages/trunk/nel/debian/nel-config.1	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,37 @@
+.TH nel-config 1 "26 Oct 2007"
+.SH NAME
+nel-config \- Get information about a libnel installation
+.SH SYNOPSIS
+.B nel-config [options]
+.SH DESCRIPTION
+.B nel-config
+displays information about a libnel installation.
+.SH OPTIONS
+.IP "--cflags"
+Set of compiler options (CFLAGS) to use when compiling files that use
+libnel. Currently that is only thw include path to the nel include files.
+.IP "--libs"
+Shows the complete set of libs and other linker options you will need in order
+to link your application with libnel.
+.IP "--prefix"
+This is the prefix used when libnel was installed. libnel is then installed
+in $prefix/lib and its header files are installed in $prefix/include and so
+on. The prefix is set with "configure \-\-prefix".
+.IP "--version"
+Outputs version information about the installed libnel.
+.SH "EXAMPLES"
+What linker options do I need when I link with libnel?
+
+  $ nel-config \-\-libs
+
+What compiler options do I need when I compile using libnel functions?
+
+  $ nel-config \-\-cflags
+
+What's the installed libnel version?
+
+  $ nel-config \-\-version
+.SH AUTHOR
+.PP
+This manual page was written by G\[:u]rkan Seng\[:u]n
+<gurkan at linuks.mine.nu>,for the Debian project (but may be used by others).

Added: packages/trunk/nel/debian/patches/disable_log_log_file.patch
===================================================================
--- packages/trunk/nel/debian/patches/disable_log_log_file.patch	                        (rev 0)
+++ packages/trunk/nel/debian/patches/disable_log_log_file.patch	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,15 @@
+Disable creating log.log file.
+Index: nel-0.7.0/CMakeLists.txt
+===================================================================
+--- nel-0.7.0.orig/CMakeLists.txt	2009-10-29 21:51:22.000000000 +0100
++++ nel-0.7.0/CMakeLists.txt	2009-10-29 21:53:05.000000000 +0100
+@@ -65,6 +65,9 @@
+ NL_SETUP_DEFAULT_OPTIONS()
+ NL_SETUP_PREFIX_PATHS()
+ 
++#disable log.log file
++ADD_DEFINITIONS(-DNEL_LOG_IN_FILE=0)
++
+ #-----------------------------------------------------------------------------
+ #Platform specifics
+ 

Added: packages/trunk/nel/debian/patches/ftbfs_gcc_4.5.patch
===================================================================
--- packages/trunk/nel/debian/patches/ftbfs_gcc_4.5.patch	                        (rev 0)
+++ packages/trunk/nel/debian/patches/ftbfs_gcc_4.5.patch	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,56 @@
+Fix ftbfs with gcc-4.5, author Spex, revision 2265
+Index: nel-0.7.0/src/misc/file.cpp
+===================================================================
+--- nel-0.7.0.orig/src/misc/file.cpp	2010-02-20 16:52:16.000000000 +0100
++++ nel-0.7.0/src/misc/file.cpp	2010-02-19 12:21:36.000000000 +0100
+@@ -54,7 +54,8 @@
+ uint32 CIFile::_ReadingFromFile = 0;
+ uint32 CIFile::_FileOpened = 0;
+ uint32 CIFile::_FileRead = 0;
+-CSynchronized<std::deque<std::string> > CIFile::_OpenedFiles = CSynchronized<std::deque<std::string> >("");
++CSynchronized<std::deque<std::string> > CIFile::_OpenedFiles("");
++    // = CSynchronized<std::deque<std::string> >("");
+ 
+ // ======================================================================================================
+ CIFile::CIFile() : IStream(true)
+Index: nel-0.7.0/src/misc/sheet_id.cpp
+===================================================================
+--- nel-0.7.0.orig/src/misc/sheet_id.cpp	2010-02-20 16:52:16.000000000 +0100
++++ nel-0.7.0/src/misc/sheet_id.cpp	2010-02-19 12:21:36.000000000 +0100
+@@ -238,7 +238,7 @@
+ 			nNb = 0;
+ 			while (it != tempMap.end())
+ 			{
+-				_SheetIdToName.add(pair<uint32, CChar>::pair(it->first, CChar(tempVec[nNb])));
++				_SheetIdToName.add(pair<uint32, CChar>(it->first, CChar(tempVec[nNb])));
+ 
+ 				nNb++;
+ 				it++;
+Index: nel-0.7.0/src/misc/string_mapper.cpp
+===================================================================
+--- nel-0.7.0.orig/src/misc/string_mapper.cpp	2010-02-20 16:52:16.000000000 +0100
++++ nel-0.7.0/src/misc/string_mapper.cpp	2010-02-19 12:21:36.000000000 +0100
+@@ -120,8 +120,8 @@
+ 	std::map<std::string, TSStringId>::iterator it = _TempStringTable.find(str);
+ 	if (it == _TempStringTable.end())
+ 	{
+-		_TempStringTable.insert(pair<string,TSStringId>::pair(str,_IdCounter));
+-		_TempIdTable.insert(pair<TSStringId,string>::pair(_IdCounter,str));
++		_TempStringTable.insert(pair<string,TSStringId>(str,_IdCounter));
++		_TempIdTable.insert(pair<TSStringId,string>(_IdCounter,str));
+ 		_IdCounter++;
+ 		return _IdCounter-1;
+ 	}
+Index: nel-0.7.0/src/pacs/global_retriever.h
+===================================================================
+--- nel-0.7.0.orig/src/pacs/global_retriever.h	2010-02-20 16:52:16.000000000 +0100
++++ nel-0.7.0/src/pacs/global_retriever.h	2010-02-19 12:21:36.000000000 +0100
+@@ -85,7 +85,7 @@
+ 		 * Creates a CGlobalPosition from an instanceId and a local position.
+ 		 */
+ 		CGlobalPosition(sint32 instanceId=-1,
+-					   const CLocalRetriever::CLocalPosition &localPosition=CLocalRetriever::CLocalPosition::CLocalPosition())
++					   const CLocalRetriever::CLocalPosition &localPosition=CLocalRetriever::CLocalPosition())
+ 		{
+ 			InstanceId=instanceId;
+ 			LocalPosition=localPosition;

Added: packages/trunk/nel/debian/patches/prepare_documentation.patch
===================================================================
--- packages/trunk/nel/debian/patches/prepare_documentation.patch	                        (rev 0)
+++ packages/trunk/nel/debian/patches/prepare_documentation.patch	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,51 @@
+Add mandatory target DoxygenDoc, installation path and disable generating of latex and xml documentation.
+Index: nel-0.7.0/CMakeLists.txt
+===================================================================
+--- nel-0.7.0.orig/CMakeLists.txt	2009-10-29 21:39:12.000000000 +0100
++++ nel-0.7.0/CMakeLists.txt	2009-10-29 21:45:43.000000000 +0100
+@@ -181,16 +181,18 @@
+ # To build the documention, you will have to enable it
+ # and then do the equivalent of "make DoxygenDoc".
+ IF(BUILD_DOCUMENTATION)
+-    IF(DOT)
+-        SET(HAVE_DOT YES)
+-    ELSE(DOT)
++#    IF(DOT)
++#        SET(HAVE_DOT YES)
++#    ELSE(DOT)
+         SET(HAVE_DOT NO)
+-    ENDIF(DOT)
++#    ENDIF(DOT)
+     # This processes our Doxyfile.in and substitutes paths to generate
+     # a final Doxyfile
+     CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/doc/Doxyfile.cmake.in ${CMAKE_BINARY_DIR}/doc/Doxyfile)
+ 
+-    ADD_CUSTOM_TARGET(DoxygenDoc ${DOXYGEN} ${CMAKE_BINARY_DIR}/doc/Doxyfile)
++    ADD_CUSTOM_TARGET(DoxygenDoc ALL ${DOXYGEN} ${CMAKE_BINARY_DIR}/doc/Doxyfile)
++
++    INSTALL(DIRECTORY ${CMAKE_BINARY_DIR}/doxygen/html/ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/libnel-doc/html/)
+ ENDIF(BUILD_DOCUMENTATION)
+ 
+ # packaging information
+Index: nel-0.7.0/doc/Doxyfile.cmake.in
+===================================================================
+--- nel-0.7.0.orig/doc/Doxyfile.cmake.in	2009-10-29 21:39:33.000000000 +0100
++++ nel-0.7.0/doc/Doxyfile.cmake.in	2009-10-12 22:30:44.000000000 +0200
+@@ -183,7 +183,7 @@
+ #---------------------------------------------------------------------------
+ # configuration options related to the LaTeX output
+ #---------------------------------------------------------------------------
+-GENERATE_LATEX         = YES
++GENERATE_LATEX         = NO
+ LATEX_OUTPUT           = latex
+ LATEX_CMD_NAME         = latex
+ MAKEINDEX_CMD_NAME     = makeindex
+@@ -214,7 +214,7 @@
+ #---------------------------------------------------------------------------
+ # configuration options related to the XML output
+ #---------------------------------------------------------------------------
+-GENERATE_XML           = yes
++GENERATE_XML           = NO
+ XML_OUTPUT             = xml
+ XML_SCHEMA             = 
+ XML_DTD                = 

Added: packages/trunk/nel/debian/patches/series
===================================================================
--- packages/trunk/nel/debian/patches/series	                        (rev 0)
+++ packages/trunk/nel/debian/patches/series	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,3 @@
+prepare_documentation.patch
+disable_log_log_file.patch
+ftbfs_gcc_4.5.patch

Added: packages/trunk/nel/debian/rules
===================================================================
--- packages/trunk/nel/debian/rules	                        (rev 0)
+++ packages/trunk/nel/debian/rules	2010-03-30 08:43:43 UTC (rev 10882)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+%:
+	dh --buildsystem=cmake --with quilt $@
+
+override_dh_strip:
+	dh_strip --dbg-package=libnel-dbg
+
+override_dh_auto_configure:
+	dh_auto_configure -- -DBUILD_DOCUMENTATION=ON -DWITH_CEGUI=ON -DWITH_TESTS=OFF -DWITH_SAMPLES=OFF -DWITH_TOOLS=OFF
+
+override_dh_install:
+	find debian/tmp/usr/share/doc/libnel-doc -type d -empty -delete
+	dh_install


Property changes on: packages/trunk/nel/debian/rules
___________________________________________________________________
Added: svn:executable
   + *




More information about the Pkg-games-commits mailing list