~ubuntu-branches/ubuntu/oneiric/avidemux/oneiric-proposed

« back to all changes in this revision

Viewing changes to plugins/ADM_videoFilters/Ass/ADM_libAss/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-08-20 08:42:44 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20090820084244-bhh15xxd7x2vbcuh
Tags: 1:2.5.1+repack-0ubuntu1
* New upstream bugfix release (LP: #416066):
  - Re-enabled several video and audio encoders (regression introduced
    in 2.5.0)
  - Updated the FFmpeg libraries
  - More video encoders are now plugins
  - DV video encoder now supports more profiles
  - Fixed loading and saving issues with LAME, x264 and Xvid options
    (regression introduced in 2.5.0)
  - Fraps video decoding support
  - Lowpass-5 mode added to libavcodec deinterlacer filter plugin
  - Fixed formatting of parameters for various filters on 64-bit platforms
  - Updated libass
  - Fixed sizing of the bitrate control on various video encoder configure
    windows (regression introduced in 2.5.0)
  - Improved filter dialog for GTK+ interface
  - New navigation icons for GTK+ interface
  - Fixed the behaviour of several GTK+ open/save dialogs (regression
    introduced in 2.5.0)
  - asharp filter's Block Adaptive mode can now be disabled using the Qt
    interface
  - Re-enabled the colour chooser dialog using the Qt interface (regression
    introduced in 2.5.0)
  - GCC 4.4 support
  - Fixed issues with CMake build scripts when using multiple make jobs
    (regression introduced in 2.5.0)
* Remove debian/patches dir and drop all patches, now applied by upstream.
* Drop quilt support.
* debian/libavidemux0.install: Also install missing libraries.
* Move debian/install to debian/avidemux.install.
* debian/rules:
  - Build the internal ffmpeg version properly (thanks to Christian Marillat).
  - A bit of cleanup.
* debian/control:
  - Bump Standards-Version.
  - Update Homepage field.
  - Adjust libavidemux0 short description.
  - gtk -> GTK, qt -> QT.
  - Set myself as Maintainer.
* Repack the tarball to remove the debian/ dir provided by upstream:
  - Create debian/README.source.
  - Update debian/watch.
  - Add get-orig-source target to debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Does not seem to work without fontconfig....
 
2
 
 
3
INCLUDE(admCheckFontConfig)
 
4
INCLUDE(admCheckFreeType)
 
5
checkFontConfig()
 
6
checkFreeType()
 
7
IF(USE_FREETYPE)
 
8
 
 
9
        SET(ADM_LIB ADM_libass)
 
10
 
 
11
        SET(${ADM_LIB}_SRCS 
 
12
        ass_bitmap.c  ass.c  ass_cache.c  ass_drawing.c  ass_font.c    ass_library.c  ass_render.c  ass_utils.c
 
13
        )
 
14
    IF (FONTCONFIG_FOUND)
 
15
        ADD_DEFINITIONS(${FONTCONFIG_CFLAGS} "-DHAVE_FONTCONFIG=1" "-DCONFIG_FONTCONFIG=1")
 
16
        SET(${ADM_LIB}_SRCS  ${${ADM_LIB}_SRCS} ass_fontconfig.c)
 
17
    ENDIF (FONTCONFIG_FOUND)
 
18
        ADD_LIBRARY(${ADM_LIB} STATIC ${${ADM_LIB}_SRCS})
 
19
        ADD_DEFINITIONS(${FREETYPE2_CFLAGS} "-I${LIBICONV_INCLUDE_DIR}")
 
20
 
 
21
     
 
22
 
 
23
 
 
24
        ADD_DEFINITIONS("-DCONFIG_LIBPNG=1")
 
25
        ADD_DEFINITIONS("-DCONFIG_FREETYPE=1")
 
26
 
 
27
        IF (UNIX)
 
28
                ADD_TARGET_CFLAGS(${ADM_LIB} -fPIC)
 
29
        ENDIF (UNIX)
 
30
 
 
31
ENDIF(USE_FREETYPE)
 
32