anjuta r4930 - in trunk: . plugins plugins/class-inheritance plugins/indent plugins/profiler plugins/sample1 plugins/valgrind po



Author: jhs
Date: Tue Apr  7 13:57:00 2009
New Revision: 4930
URL: http://svn.gnome.org/viewvc/anjuta?rev=4930&view=rev

Log:
2009-04-07  Johannes Schmid  <jhs gnome org>

	* configure.in:
	* plugins/Makefile.am:
	Moved sample1, indent, class-inheritance, valgrind and profiler to
	anjuta-extras repository.

Removed:
   trunk/plugins/class-inheritance/
   trunk/plugins/indent/
   trunk/plugins/profiler/
   trunk/plugins/sample1/
   trunk/plugins/valgrind/
Modified:
   trunk/ChangeLog
   trunk/configure.in
   trunk/plugins/Makefile.am
   trunk/po/ChangeLog
   trunk/po/POTFILES.in
   trunk/po/POTFILES.skip

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Tue Apr  7 13:57:00 2009
@@ -36,20 +36,16 @@
 LIBDEVHELP_REQUIRED=0.22
 GDL_REQUIRED=2.24.0
 GLADEUI_REQUIRED=3.6.0
-LIBGRAPHVIZ_REQUIRED=1.0
 NEON_REQUIRED=0.28.2
 SVN_MAJOR=1
 SVN_MINOR=5
 SVN_PATCH=0
 SUBVERSION_REQUIRED=$SVN_MAJOR.$SVN_MINOR.$SVN_PATCH
 GTKSOURCEVIEW_REQUIRED=2.4.0
-BINUTILS_REQUIRED=2.15.92
 LIBWNCK_REQUIRED=2.12
 GDA_REQUIRED=4.0.0
 UNIQUE_REQUIRED=1.0.0
 
-dnl LIBGTODO_REQUIRED=0.15
-
 AC_SUBST(GLIB_REQUIRED)
 AC_SUBST(GDK_PIXBUF_REQUIRED)
 AC_SUBST(GTK_REQUIRED)
@@ -63,17 +59,13 @@
 AC_SUBST(LIBDEVHELP_REQUIRED)
 AC_SUBST(GDL_REQUIRED)
 AC_SUBST(GLADEUI_REQUIRED)
-AC_SUBST(LIBGRAPHVIZ_REQUIRED)
 AC_SUBST(NEON_REQUIRED)
 AC_SUBST(SUBVERSION_REQUIRED)
 AC_SUBST(GTKSOURCEVIEW_REQUIRED)
-AC_SUBST(BINUTILS_REQUIRED)
 AC_SUBST(LIBWNCK_REQUIRED)
 AC_SUBST(GDA_REQUIRED)
 AC_SUBST(UNIQUE_REQUIRED)
 
-dnl AC_SUBST(LIBGTODO_REQUIRED)
-
 AM_INIT_AUTOMAKE([1.9 dist-bzip2 no-dist-gzip])
 AC_CONFIG_HEADERS(config.h)
 AC_DISABLE_STATIC
@@ -256,62 +248,6 @@
 
 AM_CONDITIONAL(HAVE_PLUGIN_GLADE, [test x$gladeui_found = xyes])
 
-dnl Check for graphviz (class inheritance and profiler plugins)
-dnl --------------------------------------------------------------------------
-dnl FIXME: For some strange reason graphviz-devel rpm install the *.pc files
-dnl in /usr/lib/graphviz/pkgconfig, instead of usual /usr/lib/pkgconfig. This
-dnl makes pkgconfig check fail if we don't add the above path in
-dnl PKG_CONFIG_PATH. We have added both /usr/lib/graphviz/pkgconfig and
-dnl /usr/local/lib/pkgconfig paths. If graphviz is installed in other prefix
-dnl (other than /usr or /usr/local or the current installation prefix),
-dnl following pkgconfig check will fail.
-dnl --------------------------------------------------------------------------
-AC_ARG_ENABLE(graphviz,
-	AC_HELP_STRING([--disable-graphviz],[Disable GraphViz support in Anjuta]), 
-	[ if test "$enableval" = "no"; then
-		user_disabled_graphviz=1
-	  fi ],
-	[ user_disabled_graphviz=0 ])
-
-AC_MSG_CHECKING(if GraphViz support is disabled)
-if test "$user_disabled_graphviz" = 1; then
-	AC_MSG_RESULT(yes)
-	libgraphviz_found="no"
-else
-	AC_MSG_RESULT(no)
-	
-	dnl Set pkgconfig path
-	ANJUTA_PKG_CONFIG_PATH_SAVE="${PKG_CONFIG_PATH}"
-	PKG_CONFIG_PATH="/usr/lib/graphviz/pkgconfig:$PKG_CONFIG_PATH"
-	PKG_CONFIG_PATH="/usr/local/lib/graphviz/pkgconfig:$PKG_CONFIG_PATH"
-	PKG_CONFIG_PATH="/usr/lib64/graphviz/pkgconfig:$PKG_CONFIG_PATH"
-	PKG_CONFIG_PATH="/usr/local/lib64/graphviz/pkgconfig:$PKG_CONFIG_PATH"
-	
-	anjuta_save_prefix="$prefix"
-	test "x$prefix" = xNONE && prefix=$ac_default_prefix
-	graphviz_pkgconfig=`eval echo ${libdir}/graphviz/pkgconfig`
-	PKG_CONFIG_PATH="$graphviz_pkgconfig:$PKG_CONFIG_PATH"
-	prefix="$anjuta_save_prefix"
-
-	export PKG_CONFIG_PATH
-	PKG_CHECK_MODULES(GRAPHVIZ,
-		[libgvc >= $LIBGRAPHVIZ_REQUIRED libgraph >= $LIBGRAPHVIZ_REQUIRED], 
-		[libgraphviz_found="yes"],
-		[libgraphviz_found="no"])
-	
-	dnl Restore pkgconfig path
-	PKG_CONFIG_PATH="${ANJUTA_PKG_CONFIG_PATH_SAVE}"
-	export PKG_CONFIG_PATH
-fi
-
-AM_CONDITIONAL(HAVE_GRAPHVIZ, [test x$libgraphviz_found = xyes])
-
-dnl Define HAVE_GRAPHVIZ to disable Function Call Chart in the Profiler if 
-dnl Graphviz isn't on the system
-if test "$libgraphviz_found" = yes; then
-	AC_DEFINE(HAVE_GRAPHVIZ, [], [Define if we have GraphViz >= 2.6.0])
-fi
-
 dnl Build gtksourceview plugin only on gnome 2.14 and gtk 2.10
 dnl -------------------------------------------------------------
 
@@ -360,67 +296,6 @@
 PKG_CHECK_MODULES(PLUGIN_SYMBOL_DB,
 		[libgda-4.0 >= $GDA_REQUIRED])
 
-dnl Valgrind plugin
-dnl check for libbfd
-dnl -------------------------------------------------------------
-
-AC_ARG_ENABLE(plugin-valgrind,
-	AC_HELP_STRING([--disable-plugin-valgrind],[Disable Valgrind plugin]), 
-	[ if test "$enableval" = "no"; then
-		user_disabled_valgrind=1
-	  fi ],
-	[ user_disabled_valgrind=0 ])
-
-AC_MSG_CHECKING(if valgrind plugin is disabled)
-if test "$user_disabled_valgrind" = 1; then
-	AC_MSG_RESULT(yes)
-	valgrind="no"
-else
-	AC_MSG_RESULT(no)
-	valgrind="yes"
-fi
-
-AC_CHECK_LIB(bfd, bfd_get_error, [PLUGIN_VALGRIND_LIBS="-Wl,-Bstatic -lbfd -liberty -Wl,-Bdynamic"],
-   valgrind="no",
-  -liberty)
-
-AC_SUBST(PLUGIN_VALGRIND_LIBS)
-AM_CONDITIONAL(HAVE_PLUGIN_VALGRIND, [test x$valgrind = xyes])
-
-
-
-
-dnl we need gconftool-2 in order to install the schema
-AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
-
-if test "x$GCONFTOOL" = "xno"; then
-  AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
-fi
-
-AM_GCONF_SOURCE_2
-
-
-
-
-dnl check for bfd_get_section_size_before_reloc() in libbfd
-AC_MSG_CHECKING(for bfd_get_section_size_before_reloc)
-AC_TRY_LINK([
-        #include <bfd.h>
-        ], [
-        asection *section;
-
-        bfd_get_section_size_before_reloc (section);
-        ],
-        AC_MSG_RESULT(yes)
-        AC_DEFINE(HAVE_BFD_GET_SECTION_SIZE_BEFORE_RELOC, [], [Define if libbfd
-contains the function bfd_get_section_size_before_reloc])
-,
-        AC_MSG_RESULT(no)
-)
-
-
-
-
 dnl Setup Anjuta Library flags
 dnl --------------------------
 LIBANJUTA_CFLAGS='$(GLIB_CFLAGS) $(GTK_CFLAGS) $(GDL_CFLAGS) $(GNOME_CFLAGS) $(GLADE_CFLAGS) -I$(top_srcdir) -DPACKAGE_PIXMAPS_DIR=\""$(datadir)/pixmaps/$(PACKAGE)"\" -DPACKAGE_LIB_DIR=\""$(pkglibdir)"\" -DPACKAGE_DATA_DIR=\""$(datadir)/$(PACKAGE)"\"'
@@ -889,7 +764,6 @@
 scripts/Makefile
 launcher/Makefile
 plugins/Makefile
-plugins/sample1/Makefile
 plugins/gtodo/Makefile
 plugins/class-gen/Makefile
 plugins/class-gen/templates/Makefile
@@ -913,7 +787,6 @@
 plugins/file-wizard/Makefile
 plugins/terminal/Makefile
 plugins/build-basic-autotools/Makefile
-plugins/profiler/Makefile
 plugins/project-manager/Makefile
 plugins/gbf-am/Makefile
 plugins/gbf-am/gbf-am-parse
@@ -932,8 +805,6 @@
 plugins/sourceview/Makefile
 plugins/tools/Makefile
 plugins/tools/scripts/Makefile
-plugins/class-inheritance/Makefile
-plugins/valgrind/Makefile
 plugins/language-manager/Makefile
 plugins/project-import/Makefile
 plugins/project-wizard/templates/Makefile
@@ -986,7 +857,6 @@
 plugins/project-wizard/templates/m4/Makefile
 plugins/language-support-cpp-java/Makefile
 plugins/run-program/Makefile
-plugins/scratchbox/Makefile
 plugins/starter/Makefile
 anjuta.desktop.in
 manuals/Makefile
@@ -1028,23 +898,6 @@
        echo "        Requires devhelp >= 0.22"
 fi
 
-if [ test x$libgraphviz_found = xyes ]; then
-        echo "Building class inheritance plugin: .....................YES"
-        echo "Building performance profiler with function call chart: YES"
-else
-        echo "Building class inheritance plugin: .....................NO"
-        echo "        Requires graphviz (>= 2.6.0); http://graphviz.org";
-        echo "Building performance profiler with function call chart: NO"
-	 echo "        Requires graphviz (>= 2.6.0); http://graphviz.org";
-fi
-
-if [ test x$valgrind = xyes ]; then
-        echo "Building Valgrind debugger plugin: .....................YES"
-else
-        echo "Building Valgrind debugger plugin: .....................NO"
-	echo "		Requires binutils-dev"
-fi
-
 if [ test x$sourceview = xyes ]; then
         echo "Building GtkSourceView based editor: ...................YES"
 else

Modified: trunk/plugins/Makefile.am
==============================================================================
--- trunk/plugins/Makefile.am	(original)
+++ trunk/plugins/Makefile.am	Tue Apr  7 13:57:00 2009
@@ -13,7 +13,6 @@
 	file-wizard \
 	project-wizard \
 	project-manager \
-	sample1 \
 	cvs-plugin \
 	macro \
 	class-gen \
@@ -21,22 +20,16 @@
 	subversion \
 	project-import \
 	tools \
-	class-inheritance \
 	document-manager \
 	search \
-	valgrind \
 	language-support-cpp-java \
 	glade \
 	devhelp \
-	profiler \
 	language-manager \
 	symbol-db \
 	git \
 	sourceview \
 	run-program \
-	scratchbox \
 	gbf-am \
 	gbf-mkfile \
 	starter
-
-# indent

Modified: trunk/po/POTFILES.in
==============================================================================
--- trunk/po/POTFILES.in	(original)
+++ trunk/po/POTFILES.in	Tue Apr  7 13:57:00 2009
@@ -31,8 +31,6 @@
 plugins/build-basic-autotools/executer.c
 plugins/build-basic-autotools/plugin.c
 plugins/build-basic-autotools/program.c
-plugins/class-inheritance/class-inherit.c
-plugins/class-inheritance/plugin.c
 plugins/class-gen/anjuta-class-gen-plugin.glade
 plugins/class-gen/cell-renderer-flags.c
 plugins/class-gen/combo-flags.c
@@ -150,24 +148,6 @@
 plugins/patch/patch-plugin.c
 plugins/patch/patch-plugin.glade
 plugins/patch/plugin.c
-plugins/profiler/gprof-call-graph-block.c
-plugins/profiler/gprof-call-graph-block-entry.c
-plugins/profiler/gprof-call-graph.c
-plugins/profiler/gprof-call-graph-view.c
-plugins/profiler/gprof-flat-profile.c
-plugins/profiler/gprof-flat-profile-entry.c
-plugins/profiler/gprof-flat-profile.h
-plugins/profiler/gprof-flat-profile-view.c
-plugins/profiler/gprof-function-call-tree-view.c
-plugins/profiler/gprof-profile-data.c
-plugins/profiler/gprof-view.c
-plugins/profiler/gprof-view-manager.c
-plugins/profiler/plugin.c
-plugins/profiler/profiler-call-graph.glade
-plugins/profiler/profiler-flat-profile.glade
-plugins/profiler/profiler-function-call-tree.glade
-plugins/profiler/profiler.glade
-plugins/profiler/string-utils.c
 plugins/project-import/plugin.c
 plugins/project-import/project-import.glade
 plugins/project-import/project-import-dialog.c
