~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_userInterfaces/ADM_QT4/ADM_dialogFactory/cmake_install.cmake

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-01-23 14:24:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080123142455-wznqmv3teznzpmjb
Tags: 1:2.4.0-0.3ubuntu1
* Merged new upstream release from debian-multimedia.org
  (LP: #178845, LP: #180393), remaining Ubuntu changes:
  + debian/control:
    - set maintainer fields per Ubuntu policy.
    - removed libamrnb-dev, not in Ubuntu and most likely
      will never be (due to being proprietary software).
    - build against current libx264-dev (LP: #177082).
    - build against current libfaac-dev (LP: #181389).
    - build-depend on chrpath to strip rpath from avidemux2_qt4.
  + debian/rules: strip rpath from avidemux2_qt4.
  + debian/source.lintian-overrides: re-added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Install script for directory: /src/avidemux_2.4_preview3/avidemux/ADM_userInterfaces/ADM_QT4/ADM_dialogFactory
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 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 "Release")
16
 
  ENDIF(BUILD_TYPE)
17
 
  MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
18
 
ENDIF(NOT 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