Hi,
here is patch fixing libtool issue, refusing to install e_dbus.la because
python-e_dbus Makefile.am is appending trailing / in
'pyexecedbusdir = $(pyexecdir)/' assignment
error:
arm-oe-linux-gnueabi-libtool: install: error: cannot install `e_dbus.la'
to a directory not ending in /usr/lib/python2.6/site-packages/
also use $PKG_CONFIG variable instead of calling pkg-config directly in
CYTHON_.*_INCLUDEDIR variables
Regards,
--
Martin 'JaMa' Jansa jabber: [email protected]
Index: python-e_dbus/Makefile.am
===================================================================
--- python-e_dbus/Makefile.am (revision 52538)
+++ python-e_dbus/Makefile.am (working copy)
@@ -45,7 +45,7 @@
@PYTHON_INCLUDES@ \
@EDBUS_CFLAGS@
-pyexecedbusdir = $(pyexecdir)/
+pyexecedbusdir = $(pyexecdir)
pyexecedbus_LTLIBRARIES = e_dbus.la
e_dbus_la_LIBADD = @EDBUS_LIBS@
e_dbus_la_LDFLAGS = -module -avoid-version
Index: python-elementary/configure.ac
===================================================================
--- python-elementary/configure.ac (revision 52538)
+++ python-elementary/configure.ac (working copy)
@@ -66,7 +66,7 @@
pkgconfig_elementary_requires_libs="elementary >= 0.7.0.51191 evas >= 1.0.0
eina >= 1.0.0 python-evas >= ${python_evas_version}"
AC_SUBST(pkgconfig_elementary_requires_libs)
PKG_CHECK_MODULES([ELEMENTARY], [$pkgconfig_elementary_requires_libs])
-CYTHON_ELEMENTARY_INCLUDEDIR=`pkg-config --variable=includedir "python-evas >=
${python_evas_version}"`
+CYTHON_ELEMENTARY_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas
>= ${python_evas_version}"`
AC_SUBST(CYTHON_ELEMENTARY_INCLUDEDIR)
wanted_cython_files="${srcdir}/elementary/elementary.c_elementary.pyx"
Index: python-edje/configure.ac
===================================================================
--- python-edje/configure.ac (revision 52538)
+++ python-edje/configure.ac (working copy)
@@ -66,7 +66,7 @@
pkgconfig_edje_requires_libs="edje >= 1.0.0 evas >= 1.0.0 eina >= 1.0.0
python-evas >= ${python_evas_version}"
AC_SUBST(pkgconfig_edje_requires_libs)
PKG_CHECK_MODULES([EDJE], [$pkgconfig_edje_requires_libs])
-CYTHON_EDJE_INCLUDEDIR=`pkg-config --variable=includedir "python-evas >=
${python_evas_version}"`
+CYTHON_EDJE_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >=
${python_evas_version}"`
AC_SUBST(CYTHON_EDJE_INCLUDEDIR)
wanted_cython_files="${srcdir}/edje/edje.c_edje.pyx
${srcdir}/edje/edit/c_edit.pyx"
Index: python-emotion/configure.ac
===================================================================
--- python-emotion/configure.ac (revision 52538)
+++ python-emotion/configure.ac (working copy)
@@ -66,7 +66,7 @@
pkgconfig_emotion_requires_libs="emotion >= 0.2.0.52190 evas >= 1.0.0
python-evas >= ${python_evas_version}"
AC_SUBST(pkgconfig_emotion_requires_libs)
PKG_CHECK_MODULES([EMOTION], [$pkgconfig_emotion_requires_libs])
-CYTHON_EMOTION_INCLUDEDIR=`pkg-config --variable=includedir "python-evas >=
${python_evas_version}"`
+CYTHON_EMOTION_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >=
${python_evas_version}"`
AC_SUBST(CYTHON_EMOTION_INCLUDEDIR)
wanted_cython_files="${srcdir}/emotion/emotion.c_emotion.pyx"
Index: python-ecore/configure.ac
===================================================================
--- python-ecore/configure.ac (revision 52538)
+++ python-ecore/configure.ac (working copy)
@@ -170,7 +170,7 @@
CYTHON_ECORE_EVAS_INCLUDEDIR=""
if test "x$want_ecore_evas" != "xno" -a "x${have_ecore_evas}" = "xyes"; then
wanted_cython_files="${wanted_cython_files}
${srcdir}/ecore/evas/ecore.evas.c_ecore_evas.pyx"
- CYTHON_ECORE_EVAS_INCLUDEDIR=`pkg-config --variable=includedir "python-evas
>= ${python_evas_version}"`
+ CYTHON_ECORE_EVAS_INCLUDEDIR=`$PKG_CONFIG --variable=includedir
"python-evas >= ${python_evas_version}"`
fi
AM_CONDITIONAL(WANT_ECORE_EVAS,
[test "x$want_ecore_evas" != "xno" -a "x${have_ecore_evas}" = "xyes"])
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel