Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 144656 Details for
Bug 207396
Gnome-Do ebuild request
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to make the Evolution plugin optional
do-plugins-evo-check.patch (text/plain), 1.78 KB, created by
Arun Raghavan (RETIRED)
on 2008-02-26 06:44:40 UTC
(
hide
)
Description:
Patch to make the Evolution plugin optional
Filename:
MIME Type:
Creator:
Arun Raghavan (RETIRED)
Created:
2008-02-26 06:44:40 UTC
Size:
1.78 KB
patch
obsolete
>diff -urN do-plugins-0.3.0-orig/Makefile.am do-plugins-0.3.0/Makefile.am >--- do-plugins-0.3.0-orig/Makefile.am 2008-02-26 10:16:37.000000000 +0530 >+++ do-plugins-0.3.0/Makefile.am 2008-02-26 11:04:48.000000000 +0530 >@@ -1,3 +1,7 @@ >-SUBDIRS = Evolution Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins >+if ENABLE_EVO_PLUGIN >+EVO_SUBDIR = Evolution >+endif >+ >+SUBDIRS = $(EVO_SUBDIR) Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins > > EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT >diff -urN do-plugins-0.3.0-orig/configure.ac do-plugins-0.3.0/configure.ac >--- do-plugins-0.3.0-orig/configure.ac 2008-02-26 10:16:37.000000000 +0530 >+++ do-plugins-0.3.0/configure.ac 2008-02-26 10:41:14.000000000 +0530 >@@ -38,7 +38,32 @@ > > PKG_CHECK_MODULES([DO_ADDINS], [do.addins]) > PKG_CHECK_MODULES([DO_DBUS], [do.dbus]) >-PKG_CHECK_MODULES([EVOLUTION_SHARP], [evolution-sharp]) >+ >+AC_ARG_ENABLE([evolution-plugin], >+ AC_HELP_STRING([--enable-evolution-plugin], [Enable the Evolution plugin]), >+ enable_evo_plugin=$enableval, >+ enable_evo_plugin=yes) >+ >+if test "x$enable_evo_plugin" = "xyes" ; then >+PKG_CHECK_MODULES([EVOLUTION_SHARP], >+ [evolution-sharp], >+ has_evo_deps=yes, >+ has_evo_deps=no) >+fi >+ >+if test "x$has_evo_deps" != "xyes" ; then >+ if test "x$enable_evo_plugin" = "xyes" ; then >+ dnl Error out if explicitly asked for the Evolution plugin >+ AC_MSG_ERROR([Could not find evolution-sharp]) >+ fi >+ enable_evo_plugin="no" >+else >+ if test "x$enable_evo_plugin" != "xyes" ; then >+ enable_evo_plugin="no" >+ fi >+fi >+ >+AM_CONDITIONAL(ENABLE_EVO_PLUGIN, test "x$enable_evo_plugin" = "xyes") > > AC_SUBST(DO_ADDINS_LIBS) > AC_SUBST(DO_DBUS_LIBS)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 207396
:
141772
|
144322
|
144656
|
144657
|
144727
|
144728