~ubuntu-branches/ubuntu/lucid/konversation/lucid-updates

« back to all changes in this revision

Viewing changes to po/fr/cmake_install.cmake

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2009-05-19 09:44:08 UTC
  • mfrom: (1.16.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20090519094408-yi3yv1v4zzbsu2nx
Tags: 1.1.75+svn969816-1
* New upstream development snapshot:
  - Last Changed Author: tjmchenry
  - Last Changed Rev: 969816
  - Last Changed Date: 2009-05-19 04:45:54 +0300
  - Translations as of Tue, 19 May 2009 09:21:13 are included.
* Update download URL in debian/copyright.
* Update Debian menu icons.
* Update konversation.install: install translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Install script for directory: /home/modax/src/konversation/konversation/po/fr
 
2
 
 
3
# Set the install prefix
 
4
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
 
5
  SET(CMAKE_INSTALL_PREFIX "/usr/local")
 
6
ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
 
7
STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
 
8
 
 
9
# Set the install configuration name.
 
10
IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
 
11
  IF(BUILD_TYPE)
 
12
    STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
 
13
           CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
 
14
  ELSE(BUILD_TYPE)
 
15
    SET(CMAKE_INSTALL_CONFIG_NAME "RelWithDebInfo")
 
16
  ENDIF(BUILD_TYPE)
 
17
  MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
 
18
ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
 
19
 
 
20
# Set the component getting installed.
 
21
IF(NOT CMAKE_INSTALL_COMPONENT)
 
22
  IF(COMPONENT)
 
23
    MESSAGE(STATUS "Install component: \"${COMPONENT}\"")
 
24
    SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
 
25
  ELSE(COMPONENT)
 
26
    SET(CMAKE_INSTALL_COMPONENT)
 
27
  ENDIF(COMPONENT)
 
28
ENDIF(NOT CMAKE_INSTALL_COMPONENT)
 
29
 
 
30
# Install shared libraries without execute permission?
 
31
IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
 
32
  SET(CMAKE_INSTALL_SO_NO_EXE "1")
 
33
ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
 
34
 
 
35
IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
36
  FILE(INSTALL DESTINATION "/usr/local/share/locale/fr/LC_MESSAGES" TYPE FILE RENAME "konversation.mo" FILES "/home/modax/src/konversation/konversation/po/fr/konversation.gmo")
 
37
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
38