1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00

Fix build with libetpan 1.9.4

This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-11-03 19:14:16 +00:00
parent 7c805bf4df
commit f12cf1f8d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=516588
2 changed files with 24 additions and 0 deletions

View File

@ -91,6 +91,8 @@ KEYBOARD_INDICATOR_LIB_DEPENDS= libexif.so:graphics/libexif \
libxklavier.so:x11/libxklavier
KEYBOARD_INDICATOR_CMAKE_BOOL= enable-keyboard-indicator
# libetpan 1.9.4 replaces libetpan-config with libetpan.pc
MAIL_BUILD_DEPENDS= libetpan>=1.9.4:mail/libetpan
MAIL_LIB_DEPENDS= libetpan.so:mail/libetpan
MAIL_CMAKE_BOOL= enable-mail

View File

@ -0,0 +1,22 @@
--- CMakeLists.txt.orig 2015-02-19 16:13:47 UTC
+++ CMakeLists.txt
@@ -978,9 +978,8 @@ set (with_mail no)
# find the compilation flags
enable_if_not_defined (enable-mail)
if (enable-mail)
- find_program (LIBETPAN_CONFIG_EXECUTABLE libetpan-config)
execute_process(
- COMMAND ${LIBETPAN_CONFIG_EXECUTABLE} --cflags
+ COMMAND pkg-config libetpan --cflags
OUTPUT_VARIABLE MAIL_PACKAGE_CFLAGS)
if (NOT "${MAIL_PACKAGE_CFLAGS}" STREQUAL "" AND NOT "${MAIL_PACKAGE_CFLAGS}" STREQUAL "\n") # if there is a problem with the previous, we don't want to have a lot of errors
STRING (REGEX REPLACE "\n" "" TMP_VARIABLE "${MAIL_PACKAGE_CFLAGS}") # to not skip the last option
@@ -993,7 +992,7 @@ if (enable-mail)
endif()
# find the link flags
execute_process(
- COMMAND ${LIBETPAN_CONFIG_EXECUTABLE} --libs
+ COMMAND pkg-config libetpan --libs
OUTPUT_VARIABLE MAIL_PACKAGE_LIBS)
if (NOT "${MAIL_PACKAGE_LIBS}" STREQUAL "")
STRING (REGEX REPLACE "\n" "" MAIL_PACKAGE_LIBS "${MAIL_PACKAGE_LIBS}")