Revision: 118358 https://trac.macports.org/changeset/118358 Author: devans@macports.org Date: 2014-03-31 15:26:11 -0700 (Mon, 31 Mar 2014) Log Message: ----------- gedit-plugins: update m4/intltool.m4 and autoreconf to fix intltool configuration, fix python variants, disable plugins that don't build with current port versions, drop unused dependencies. Modified Paths: -------------- trunk/dports/gnome/gedit-plugins/Portfile Modified: trunk/dports/gnome/gedit-plugins/Portfile =================================================================== --- trunk/dports/gnome/gedit-plugins/Portfile 2014-03-31 22:21:24 UTC (rev 118357) +++ trunk/dports/gnome/gedit-plugins/Portfile 2014-03-31 22:26:11 UTC (rev 118358) @@ -27,12 +27,22 @@ depends_lib port:gconf \ port:gedit \ - port:vte \ - port:gucharmap -configure.args --disable-schemas-install +# update m4/intltool.m4 and autoreconf +pre-configure { + copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4 +} + +use_autoreconf yes +autoreconf.args -fvi + +configure.args --disable-schemas-install \ + --disable-python \ + --with-plugins=bracketcompletion,codecomment,colorpicker,drawspaces,joinlines,multiedit,textsize,showtabbar,sessionsaver,smartspaces,wordcompletion + variant python26 conflicts python27 description {Use python 2.6} { + configure.args-replace --disable-python --enable-python configure.python ${prefix}/bin/python2.6 depends_lib-append port:py26-pygtksourceview \ port:dbus-python26 @@ -41,6 +51,7 @@ } variant python27 conflicts python26 description {Use python 2.7} { + configure.args-replace --disable-python --enable-python configure.python ${prefix}/bin/python2.7 depends_lib-append port:py27-pygtksourceview \ port:dbus-python27