gnu: pidgin: Enable support for Tk.
* gnu/packages/messaging.scm (pidgin) [inputs]: Add tk. [arguments]<#:configure-flags>[--with-tkconfig]: New flag. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>master
parent
823567803f
commit
f0e429a218
|
@ -786,7 +786,8 @@ authentication.")
|
||||||
("silc" ,silc-toolkit)
|
("silc" ,silc-toolkit)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
("startup-notification" ,startup-notification)
|
("startup-notification" ,startup-notification)
|
||||||
("tcl" ,tcl)))
|
("tcl" ,tcl)
|
||||||
|
("tk" ,tk)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("glib" ,glib)))
|
`(("glib" ,glib)))
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -795,7 +796,6 @@ authentication.")
|
||||||
"--disable-gtkspell"
|
"--disable-gtkspell"
|
||||||
;; "--enable-gevolution"
|
;; "--enable-gevolution"
|
||||||
"--enable-cap"
|
"--enable-cap"
|
||||||
"--disable-tcl"
|
|
||||||
"--enable-mono"
|
"--enable-mono"
|
||||||
"--disable-vv" ; XXX remove when we have farstream and gstreamer
|
"--disable-vv" ; XXX remove when we have farstream and gstreamer
|
||||||
"--disable-gstreamer" ; XXX patches needed to support gstreamer-1.0
|
"--disable-gstreamer" ; XXX patches needed to support gstreamer-1.0
|
||||||
|
@ -805,6 +805,9 @@ authentication.")
|
||||||
"/include")
|
"/include")
|
||||||
(string-append "--with-tclconfig="
|
(string-append "--with-tclconfig="
|
||||||
(assoc-ref %build-inputs "tcl")
|
(assoc-ref %build-inputs "tcl")
|
||||||
|
"/lib")
|
||||||
|
(string-append "--with-tkconfig="
|
||||||
|
(assoc-ref %build-inputs "tk")
|
||||||
"/lib"))))
|
"/lib"))))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list
|
(list
|
||||||
|
|
Reference in New Issue