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 / +19 lines)
Lines 1-3 Link Here
1
SUBDIRS = Evolution Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins
1
ENABLED_SUBDIRS =
2
3
if ENABLE_EVO_PLUGIN
4
ENABLED_SUBDIRS += Evolution
5
endif
6
7
if ENABLE_AMAROK_PLUGIN
8
ENABLED_SUBDIRS += Amarok
9
endif
10
11
if ENABLE_OPENSEARCH_PLUGIN
12
ENABLED_SUBDIRS += OpenSearch
13
endif
14
15
if ENABLE_PASTEBIN_PLUGIN
16
ENABLED_SUBDIRS += Pastebin
17
endif
18
19
SUBDIRS = $(ENABLED_SUBDIRS) Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator Templates GNOME-Session SimplePlugins
2
20
3
EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT
21
EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT
(-)do-plugins-0.3.0-orig/configure.ac (-2 / +52 lines)
Lines 38-48 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])
42
43
AC_SUBST(DO_ADDINS_LIBS)
41
AC_SUBST(DO_ADDINS_LIBS)
44
AC_SUBST(DO_DBUS_LIBS)
42
AC_SUBST(DO_DBUS_LIBS)
43
44
dnl - Evolution plugin
45
46
AC_ARG_ENABLE([evolution-plugin],
47
	AC_HELP_STRING([--enable-evolution-plugin], [Enable the Evolution plugin]),
48
	enable_evo_plugin=$enableval,
49
	enable_evo_plugin=yes)
50
51
if test "x$enable_evo_plugin" = "xyes" ; then
52
PKG_CHECK_MODULES([EVOLUTION_SHARP],
53
		  [evolution-sharp],
54
		  has_evo_deps=yes,
55
		  has_evo_deps=no)
45
AC_SUBST(EVOLUTION_SHARP_LIBS)
56
AC_SUBST(EVOLUTION_SHARP_LIBS)
57
fi
58
59
if test "x$has_evo_deps" != "xyes" ; then
60
	if test "x$enable_evo_plugin" = "xyes" ; then
61
		dnl Error out if explicitly asked for the Evolution plugin
62
		AC_MSG_ERROR([Could not find evolution-sharp])
63
	fi
64
	enable_evo_plugin="no"
65
else
66
	if test "x$enable_evo_plugin" != "xyes" ; then
67
		enable_evo_plugin="no"
68
	fi
69
fi
70
71
AM_CONDITIONAL(ENABLE_EVO_PLUGIN, test "x$enable_evo_plugin" = "xyes")
72
73
dnl - Amarok plugin
74
AC_ARG_ENABLE([amarok-plugin],
75
	AC_HELP_STRING([--enable-amarok-plugin], [Enable the Amarok plugin]),
76
	enable_amarok_plugin=$enableval,
77
	enable_amarok_plugin=yes)
78
79
AM_CONDITIONAL(ENABLE_AMAROK_PLUGIN, test "x$enable_amarok_plugin" = "xyes")
80
81
dnl - OpenSearch plugin
82
AC_ARG_ENABLE([opensearch-plugin],
83
	AC_HELP_STRING([--enable-opensearch-plugin], [Enable the OpenSearch plugin]),
84
	enable_opensearch_plugin=$enableval,
85
	enable_opensearch_plugin=yes)
86
87
AM_CONDITIONAL(ENABLE_OPENSEARCH_PLUGIN, test "x$enable_opensearch_plugin" = "xyes")
88
89
dnl - Pastebin plugin
90
AC_ARG_ENABLE([pastebin-plugin],
91
	AC_HELP_STRING([--enable-pastebin-plugin], [Enable the Pastebin plugin]),
92
	enable_pastebin_plugin=$enableval,
93
	enable_pastebin_plugin=yes)
94
95
AM_CONDITIONAL(ENABLE_PASTEBIN_PLUGIN, test "x$enable_pastebin_plugin" = "xyes")
46
96
47
dnl Plugin install paths
97
dnl Plugin install paths
48
98

Return to bug 207396