pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/chat/pidgin



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Fri Jan 20 14:09:10 UTC 2023

Modified Files:
        pkgsrc/chat/pidgin: PLIST options.mk

Log Message:
pidgin: Fix build on Darwin

pkgsrc changes:
---------------
  * Remove x11 option for Darwin OPSYS since there is no guarantee that
    x11/gtk2 has been built with x11 option on this OPSYS.
  * Remove vv PLIST variable which seems useless since farstream option
    has been removed (options.mk:1.16).


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 pkgsrc/chat/pidgin/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/chat/pidgin/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/chat/pidgin/PLIST
diff -u pkgsrc/chat/pidgin/PLIST:1.27 pkgsrc/chat/pidgin/PLIST:1.28
--- pkgsrc/chat/pidgin/PLIST:1.27       Wed Jul 20 02:14:13 2022
+++ pkgsrc/chat/pidgin/PLIST    Fri Jan 20 14:09:09 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.27 2022/07/20 02:14:13 khorben Exp $
+@comment $NetBSD: PLIST,v 1.28 2023/01/20 14:09:09 triaxx Exp $
 bin/pidgin
 include/pidgin/gtkaccount.h
 include/pidgin/gtkblist-theme-loader.h
@@ -69,7 +69,6 @@ lib/pidgin/ticker.la
 lib/pidgin/timestamp.la
 lib/pidgin/timestamp_format.la
 lib/pidgin/transparency.la
-${PLIST.vv}lib/pidgin/vvconfig.la
 lib/pidgin/xmppconsole.la
 lib/pidgin/xmppdisco.la
 lib/pkgconfig/pidgin.pc

Index: pkgsrc/chat/pidgin/options.mk
diff -u pkgsrc/chat/pidgin/options.mk:1.17 pkgsrc/chat/pidgin/options.mk:1.18
--- pkgsrc/chat/pidgin/options.mk:1.17  Sat Dec 21 21:08:42 2019
+++ pkgsrc/chat/pidgin/options.mk       Fri Jan 20 14:09:09 2023
@@ -1,12 +1,16 @@
-# $NetBSD: options.mk,v 1.17 2019/12/21 21:08:42 nia Exp $
+# $NetBSD: options.mk,v 1.18 2023/01/20 14:09:09 triaxx Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.pidgin
-PKG_SUPPORTED_OPTIONS+=                dbus debug gtkspell x11
-PKG_SUGGESTED_OPTIONS+=                dbus gtkspell x11
+PKG_SUPPORTED_OPTIONS+=                dbus debug gtkspell
+PKG_SUGGESTED_OPTIONS+=                dbus gtkspell
+.if ${OPSYS} != "Darwin"
+PKG_SUPPORTED_OPTIONS+=                x11
+PKG_SUGGESTED_OPTIONS+=                x11
+.endif
 
 .include "../../mk/bsd.options.mk"
 
-PLIST_VARS+=           dbus vv x11
+PLIST_VARS+=           dbus x11
 
 .if !empty(PKG_OPTIONS:Mdbus)
 CONFIGURE_ARGS+=       --enable-dbus



Home | Main Index | Thread Index | Old Index