add evfs.pc.in and apply that evfs patch. Same for entropy, I can't test.
So tell me if it compiles and runs fine (I guess entropy is a good test
for evfs :) )
I think that the .spec file of evfs should be updated, but I don't touch
that beast :)
Vincent
On Sun, 15 Jul 2007, Didier Casse wrote:
It looks for evfs now. But evfs and evfs-devel are installed in my box.
evfs-0.0.1-1.20070715cvs
evfs-devel-0.0.1-1.20070715cvs
-------------------------------------------------------------------------------------------------------------
configure: error: Package requirements (evfs >= 0.0.1) were not met:
No package 'evfs' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables EVFS_CFLAGS
and EVFS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
error: Bad exit status from /var/tmp/rpm-tmp.70125 (%build)
Bad exit status from /var/tmp/rpm-tmp.70125 (%build)
aborting... entropy.spec did not compile!
-------------------------------------------------------------------------------------------------------------
Thanks for the reply Vincent.
--
With kind regards,
Didier.
Yum repository for Fedora Core
http://sps.nus.edu.sg/~didierbe
On 7/15/07, Vincent Torri <[EMAIL PROTECTED]> wrote:
Hey,
try the attached patch. If entropy compiles and works, I'll commit it (I
can't test entropy right now)
Vincent
On Sun, 15 Jul 2007, Didier Casse wrote:
> Hi all,
>
> Enlightenment is fine now. But entropy seems to be looking for ecore.
Log
> attached.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
--
Ce message a été vérifié par MailScanner
pour des virus ou des polluriels et rien de
suspect n'a été trouvé.
Message délivré par le serveur de messagerie de l'Université d'Evry.
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
Name: evfs
Description: E Virtual File System
Requires: ecore
Version: @VERSION@
Libs: -L${libdir} -levfs
Cflags: -I${includedir}/evfs
? evfs.diff
? evfs.pc.in
Index: Makefile.am
===================================================================
RCS file: /cvs/e/e17/apps/evfs/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Makefile.am 5 Apr 2006 11:44:33 -0000 1.3
+++ Makefile.am 16 Jul 2007 06:33:34 -0000
@@ -24,8 +24,7 @@
debian/libevfs0-plugin-tar.install \
debian/rules \
debian/changelog.in \
- debian/changelog
-
-bin_SCRIPTS = evfs-config
-
+ debian/changelog
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = evfs.pc
Index: configure.in
===================================================================
RCS file: /cvs/e/e17/apps/evfs/configure.in,v
retrieving revision 1.30
diff -u -r1.30 configure.in
--- configure.in 5 Jul 2007 18:46:49 -0000 1.30
+++ configure.in 16 Jul 2007 06:33:34 -0000
@@ -11,10 +11,11 @@
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
+AM_PROG_CC_C_O
AC_HEADER_STDC
AM_PROG_LIBTOOL
-AC_C_BIGENDIAN
+AC_C_BIGENDIAN
AC_STRUCT_ST_BLKSIZE
AC_STRUCT_ST_BLOCKS
@@ -36,10 +37,11 @@
dnl Samba 3.0
dnl ******************************
-AC_ARG_ENABLE(samba, [ --disable-samba build without samba support])
+AC_ARG_ENABLE(samba, AC_HELP_STRING([--disable-samba],[build without samba
support]))
msg_samba="no"
if test "x$enable_samba" != "xno"; then
- AC_ARG_WITH(samba-includes, [ --with-samba-includes=PREFIX Location of
samba includes.],
+ AC_ARG_WITH(samba-includes,
+ AC_HELP_STRING([--with-samba-includes=PREFIX],[Location of samba
includes.]),
with_samba_includes="$withval",
with_samba_includes="/usr/include")
have_samba_includes="no"
if test "x${with_samba_includes}" != "xno"; then
@@ -50,7 +52,7 @@
CPPFLAGS="$CPPFLAGS -I$with_samba_includes"
AC_CHECK_HEADER(libsmbclient.h, [ samba_includes="yes" ])
CPPFLAGS="$CPPFLAGS_save"
-
+
if test "x{samba_includes}" != "xno" -a "x${samba_includes}" != "x";
then
have_samba_includes="yes"
if test "${with_samba_includes}" != "/usr/include" ; then
@@ -58,7 +60,7 @@
else
SAMBA_CFLAGS=""
fi
-
+
CPPFLAGS="$CPPFLAGS -I$with_samba_includes"
AC_CHECK_MEMBER(SMBCCTX.flags,
[AC_DEFINE(HAVE_SAMBA_FLAGS,, [Defined if flags
availible in SMBCCTXT])],,
@@ -72,11 +74,12 @@
fi
fi
echo "have_samba_includes: ${have_samba_includes}"
- AC_ARG_WITH(samba-libs, [ --with-samba-libs=PREFIX Location of
Samba libs.],
+ AC_ARG_WITH(samba-libs,
+ AC_HELP_STRING([--with-samba-libs=PREFIX],[Location of Samba
libs.]),
with_samba_libs="$withval", with_samba_libs="/usr/lib")
if test "x${with_samba_libs}" != "xno" -a "x${have_samba_includes}" !=
"xno"; then
LDFLAGS_save="$LDFLAGS"
-
+
LDFLAGS="$LDFLAGS -L$with_samba_libs"
AC_CHECK_LIB(smbclient, smbc_new_context,samba_libs="yes",
samba_libs="no")
LDFLAGS="$LDFLAGS_save"
@@ -86,7 +89,7 @@
if test x$with_samba_libs != x/usr/lib; then
SAMBA_LIBS="-L$with_samba_libs -lsmbclient"
else
- SAMBA_LIBS="-lsmbclient"
+ SAMBA_LIBS="-lsmbclient"
fi
else
SAMBA_CFLAGS=""
@@ -120,10 +123,9 @@
AC_SUBST(PERL)
dnl Check for pkg-config stuff
-PKG_CHECK_MODULES(ECORE, [ecore ecore-desktop ecore-ipc])
-
-dnl Check for pkg-config stuff
+PKG_CHECK_MODULES(EET, [eet])
PKG_CHECK_MODULES(EVAS, [evas])
+PKG_CHECK_MODULES(ECORE, [ecore ecore-desktop ecore-ipc])
PROG="curl-config";
@@ -158,9 +160,6 @@
)
AC_SUBST(SQLITE_LIBS)
-dnl Check for pkg-config stuff
-PKG_CHECK_MODULES(EET, [eet])
-
PROG="taglib-config";
AC_PATH_PROG(TAGLIB_CONFIG, $PROG, "", $PATH)
msg_taglib="no"
@@ -276,7 +275,7 @@
AC_PATH_PROG(JADE, jade)
AM_CONDITIONAL(HAVE_JADE, test "x$JADE" != "x" && test -d "$DB_STYLESHEETS")
-dnl Volume monitor stuff
+dnl Volume monitor stuff
AC_CHECK_FUNCS(setmntent endmntent hasmntopt getmntinfo)
AC_CHECK_HEADERS(mntent.h sys/mnttab.h sys/vfstab.h sys/cdio.h sys/mount.h
sys/mntctl.h sys/vfs.h sys/vmount.h sys/sysctl.h fstab.h fnmatch.h)
@@ -298,8 +297,6 @@
src/demo/Makefile
src/include/Makefile
src/common/Makefile
-evfs-config
+evfs.pc
debian/changelog
-], [
-chmod +x evfs-config
])
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel