diff options
author | Timur I. Bakeyev <timur@FreeBSD.org> | 2008-07-15 02:53:29 +0000 |
---|---|---|
committer | Timur I. Bakeyev <timur@FreeBSD.org> | 2008-07-15 02:53:29 +0000 |
commit | aa9f6ea2c00471586a087fc0fb31f8f21ec7686d (patch) | |
tree | dda5c01b3a8eeff09d2841effe86dd4581b470f2 /multimedia/avidemux2/files/patch-CMakeLists.txt | |
parent | - Fix error in procname path (diff) |
Upgrade avidemux2 to the 2.4.2 version and switch to CMake
PR: ports/125508
Submitted by: timur@FreeBSD.org
Approved by: amistry@am-productions.biz (maintainer)
Diffstat (limited to 'multimedia/avidemux2/files/patch-CMakeLists.txt')
-rw-r--r-- | multimedia/avidemux2/files/patch-CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/multimedia/avidemux2/files/patch-CMakeLists.txt b/multimedia/avidemux2/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..0ef654cda90a --- /dev/null +++ b/multimedia/avidemux2/files/patch-CMakeLists.txt @@ -0,0 +1,27 @@ +--- ./CMakeLists.txt.orig 2007-10-14 13:27:59.000000000 +0200 ++++ ./CMakeLists.txt 2008-07-10 17:16:26.000000000 +0200 +@@ -101,11 +101,15 @@ + if(NOT WIN32) + MESSAGE(STATUS "<Checking for X11>") + MESSAGE(STATUS "<******************************>") ++ if(NO_X11) ++ message(status "<disabled per request>") ++ else(NO_X11) + include(FindX11) + if(NOT X11_FOUND) + MESSAGE(FATAL_ERROR "Could not find X11") + endif(NOT X11_FOUND) + MESSAGE(STATUS OK) ++ endif(NO_X11) + endif(NOT WIN32) + #************************************************** + # Search for GLIB through PKG-Config +@@ -135,7 +139,7 @@ + IF(NOT GTK_CFLAGS) + MESSAGE(STATUS "Could not find GTK - cannot compile avidemux2_gtk here") + ELSE(NOT GTK_CFLAGS) +- SET(GTK_FOUND TRUE) ++ SET(GTK_FOUND "YES") + MESSAGE(STATUS OK) + ENDIF(NOT GTK_CFLAGS) + endif(NO_GTK) |