~ubuntu-branches/ubuntu/trusty/kubuntu-notification-helper/trusty

« back to all changes in this revision

Viewing changes to build/po/ar/cmake_install.cmake

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Harald Sitter, Rohan Garg
  • Date: 2014-02-20 16:22:31 UTC
  • Revision ID: package-import@ubuntu.com-20140220162231-7aowppfppdl6h7uq
Tags: 14.04ubuntu6
[ Harald Sitter ]
* Prevent events from spwaning more than one notifier item at a time.
  Notifications are still issued whenever show() is called as they serve
  a reminding purpose. LP: #1275427
* Drop ubuntu-release-upgrader-qt depends (upgrade handling moved to muon)
* Implement L10nEvent notifying the user once (after login) if the language
  support is incomplete and uses qapt-batch to complete it.
  + Add new build dep on libkubuntu to do completeness checks.
* Event::show now only manually dispatches a KNotification iff tray icons
  are deactivated. KSNI has a dedicated showMessage function that handles
  issuing a notification for a present KSNI, this also avoids pixmap passing
  in default installation giving an overall better quality.
* Bump KNotification pixmap size to 32x32 (from 22x22) to reduce amount of
  ugly scaling artifacts (going up or down from 32 is more reasonable than
  for example 22 to 64 - as would be the case with a plasma notification).
* Drop unused kcm_notificationhelper-es.po (supposedly the export from
  launchpad went wrong in 13.10)
* Change module.cpp init list to c++11 'nullptr' and fix indention level

[ Rohan Garg ]
* Add a DriverEvent class to show notifications when the system has extra
  drivers that can be installed.
  + Misc. bug fixes 
    - LP: #128208 , LP: #1282082 , LP: #1282085 , LP: #1282471 ,
      LP: #1282468 , LP: #1282074 , LP: #1282462, LP: #1282095 ,
      LP: #1282464
* Add runtime dep on kubuntu-driver-manager

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Install script for directory: /home/shadeslayer/sauce/Kubuntu/kubuntu-notification-helper/po/ar
 
2
 
 
3
# Set the install prefix
 
4
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
 
5
  SET(CMAKE_INSTALL_PREFIX "/usr")
 
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
  list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
 
37
   "/usr/share/locale/ar/LC_MESSAGES/notificationhelper.mo")
 
38
  IF (CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
 
39
    message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
 
40
  ENDIF (CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
 
41
  IF (CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
 
42
    message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
 
43
  ENDIF (CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
 
44
FILE(INSTALL DESTINATION "/usr/share/locale/ar/LC_MESSAGES" TYPE FILE RENAME "notificationhelper.mo" FILES "/home/shadeslayer/sauce/Kubuntu/kubuntu-notification-helper/build/po/ar/notificationhelper.gmo")
 
45
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
46