~ubuntu-branches/ubuntu/utopic/sakura/utopic-proposed

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio, Norbert Preining, Andrew Starr-Bochicchio
  • Date: 2011-08-02 14:33:44 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20110802143344-k39w3vfi2ltm2izk
Tags: 2.4.2-1
[ Norbert Preining ]
* Change the vcs locations in debian/control.

[ Andrew Starr-Bochicchio ]
* New upstream release.
* debian/control:
 - Bump Standards-Version to 3.9.2, no changes needed.
 - Bump libgtk2.0-dev and libvte-dev build deps.
 - Update Vcs-Browser field again due to Aloith changes.  

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
ENDIF (COMMAND CMAKE_POLICY)    
5
5
PROJECT (sakura)
6
6
SET (AUTHOR "David Gómez Espinosa" INTERNAL "Author")
7
 
SET (VERSION "2.3.8")
 
7
SET (VERSION "2.4.2")
8
8
 
9
9
 
10
10
INCLUDE (FindPkgConfig)
13
13
        MESSAGE (FATAL_ERROR "pkg-config not found...")
14
14
ENDIF (NOT PKG_CONFIG_FOUND)
15
15
 
16
 
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.14)
 
16
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.20)
17
17
IF (NOT GLIB_FOUND)
18
 
        MESSAGE(FATAL_ERROR "You don't seem to have glib >= 2.14 development libraries installed...")
 
18
        MESSAGE(FATAL_ERROR "You don't seem to have glib >= 2.20 development libraries installed...")
19
19
ENDIF (NOT GLIB_FOUND)
20
20
 
21
 
pkg_check_modules (GTK REQUIRED gtk+-2.0>=2.10)
 
21
pkg_check_modules (GTK REQUIRED gtk+-2.0>=2.16)
22
22
IF (NOT GTK_FOUND)
23
 
        MESSAGE(FATAL_ERROR "You don't seem to have gtk >= 2.10 development libraries installed...")
 
23
        MESSAGE(FATAL_ERROR "You don't seem to have gtk >= 2.16 development libraries installed...")
24
24
ENDIF (NOT GTK_FOUND)
25
25
 
26
 
pkg_check_modules (VTE REQUIRED vte>=0.16.15)
 
26
pkg_check_modules (VTE REQUIRED vte>=0.26)
27
27
IF (NOT VTE_FOUND)
28
 
        MESSAGE(FATAL_ERROR "You don't seem to have vte >= 0.16.15 development libraries installed...")
 
28
        MESSAGE(FATAL_ERROR "You don't seem to have vte >= 0.26 development libraries installed...")
29
29
ENDIF (NOT VTE_FOUND)
30
30
 
31
31
FIND_PROGRAM(POD2MAN pod2man)