Author: vivicoder-guest Date: 2013-08-18 15:38:23 +0000 (Sun, 18 Aug 2013) New Revision: 14504
Added: packages/trunk/dccnitghtmare/debian/watch Modified: packages/trunk/dccnitghtmare/debian/control packages/trunk/dccnitghtmare/debian/dccnitghtmare.install packages/trunk/dccnitghtmare/debian/patches/data_path packages/trunk/dccnitghtmare/debian/patches/tools Log: Fixes the control file and adds the watch file Modified: packages/trunk/dccnitghtmare/debian/control =================================================================== --- packages/trunk/dccnitghtmare/debian/control 2013-08-17 22:37:35 UTC (rev 14503) +++ packages/trunk/dccnitghtmare/debian/control 2013-08-18 15:38:23 UTC (rev 14504) @@ -2,20 +2,31 @@ Section: games Priority: optional Maintainer: Debian Games Team <[email protected]> -Uploaders: Miriam Ruiz <[email protected]> -Build-Depends: debhelper (>= 7), quilt, cmake, - libcal3d12-dev, libopenal-dev, libsdl1.2-dev, libsdl-image1.2-dev, - libsdl-ttf2.0-dev, libvorbis-dev, libgl1-mesa-dev -Standards-Version: 3.9.3 +Uploaders: Vincent Prat <[email protected]>, + Miriam Ruiz <[email protected]> +Build-Depends: cmake, + debhelper (>= 7), + libcal3d12-dev, + libgl1-mesa-dev, + libopenal-dev, + libsdl-image1.2-dev, + libsdl-ttf2.0-dev, + libsdl1.2-dev, + libvorbis-dev, + quilt +Standards-Version: 3.9.4 Homepage: http://dnt.dnteam.org/ Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/dccnitghtmare/ Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/dccnitghtmare/ Package: dccnitghtmare Architecture: any -Depends: dccnitghtmare (= ${source:Version}), ${shlibs:Depends}, ${misc:Depends} -Suggests: dccnitghtmare-dbg (= ${binary:Version}) -Description: 3D single player RPG in a satirical post-apocalyptical world +Depends: dccnitghtmare-data (= ${source:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Suggests: dccnitghtmare-dbg (= ${binary:Version}), + dccnitghtmare-tools (= ${binary:Version}) +Description: Post-apocalyptical 3D single player RPG DccNiTghtmare (aka DNT) is a project to make a Free (as in free speech) 3D single player RPG in a satirical post-apocalyptical world. @@ -23,18 +34,19 @@ Section: debug Priority: extra Architecture: any -Depends: dccnitghtmare (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} -Description: 3D single player RPG - debug +Depends: dccnitghtmare (= ${binary:Version}), + ${misc:Depends} +Description: Post-apocalyptical 3D single player RPG - debug DccNiTghtmare (aka DNT) is a project to make a Free (as in free speech) 3D single player RPG in a satirical post-apocalyptical world. . This package contains the debugging symbols. Package: dccnitghtmare-data -Architecture: any +Architecture: all Depends: ${misc:Depends} -Recommends: dccnitghtmare -Description: 3D single player RPG in a satirical post-apocalyptical world +Recommends: dccnitghtmare (= ${binary:Version}) +Description: Post-apocalyptical 3D single player RPG - game data DccNiTghtmare (aka DNT) is a project to make a Free (as in free speech) 3D single player RPG in a satirical post-apocalyptical world. . @@ -42,8 +54,10 @@ Package: dccnitghtmare-tools Architecture: any -Depends: dccnitghtmare-data (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} -Description: 3D single player RPG in a satirical post-apocalyptical world +Depends: dccnitghtmare-data (= ${source:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Description: Post-apocalyptical 3D single player RPG - development tools DccNiTghtmare (aka DNT) is a project to make a Free (as in free speech) 3D single player RPG in a satirical post-apocalyptical world. . Modified: packages/trunk/dccnitghtmare/debian/dccnitghtmare.install =================================================================== --- packages/trunk/dccnitghtmare/debian/dccnitghtmare.install 2013-08-17 22:37:35 UTC (rev 14503) +++ packages/trunk/dccnitghtmare/debian/dccnitghtmare.install 2013-08-18 15:38:23 UTC (rev 14504) @@ -1,4 +1,4 @@ +debian/*.desktop usr/share/applications/ debian/*.png usr/share/pixmaps/ debian/*.xpm usr/share/pixmaps/ -debian/*.desktop usr/share/applications/ debian/tmp/usr/local/bin/dccnitghtmare usr/games/ Modified: packages/trunk/dccnitghtmare/debian/patches/data_path =================================================================== --- packages/trunk/dccnitghtmare/debian/patches/data_path 2013-08-17 22:37:35 UTC (rev 14503) +++ packages/trunk/dccnitghtmare/debian/patches/data_path 2013-08-18 15:38:23 UTC (rev 14504) @@ -10,3 +10,25 @@ set(DATADIR ${CMAKE_INSTALL_PREFIX}/share) set(LOCALEDIR ${CMAKE_INSTALL_PREFIX}/share/locale) set(LOCALE_DIR share/locale) +--- a/src/app/partEditor/editor.cpp ++++ b/src/app/partEditor/editor.cpp +@@ -202,7 +202,7 @@ + fileLoading = load; + fileWindow = gui->insertWindow(200,100,460,285,"File"); + fileSelector = fileWindow->getObjectsList()->insertFileSel(5,18,load, +- "../data/particles/"); ++ "/usr/share/dccnitghtmare/data/particles/"); + fileSelector->setFilter(".par"); + if( (!fileLoading) && (!curFileName.empty()) ) + { +--- a/src/app/partEditor/partwindow.cpp ++++ b/src/app/partEditor/partwindow.cpp +@@ -58,7 +58,7 @@ + + textureWindow = gui->insertWindow(200,100,460,285,"File"); + fileSelector = textureWindow->getObjectsList()->insertFileSel(5,18, true, +- "../data/particles/"); ++ "/usr/share/dccnitghtmare/data/particles/"); + fileSelector->setFilter(".png"); + /*fileSelector->setFileName(part->getTextureFileName());*/ + textureWindow->setAttributes(false,true,false,false); Modified: packages/trunk/dccnitghtmare/debian/patches/tools =================================================================== --- packages/trunk/dccnitghtmare/debian/patches/tools 2013-08-17 22:37:35 UTC (rev 14503) +++ packages/trunk/dccnitghtmare/debian/patches/tools 2013-08-18 15:38:23 UTC (rev 14504) @@ -11,25 +11,3 @@ install(DIRECTORY ./data DESTINATION share/${PACKAGE}) endif(NOT (${CREATE_BUNDLE} STREQUAL "ON")) ---- a/src/app/partEditor/editor.cpp -+++ b/src/app/partEditor/editor.cpp -@@ -202,7 +202,7 @@ - fileLoading = load; - fileWindow = gui->insertWindow(200,100,460,285,"File"); - fileSelector = fileWindow->getObjectsList()->insertFileSel(5,18,load, -- "../data/particles/"); -+ "/usr/share/dccnitghtmare/data/particles/"); - fileSelector->setFilter(".par"); - if( (!fileLoading) && (!curFileName.empty()) ) - { ---- a/src/app/partEditor/partwindow.cpp -+++ b/src/app/partEditor/partwindow.cpp -@@ -58,7 +58,7 @@ - - textureWindow = gui->insertWindow(200,100,460,285,"File"); - fileSelector = textureWindow->getObjectsList()->insertFileSel(5,18, true, -- "../data/particles/"); -+ "/usr/share/dccnitghtmare/data/particles/"); - fileSelector->setFilter(".png"); - /*fileSelector->setFileName(part->getTextureFileName());*/ - textureWindow->setAttributes(false,true,false,false); Added: packages/trunk/dccnitghtmare/debian/watch =================================================================== --- packages/trunk/dccnitghtmare/debian/watch (rev 0) +++ packages/trunk/dccnitghtmare/debian/watch 2013-08-18 15:38:23 UTC (rev 14504) @@ -0,0 +1,2 @@ +version=3 +http://sf.net/dnt/dnt-([\d\.]+)\.tar\.bz2 _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