@@ -185,7 +165,6 @@
 plugins/run-program/execute.c
 plugins/run-program/parameters.c
 plugins/run-program/plugin.c
-plugins/sample1/plugin.c
 plugins/scintilla/anjuta-editor-scintilla.glade
 plugins/scintilla/print.c
 plugins/scintilla/plugin.c
@@ -234,18 +213,6 @@
 plugins/tools/plugin.c
 plugins/tools/variable.c
 plugins/tools/tool.c
-plugins/valgrind/anjuta-valgrind.glade
-plugins/valgrind/plugin.c
-plugins/valgrind/preferences.c
-plugins/valgrind/process.c
-plugins/valgrind/vgactions.c
-plugins/valgrind/vgcachegrindprefs.c
-plugins/valgrind/vgdefaultview.c
-plugins/valgrind/vggeneralprefs.c
-plugins/valgrind/vghelgrindprefs.c
-plugins/valgrind/vgmemcheckprefs.c
-plugins/valgrind/vgrule-editor.c
-plugins/valgrind/vgrule-list.c
 src/about.c
 src/action-callbacks.c
 src/anjuta.c
@@ -275,13 +242,11 @@
 [type: gettext/ini]plugins/file-wizard/anjuta-file-wizard.plugin.in
 [type: gettext/ini]plugins/file-manager/file-manager.plugin.in
 [type: gettext/ini]plugins/subversion/anjuta-subversion.plugin.in
-[type: gettext/ini]plugins/class-inheritance/anjuta-class-inheritance.plugin.in
 [type: gettext/ini]plugins/glade/anjuta-glade.plugin.in
 [type: gettext/ini]plugins/gtodo/anjuta-gtodo.plugin.in
 [type: gettext/ini]plugins/macro/anjuta-macro.plugin.in
 [type: gettext/ini]plugins/patch/anjuta-patch.plugin.in
 [type: gettext/ini]plugins/tools/anjuta-tools.plugin.in
-[type: gettext/ini]plugins/sample1/anjuta-sample.plugin.in
 [type: gettext/ini]plugins/build-basic-autotools/anjuta-build-basic-autotools.plugin.in
 [type: gettext/ini]plugins/terminal/anjuta-terminal.plugin.in
 [type: gettext/ini]plugins/cvs-plugin/anjuta-cvs.plugin.in
@@ -292,13 +257,11 @@
 [type: gettext/ini]plugins/starter/anjuta-starter.plugin.in
 [type: gettext/ini]plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin.in
 [type: gettext/ini]plugins/project-wizard/anjuta-project-wizard.plugin.in
-[type: gettext/ini]plugins/profiler/profiler.plugin.in
 [type: gettext/ini]plugins/search/anjuta-search.plugin.in
 [type: gettext/ini]plugins/class-gen/anjuta-class-gen.plugin.in
 [type: gettext/ini]plugins/project-manager/anjuta-project-manager.plugin.in
 [type: gettext/ini]plugins/symbol-db/symbol-db.plugin.in
 [type: gettext/ini]plugins/message-view/anjuta-message-manager.plugin.in
-[type: gettext/ini]plugins/valgrind/anjuta-valgrind.plugin.in
 [type: gettext/ini]plugins/file-loader/anjuta-loader.plugin.in
 [type: gettext/ini]plugins/debug-manager/anjuta-debug-manager.plugin.in
 [type: gettext/ini]plugins/run-program/anjuta-run-program.plugin.in

Modified: trunk/po/POTFILES.skip
==============================================================================
--- trunk/po/POTFILES.skip	(original)
+++ trunk/po/POTFILES.skip	Tue Apr  7 13:57:00 2009
@@ -9,9 +9,6 @@
 plugins/build/executer.c
 plugins/gtodo/egg-datetime.c
 plugins/gtodo/eggtrayicon.c
-plugins/indent/indent-dialog.c
-plugins/indent/indent.glade
-plugins/indent/plugin.c
 plugins/macro/macros.xml
 plugins/profiler/gprof-function-call-chart-view.c
 plugins/profiler/main.c
@@ -23,13 +20,6 @@
 plugins/project-wizard/templates/gtkmm/src/project.glade
 plugins/scintilla/text_editor_cbs.c
 plugins/symbol-db/symbol-db.glade
-libegg/egg-combo-action.c
-libegg/egg-entry-action.c
-libegg/eggcellrendererkeys.c
-libegg/eggtreemodelfilter.c
-libegg/eggtreeviewstate.c
-libegg/layout.glade
-libegg/test-actions.c
 src/anjuta_cbs.c
 src/utilities.c
 src/shell.c



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]