~ubuntu-branches/ubuntu/saucy/file-browser-applet/saucy

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2008-11-04 13:34:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081104133436-7kgxv6psv6mjnxh0
Tags: 0.6.0-0ubuntu1
* New upstream release.
 - Added context menu with a few actions (open-with, new folder here, 
   delete file/folder, create/extract archive, create CD/DVD from 
   file/folder, compile a tex file).
 - Added configuration option to make text vertical/horizontal when 
   the panel is vertical.
 - Added tooltips to configuration dialog.
 - Fixed bugs #21, #30, #34, #37, #39.
 - Plugged some memory leaks (thanks Silvio Ricardo Cordeiro).
 - Lots of code cleanup. 
* debian/control:
 - Add suggests on file-roller, brasero, and rubber 
   for new features.
 - Add Vcs-Bzr field.
 - Add versionized Build-Depend on libgtk2.0-dev (>= 2.14)

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
SET (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
58
58
SET (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
59
59
SET (CPACK_PACKAGE_VERSION_MAJOR 0)
60
 
SET (CPACK_PACKAGE_VERSION_MINOR 5)
61
 
SET (CPACK_PACKAGE_VERSION_PATCH 9)
 
60
SET (CPACK_PACKAGE_VERSION_MINOR 6)
 
61
SET (CPACK_PACKAGE_VERSION_PATCH 0)
62
62
SET (CPACK_GENERATOR TGZ)
63
63
SET (CPACK_SOURCE_PACKAGE_FILE_NAME
64
64
        "${EXEC}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
65
65
SET (CPACK_SOURCE_GENERATOR TGZ)
66
66
SET (CPACK_SOURCE_IGNORE_FILES
 
67
         "CMakeCache.txt"
 
68
         #"cmake_install.cmake"
 
69
         "${CPACK_SOURCE_PACKAGE_FILE_NAME}"
 
70
         "*.tar.gz"
 
71
         "CPack*"
 
72
         #"cmake_uninstall.cmake"
67
73
         "CMakeFiles"
 
74
         "install_manifest.txt"
68
75
         "Makefile"
 
76
         "_CPack_Packages"
 
77
         "po"
69
78
         "progress.make"
70
 
         "CPack*"
71
 
         "CMakeCache.txt"
72
 
         "cmake_install.cmake"
73
 
         #"cmake_uninstall.cmake"
74
 
         "/*.tar.gz"
75
79
         ".svn"
76
 
         "install_manifest.txt"
77
 
)
 
80
         "doc")
78
81
INCLUDE (CPack)
79
82
 
80
83
ADD_CUSTOM_TARGET (deb checkinstall -D --pkgname="${EXEC}"
89
92
 
90
93
ADD_CUSTOM_TARGET (really-clean rm -fr CMakeCache.txt
91
94
                                                                           cmake_install.cmake
 
95
                                                                           ${CPACK_SOURCE_PACKAGE_FILE_NAME}.tar.gz
 
96
                                                                           *.deb
92
97
                                                                           CPackConfig.cmake
93
98
                                                                           cmake_uninstall.cmake
94
99
                                                                           CMakeFiles
95
100
                                                                           CPackSourceConfig.cmake
96
 
                                                                           *.deb
97
101
                                                                           install_manifest.txt
98
102
                                                                           Makefile
 
103
                                                                           _CPack_Packages
99
104
                                                                           pixmaps/CMakeFiles
100
105
                                                                           pixmaps/cmake_install.cmake
101
106
                                                                           pixmaps/Makefile
102
107
                                                                           src/${EXEC}
103
108
                                                                           src/cmake_install.cmake
 
109
                                                                           src/config.h
104
110
                                                                           src/CMakeFiles
105
 
                                                                           src/Makefile)
106
 
 
 
111
                                                                           src/Makefile
 
112
                                                                           data/CMakeFiles
 
113
                                                                           data/cmake_install.cmake
 
114
                                                                           data/GNOME_FileBrowserApplet_Factory.server
 
115
                                                                           data/Makefile) 
 
116