summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Finke <jens@triq.net>2002-02-16 11:26:10 +0000
committerJens Finke <jens@src.gnome.org>2002-02-16 11:26:10 +0000
commitb489d765581e50da1da814de50a081ef7c446f79 (patch)
tree0c6900e3b4f0f3c96ce13e7904880784d84a3ccb
parentb3a15044f469370cba4dc905845fddedfad4d4e6 (diff)
downloadeog-b489d765581e50da1da814de50a081ef7c446f79.tar.gz
Commented out the evolution and gnocam options. These aren't supported in
2002-02-16 Jens Finke <jens@triq.net> * configure.in: Commented out the evolution and gnocam options. These aren't supported in the inital gnome2 release. * Makefile.am: Install desktop file in $(datadir)/applications. * eog.desktop.in: Added Categories key.
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.am2
-rw-r--r--configure.in82
-rw-r--r--eog.desktop.in1
4 files changed, 53 insertions, 41 deletions
diff --git a/ChangeLog b/ChangeLog
index e94e2659..7df95a04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2002-02-16 Jens Finke <jens@triq.net>
+
+ * configure.in: Commented out the evolution and gnocam options.
+ These aren't supported in the inital gnome2 release.
+
+ * Makefile.am: Install desktop file in $(datadir)/applications.
+
+ * eog.desktop.in: Added Categories key.
+
2002-02-10 Jens Finke <jens@triq.net>
* configure.in: Bumped version to 0.111.0
diff --git a/Makefile.am b/Makefile.am
index 218f4796..1593b3e9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,7 +14,7 @@ EXTRA_DIST = \
intltool-update.in \
intltool-merge.in
-Graphicsdir = $(datadir)/gnome/apps/Graphics
+Graphicsdir = $(datadir)/applications
Graphics_in_files = eog.desktop.in
Graphics_DATA = $(Graphics_in_files:.desktop.in=.desktop)
diff --git a/configure.in b/configure.in
index b8ac2f0d..0c251ee4 100644
--- a/configure.in
+++ b/configure.in
@@ -56,50 +56,54 @@ fi
AC_SUBST(GCONF_CONFIG_SOURCE)
AC_SUBST(INSTALL_GCONF_CONFIG_SOURCE)
-dnl ******************************
+dnl *******************************************************
dnl Check for evolution
-dnl ******************************
-try_evolution=false
-evolution=no
-AC_ARG_WITH(evolution,
- [ --{with,without}-evolution Use evolution to send images.],
- if test x$withval = xno; then
- try_evolution=false
- fi
-)
-try_evolution=false
-if $try_evolution; then
- path_to_composer_idl=`gnome-config --datadir`/idl/Evolution-Composer.idl
- AC_CHECK_FILE($path_to_composer_idl, evolution=yes, evolution=no)
- if test x"$evolution" = "xyes"; then
- AC_DEFINE(ENABLE_EVOLUTION)
- fi
-fi
-dnl
-dnl We need to port Evolution to Gnome 2.0 first.
-dnl
+dnl *******************************************************
+dnl --> Reenable this if evolution is ported to gnome 2 <--
+dnl *******************************************************
+dnl try_evolution=false
+dnl evolution=no
+dnl AC_ARG_WITH(evolution,
+dnl [ --{with,without}-evolution Use evolution to send images.],
+dnl if test x$withval = xno; then
+dnl try_evolution=false
+dnl fi
+dnl )
+dnl try_evolution=false
+dnl if $try_evolution; then
+dnl path_to_composer_idl=`gnome-config --datadir`/idl/Evolution-Composer.idl
+dnl AC_CHECK_FILE($path_to_composer_idl, evolution=yes, evolution=no)
+dnl if test x"$evolution" = "xyes"; then
+dnl AC_DEFINE(ENABLE_EVOLUTION)
+dnl fi
+dnl fi
evolution=no
AM_CONDITIONAL(ENABLE_EVOLUTION, false)
-dnl ******************************
+dnl *******************************************************
dnl Check for GnoCam
-dnl ******************************
-try_gnocam=true
+dnl *******************************************************
+dnl --> Reenable this if GnoCam is ported to gnome 2 and
+dnl someone has tested this <--
+dnl *******************************************************
+dnl try_gnocam=true
+dnl gnocam=no
+dnl AC_ARG_WITH(gnocam,
+dnl [ --{with,without}-gnocam Use gnocam to acquire images.],
+dnl if test x$withval = xno; then
+dnl try_gnocam=false
+dnl fi
+dnl )
+dnl if $try_gnocam; then
+dnl path_to_gnocam_idl=`gnome-config --datadir`/idl/GnoCam.idl
+dnl AC_CHECK_FILE($path_to_gnocam_idl, gnocam=yes, gnocam=no)
+dnl if test x"$gnocam" = "xyes"; then
+dnl AC_DEFINE(ENABLE_GNOCAM)
+dnl fi
+dnl fi
+dnl AM_CONDITIONAL(ENABLE_GNOCAM, test x"$gnocam" = "xyes")
gnocam=no
-AC_ARG_WITH(gnocam,
- [ --{with,without}-gnocam Use gnocam to acquire images.],
- if test x$withval = xno; then
- try_gnocam=false
- fi
-)
-if $try_gnocam; then
- path_to_gnocam_idl=`gnome-config --datadir`/idl/GnoCam.idl
- AC_CHECK_FILE($path_to_gnocam_idl, gnocam=yes, gnocam=no)
- if test x"$gnocam" = "xyes"; then
- AC_DEFINE(ENABLE_GNOCAM)
- fi
-fi
-AM_CONDITIONAL(ENABLE_GNOCAM, test x"$gnocam" = "xyes")
+AM_CONDITIONAL(ENABLE_GNOCAM, false)
EOG_MODULES="gnome-vfs-2.0 libgnomeprint-2.0 libgnomeui-2.0 libbonoboui-2.0 bonobo-activation-2.0"
@@ -239,8 +243,6 @@ Configuration:
Source code location: ${srcdir}
Compiler: ${CC}
- Use Evolution: $evolution
- Use GnoCam: $gnocam
Extra Compiler Warnings: ${EXTRA_WARNING_CFLAGS}
"
diff --git a/eog.desktop.in b/eog.desktop.in
index b8cafed6..27a13114 100644
--- a/eog.desktop.in
+++ b/eog.desktop.in
@@ -6,3 +6,4 @@ Exec=eog
Icon=gnome-eog.png
Terminal=0
Type=Application
+Categories=Application;Graphics \ No newline at end of file