aboutsummaryrefslogtreecommitdiffstats
path: root/CPackConfig.txt
AgeCommit message (Collapse)AuthorFilesLines
2016-11-21cmake: add creation of version.conf to be shipped in tarball.Dario Lombardo1-2/+12
Change-Id: I2bb66844b29cd4805d201891ffba342d26ee475f Reviewed-on: https://code.wireshark.org/review/18731 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Tested-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Dario Lombardo <lomato@gmail.com>
2016-11-19cpack: improve source tarball generation by adding the "dist" target.Dario Lombardo1-0/+3
The source package must not contain compiled objects. If the build dir is under the source tree, it is included too. By excluding /build/ we avoid to add every build dir, but if the build dir doesn't contain build the problem still persist. Change-Id: I75021565c058c1a93945f43b9b49cb3d04c960d4 Reviewed-on: https://code.wireshark.org/review/18729 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Dario Lombardo <lomato@gmail.com>
2016-11-09CMake: Use xz generator with cpackJoão Valverde1-2/+8
We already do so with autotools. Change-Id: I0d7ea052ee19a42d16e82134f2f7188b3a19ee1e Reviewed-on: https://code.wireshark.org/review/18727 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Dario Lombardo <lomato@gmail.com> Tested-by: Dario Lombardo <lomato@gmail.com>
2016-11-09CMake: fix cpack archive name to include versionDario Lombardo1-20/+26
CPACK_PACKAGE_VERSION is used before setting its value. Remove spurious CPACK_SYSTEM_NAME usage. Before: CPack: - package: wireshark/build-test/wireshark--.tar.bz2 generated. After CPack: - package: wireshark/build-test/wireshark-2.3.0.tar.bz2 generated. Change-Id: I6f12017113f64b9c759a3fbd930cb3ee0807811d Reviewed-on: https://code.wireshark.org/review/18669 Reviewed-by: João Valverde <j@v6e.pt> Tested-by: João Valverde <j@v6e.pt> Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2016-01-01CPack: WiX updates.Gerald Combs1-11/+36
WiX prefers rich text license files. Add an RTF version of the GPLv2. It was created by converting the "standalone HTML" version of the license at http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html to RTF using Pandoc 1.11. Start splitting CPackConfig.txt into Win32 and non-Win32 sections. Add a WiX section. Change-Id: Ifcb233053c8a2158f087b69c69de7df869af65aa Reviewed-on: https://code.wireshark.org/review/12980 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-12-30Revert "CPack: Use COPYTING.txt as the license file."Gerald Combs1-1/+2
Looks like we need to fix a dependency. This reverts commit 61cde08a95ddbeaeda32111f4469cbfc48dc95c3. Change-Id: I490b826f20fbefbf169b63816916bfe784609610 Reviewed-on: https://code.wireshark.org/review/12956 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-12-30CPack: Use COPYTING.txt as the license file.Gerald Combs1-2/+1
Otherwise The WiX generator complains with CPack Error: unsupported WiX License file extension '' Change-Id: I4f3aeaf1babaf814c05cc96c4d07a84bd9dbc2a5 Reviewed-on: https://code.wireshark.org/review/12955 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2014-10-09CMake: Build an application bundle (Wireshark.app) on OS X.Gerald Combs1-11/+7
Add an ENABLE_APPLICATION_BUNDLE option which is enabled by default on OS X and disabled elsewhere. The bundle is currently bare-bones and only contains the main executables, Info.plist, and application icon. Capitalize the main application name when ENABLE_APPLICATION_BUNDLE is set and on Windows. Start updating CPackConfig.txt for OS X packaging. To do: - Add supporting libraries and frameworks. - Make the bundle standalone. I.e. call FIXUP_BUNDLE or replicate the relevant parts of osx-app.sh Change-Id: I4e25abd3b8cbe121ec8615b98706a15c58812cdb Reviewed-on: https://code.wireshark.org/review/4577 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash) Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd Reviewed-on: https://code.wireshark.org/review/881 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-03-05Binary and source tarballs should be compressed with bzip2 onlyJörg Mayer1-2/+2
(xz is not an options that cmake offers). svn path=/trunk/; revision=41360
2011-09-01From John Bradshaw:Anders Broman1-1/+1
Spelling fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6296 svn path=/trunk/; revision=38834
2010-05-15- Move cmake options into their own file, making it easier toJörg Mayer1-3/+46
use a locally modified version of the stuff - Some (still preliminary) CPack changes - Add -fexcess-precision=fast (configure.in and CmakeLists.txt) to the compileflags (new gcc-4.5 feature to maintain backward compatibility with gcc-4.4 and IMO we don't need the slower but more exact implementation gcc 4.5 offers. svn path=/trunk/; revision=32823
2010-03-07- Derive Wireshark version from configure.in for now.Jörg Mayer1-4/+4
Allow to overide that version in CMakefile.txt - Minor update to README.cmake - Turn off GTK_DEBUG svn path=/trunk/; revision=32139
2009-12-29- Beginnings of cmake in docbook directoryJörg Mayer1-0/+42
- Add note about "make help" - Move beginnings of packaging into its own file: CPackConfig.txt svn path=/trunk/; revision=31379