Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 207396 | Differences between
and this patch

Collapse All | Expand All

(-)do-plugins-0.3.0-orig/Makefile.am (-1 / +5 lines)
Lines 1-3 Link Here
1
SUBDIRS = Evolution Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins
1
if ENABLE_EVO_PLUGIN
2
EVO_SUBDIR = Evolution
3
endif
4
5
SUBDIRS = $(EVO_SUBDIR) Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins
2
6
3
EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT
7
EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT
(-)do-plugins-0.3.0-orig/configure.ac (-1 / +26 lines)
Lines 38-44 Link Here
38
38
39
PKG_CHECK_MODULES([DO_ADDINS], [do.addins])
39
PKG_CHECK_MODULES([DO_ADDINS], [do.addins])
40
PKG_CHECK_MODULES([DO_DBUS], [do.dbus])
40
PKG_CHECK_MODULES([DO_DBUS], [do.dbus])
41
PKG_CHECK_MODULES([EVOLUTION_SHARP], [evolution-sharp])
41
42
AC_ARG_ENABLE([evolution-plugin],
43
	AC_HELP_STRING([--enable-evolution-plugin], [Enable the Evolution plugin]),
44
	enable_evo_plugin=$enableval,
45
	enable_evo_plugin=yes)
46
47
if test "x$enable_evo_plugin" = "xyes" ; then
48
PKG_CHECK_MODULES([EVOLUTION_SHARP],
49
		  [evolution-sharp],
50
		  has_evo_deps=yes,
51
		  has_evo_deps=no)
52
fi
53
54
if test "x$has_evo_deps" != "xyes" ; then
55
	if test "x$enable_evo_plugin" = "xyes" ; then
56
		dnl Error out if explicitly asked for the Evolution plugin
57
		AC_MSG_ERROR([Could not find evolution-sharp])
58
	fi
59
	enable_evo_plugin="no"
60
else
61
	if test "x$enable_evo_plugin" != "xyes" ; then
62
		enable_evo_plugin="no"
63
	fi
64
fi
65
66
AM_CONDITIONAL(ENABLE_EVO_PLUGIN, test "x$enable_evo_plugin" = "xyes")
42
67
43
AC_SUBST(DO_ADDINS_LIBS)
68
AC_SUBST(DO_ADDINS_LIBS)
44
AC_SUBST(DO_DBUS_LIBS)
69
AC_SUBST(DO_DBUS_LIBS)

Return to bug 207396