diff --git a/net/pidgin/Portfile b/net/pidgin/Portfile
index 8760a70bee..9d75de2f45 100644
a
|
b
|
configure.cmd ./autogen.sh |
67 | 67 | |
68 | 68 | configure.args --disable-avahi \ |
69 | 69 | --disable-consoleui \ |
| 70 | --disable-dependency-tracking \ |
70 | 71 | --disable-farstream \ |
71 | 72 | --disable-gstreamer \ |
72 | 73 | --disable-gstreamer-interfaces \ |
73 | 74 | --disable-gtkspell \ |
74 | 75 | --disable-meanwhile \ |
75 | 76 | --disable-nm \ |
| 77 | --disable-nss \ |
| 78 | --disable-schemas-install \ |
76 | 79 | --disable-screensaver \ |
77 | 80 | --disable-silent-rules \ |
78 | 81 | --disable-sm \ |
79 | 82 | --disable-startup-notification \ |
80 | | --disable-schemas-install \ |
| 83 | --disable-tcl \ |
| 84 | --disable-tk \ |
81 | 85 | --disable-vv \ |
82 | | --disable-nss \ |
83 | 86 | --mandir=${prefix}/share/man \ |
84 | 87 | --with-python=${prefix}/bin/python2.7 \ |
85 | | --disable-dependency-tracking \ |
86 | 88 | --without-x |
87 | 89 | |
88 | 90 | configure.args-append ac_cv_path_perlpath=${prefix}/bin/perl${pbranch} |
… |
… |
configure.ldflags-append -bind_at_load |
91 | 93 | configure.cppflags-append -no-cpp-precomp |
92 | 94 | |
93 | 95 | subport libpurple { |
| 96 | revision 1 |
| 97 | |
| 98 | depends_lib-append port:tcl \ |
| 99 | port:tk |
| 100 | |
| 101 | configure.args-delete --disable-tcl \ |
| 102 | --disable-tk |
94 | 103 | configure.args-append --disable-gtkui \ |
| 104 | --disable-nls \ |
95 | 105 | --disable-pixmaps-install \ |
96 | | --disable-nls |
| 106 | --enable-tcl \ |
| 107 | --enable-tk \ |
| 108 | --with-tclconfig=${prefix}/lib \ |
| 109 | --with-tkconfig=${prefix}/lib |
| 110 | |
97 | 111 | pre-activate { |
98 | 112 | if {![catch {set installed [lindex [registry_active pidgin] 0]}]} { |
99 | 113 | set _version [lindex $installed 1] |
… |
… |
subport libpurple { |
105 | 119 | } |
106 | 120 | |
107 | 121 | subport finch { |
| 122 | revision 0 |
| 123 | |
108 | 124 | depends_lib-append port:libpurple \ |
109 | 125 | port:ncurses |
110 | 126 | |
… |
… |
subport finch { |
118 | 134 | } |
119 | 135 | |
120 | 136 | if {${subport} eq $name} { |
| 137 | revision 0 |
| 138 | |
121 | 139 | depends_lib-append port:libpurple \ |
122 | 140 | port:audiofile \ |
123 | 141 | port:gtk2 \ |