diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-11-30 19:09:20 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-11-30 19:09:20 +0000 |
commit | 3693dae288b8ca68cefa6cfc5fc67d8ca0d3f1d4 (patch) | |
tree | e46e443c72748b41849226b0950f40d2cf2132ad | |
parent | textproc/libxml2: ship patches via files/ due to gitlab (diff) |
devel/kf5-solid: add new option IMBOILE
- users who compiled devel/kf5-solid in an unclean environment where
either of the two dependencies was istalled would get there solid
libraries linked against those, but the dependency not tracked.
- to allow for sane packages in those environment optionify it in a new
default off option.
PR: 251492
Submitted by: VVD <vvd@unislabs.com>
-rw-r--r-- | devel/kf5-solid/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/devel/kf5-solid/Makefile b/devel/kf5-solid/Makefile index fe567abdf050..a79dced10813 100644 --- a/devel/kf5-solid/Makefile +++ b/devel/kf5-solid/Makefile @@ -15,4 +15,12 @@ USE_QT= concurrent core dbus declarative gui linguisttools \ network testlib widgets xml \ buildtools_build qmake_build +OPTIONS_DEFINE= IMOBILE + +IMOBILE_DESC= Apple iPhone/iPod Touch support +IMOBILE_LIB_DEPENDS= libimobiledevice.so:comms/libimobiledevice \ + libplist.so:devel/libplist +IMOBILE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IMobileDevice \ + CMAKE_DISABLE_FIND_PACKAGE_PList + .include <bsd.port.mk> |