[134478] users/devans/GNOME-3/unstable/dports/gnome/folks
devans at macports.org
devans at macports.org
Thu Mar 26 18:38:24 PDT 2015
Revision: 134478
https://trac.macports.org/changeset/134478
Author: devans at macports.org
Date: 2015-03-26 18:38:24 -0700 (Thu, 26 Mar 2015)
Log Message:
-----------
GNOME-3/unstable: folks, various build fixes, dependencies, reconfigure using autogen.sh for intltool 0.51 compatibility.
Modified Paths:
--------------
users/devans/GNOME-3/unstable/dports/gnome/folks/Portfile
Added Paths:
-----------
users/devans/GNOME-3/unstable/dports/gnome/folks/files/autogen.sh
Modified: users/devans/GNOME-3/unstable/dports/gnome/folks/Portfile
===================================================================
--- users/devans/GNOME-3/unstable/dports/gnome/folks/Portfile 2015-03-27 01:29:56 UTC (rev 134477)
+++ users/devans/GNOME-3/unstable/dports/gnome/folks/Portfile 2015-03-27 01:38:24 UTC (rev 134478)
@@ -28,32 +28,31 @@
sha256 7f6306344f305538ffda263b1085bdcb7039ec0551825dd503f6a3a18cb73061
depends_build port:pkgconfig \
- port:intltool
+ port:intltool \
+ port:autoconf \
+ port:automake \
+ port:libtool
-# dependency on evolution-data-server for libebook required even if not building +eds
-
depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \
port:dbus-glib \
- port:evolution-data-server \
port:libgee \
- port:telepathy-glib \
- port:zeitgeist \
port:libsocialweb \
port:libxml2 \
- port:vala
+ port:readline \
+ port:telepathy-glib \
+ port:zeitgeist \
patchfiles patch-disable-dummy-backend.diff
gobject_introspection yes
-# update m4/intltool.m4 and autoreconf
+# reconfigure using autogen.sh for intltool 0.51 compatibility
-pre-configure {
- copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4
+post-patch {
+ xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
}
-use_autoreconf yes
-autoreconf.args -fvi
+configure.cmd ./autogen.sh
configure.args --disable-eds-backend \
--disable-bluez-backend \
@@ -62,10 +61,9 @@
--enable-telepathy-backend \
--enable-zeitgeist \
--disable-tracker-backend \
+ --disable-modular-tests \
--enable-import-tool \
- --enable-vala \
--enable-inspect-tool \
- --disable-tests \
--disable-silent-rules \
--disable-fatal-warnings \
--disable-schemas-compile
@@ -76,15 +74,11 @@
depends_lib-append port:evolution-data-server
configure.args-delete --disable-eds-backend
configure.args-append --enable-eds-backend
-}
-# for now don't build +eds by default due to runtime problems
-# with the eds backend
-# default_variants +eds
-
# port evolution-data-server -> nss is not universal
-universal_variant no
+ universal_variant no
+}
post-activate {
system "${prefix}/bin/glib-compile-schemas ${prefix}/share/glib-2.0/schemas"
Added: users/devans/GNOME-3/unstable/dports/gnome/folks/files/autogen.sh
===================================================================
--- users/devans/GNOME-3/unstable/dports/gnome/folks/files/autogen.sh (rev 0)
+++ users/devans/GNOME-3/unstable/dports/gnome/folks/files/autogen.sh 2015-03-27 01:38:24 UTC (rev 134478)
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+intltoolize --force --copy --automake
+autoreconf -i -f -v
+
+if test -z "$NOCONFIGURE"; then
+ run_configure=true
+ for arg in $*; do
+ case $arg in
+ --no-configure)
+ run_configure=false
+ ;;
+ *)
+ ;;
+ esac
+ done
+else
+ run_configure=false
+fi
+
+if test $run_configure = true; then
+ ./configure "$@"
+fi
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150326/3a5f275e/attachment-0001.html>
More information about the macports-changes
mailing list