Upgrade to 0.1.6

This commit is contained in:
Dmitry Sivachenko 2001-08-12 08:24:54 +00:00
parent 51768bee38
commit 3f7eacd59b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=46119
18 changed files with 840 additions and 658 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= anjuta
PORTVERSION= 0.1.4
PORTVERSION= 0.1.6
CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= anjuta

View file

@ -1 +1 @@
MD5 (anjuta-0.1.4.tar.gz) = 334e57ae4e760de39aa9620a79f2587b
MD5 (anjuta-0.1.6.tar.gz) = f9e57f1dc990425dfbc91840c539366c

View file

@ -1,25 +1,15 @@
--- Makefile.in.orig Sat Mar 31 19:36:17 2001
+++ Makefile.in Sat Mar 31 19:37:04 2001
@@ -110,10 +110,10 @@
--- Makefile.in.orig Sun Aug 12 11:01:09 2001
+++ Makefile.in Sun Aug 12 11:02:14 2001
@@ -128,10 +128,10 @@
cxxflags_set = @cxxflags_set@
l = @l@
-SUBDIRS = intl po macros scintilla src pixmaps data help doc launcher
+SUBDIRS = intl po macros src pixmaps data help doc launcher
-SUBDIRS = intl po macros scintilla ccview widgets manuals omf-install src pixmaps data doc launcher
+SUBDIRS = intl po macros ccview widgets manuals omf-install src pixmaps data doc launcher
anjutadocdir = ${prefix}/doc/anjuta
-anjutadoc_DATA = README COPYING AUTHORS ChangeLog INSTALL NEWS TODO ABOUT-NLS
+anjutadoc_DATA =
EXTRA_DIST = anjuta.prj $(anjutadoc_DATA)
@@ -384,8 +384,7 @@
install-exec-am:
install-exec: install-exec-recursive
-install-data-am: install-anjutadocDATA install-gnomemenuDATA \
- install-data-local
+install-data-am: install-anjutadocDATA install-gnomemenuDATA
install-data: install-data-recursive
install-am: all-am
EXTRA_DIST = anjuta.desktop.in.in anjuta.prj anjuta.spec.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in $(anjutadoc_DATA)

View file

@ -1,5 +1,5 @@
--- configure.orig Sat Mar 31 19:18:57 2001
+++ configure Sat Mar 31 19:19:59 2001
--- configure.orig Sun Aug 12 11:02:48 2001
+++ configure Sun Aug 12 11:10:02 2001
@@ -8,6 +8,7 @@
# gives unlimited permission to copy, distribute and modify it.
@ -8,29 +8,20 @@
ac_help=
ac_default_prefix=/usr/local
# Any additions from configure.in:
@@ -4551,10 +4552,10 @@
PACKAGE_PIXMAPS_DIR="`gnome-config --datadir`/pixmaps/${PACKAGE}"
-PACKAGE_HELP_DIR="`gnome-config --datadir`/gnome/help/${PACKAGE}"
+PACKAGE_HELP_DIR="`gnome-config --datadir`/help/${PACKAGE}"
-PACKAGE_MENU_DIR="`gnome-config --datadir`/gnome/apps"
+PACKAGE_MENU_DIR="`gnome-config --datadir`/apps"
trap '' 1 2 15
@@ -4663,8 +4664,6 @@
@@ -4631,12 +4632,10 @@
intl/Makefile
po/Makefile.in
macros/Makefile
-scintilla/Makefile
ccview/Makefile
widgets/Makefile
manuals/Makefile
omf-install/Makefile
-scintilla/include/Makefile
anjuta.spec
src/Makefile
pixmaps/Makefile
@@ -4743,6 +4742,7 @@
manuals/C/Makefile
manuals/C/anjuta-manual/Makefile
manuals/C/anjuta-faqs/Makefile
@@ -4729,6 +4728,7 @@
s%@GNOME_CAPPLET_LIBS@%$GNOME_CAPPLET_LIBS%g
s%@cflags_set@%$cflags_set%g
s%@GTK_CONFIG@%$GTK_CONFIG%g
@ -38,12 +29,16 @@
s%@GTK_CFLAGS@%$GTK_CFLAGS%g
s%@GTK_LIBS@%$GTK_LIBS%g
s%@XPM_LIBS@%$XPM_LIBS%g
@@ -4818,8 +4818,6 @@
@@ -4820,12 +4820,10 @@
intl/Makefile
po/Makefile.in
macros/Makefile
-scintilla/Makefile
ccview/Makefile
widgets/Makefile
manuals/Makefile
omf-install/Makefile
-scintilla/include/Makefile
anjuta.spec
src/Makefile
pixmaps/Makefile
manuals/C/Makefile
manuals/C/anjuta-manual/Makefile
manuals/C/anjuta-faqs/Makefile

View file

@ -0,0 +1,11 @@
--- launcher/anjuta_launcher.c.orig Sun Aug 12 11:37:07 2001
+++ launcher/anjuta_launcher.c Sun Aug 12 11:37:15 2001
@@ -22,7 +22,7 @@
#endif
#include <sys/types.h>
-#include <sys/unistd.h>
+#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#include <glib.h>

View file

@ -0,0 +1,20 @@
--- po/Makefile.in.in.orig Tue Aug 7 01:13:27 2001
+++ po/Makefile.in.in Sun Aug 12 12:07:12 2001
@@ -20,7 +20,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = @datadir@
-localedir = $(datadir)/locale
+localedir = $(prefix)/share/locale
gettextsrcdir = $(datadir)/gettext/po
subdir = po
@@ -104,7 +104,7 @@
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\.gmo$$//'`; \
+ lang=`echo $$cat | sed 's/\.mo$$//'`; \
dir=$(localedir)/$$lang/LC_MESSAGES; \
$(mkinstalldirs) $(DESTDIR)$$dir; \
if test -r $$cat; then \

View file

@ -1,39 +1,39 @@
--- src/Makefile.in.orig Sat Mar 31 19:14:49 2001
+++ src/Makefile.in Sat Mar 31 19:17:53 2001
@@ -110,7 +110,7 @@
--- src/Makefile.in.orig Sun Aug 12 11:11:42 2001
+++ src/Makefile.in Sun Aug 12 11:15:59 2001
@@ -128,7 +128,7 @@
cxxflags_set = @cxxflags_set@
l = @l@
-INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I../scintilla/include -I. -I.. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
+INCLUDES = -I$(top_srcdir)/intl -I$(prefix)/include/scintilla $(GNOME_INCLUDEDIR) -I. -I.. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
-INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I$(srcdir)/../scintilla/include -I$(srcdir)/../widgets -I$(srcdir)/../ccview -I$(srcdir)/../pixmaps -I.. -I. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
+INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I$(prefix)/include/scintilla -I$(srcdir)/../widgets -I$(srcdir)/../ccview -I$(srcdir)/../pixmaps -I.. -I. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
bin_PROGRAMS = anjuta
@@ -118,7 +118,7 @@
anjuta_SOURCES = aneditor.cxx aneditor.h anjuta.h anjuta_cbs.c anjuta_dirs.c anjuta_dirs.h anjuta_info.c anjuta_info.h appwidz_page1.c appwidz_page2.c appwidz_page3.c appwidzard.c appwidzard.h appwidzard_cbs.c appwidzard_cbs.h appwidzard_gui.c attach_process.c attach_process.h attach_process_cbs.c attach_process_cbs.h attach_process_gui.c breakpoints.c breakpoints.h breakpoints_cbs.c breakpoints_cbs.h breakpoints_gui.c build_file.c build_file.h build_project.c build_project.h clean_project.c clean_project.h commands.c commands.h compile.c compile.h compiler_options.c compiler_options.h compiler_options_cbs.c compiler_options_cbs.h compiler_options_gui.c configurer.c configurer.h controls.c controls.h debugger.c debugger.h executer.c executer.h fileselection.c fileselection.h find_in_files.c find_in_files.h find_in_files_cbs.c find_in_files_cbs.h find_in_files_gui.c find_replace.c find_replace.h find_text.c find_text.h global.h gnome_project.c gnome_project.h goto_line.c goto_line.h launcher.c launcher.h lexer.h main.c main_menubar.c main_menubar.h main_menubar_def.h mainmenu_callbacks.c mainmenu_callbacks.h messagebox.c messagebox.h messages.c messages.h pixmaps.h preferences.c preferences.h preferences_gui.c project_dbase.c project_dbase.h project_config.c project_config.h project_dbase_gui.c properties.cxx properties.h registers.c registers.h registers_cbs.c registers_cbs.h registers_gui.c sharedlib.c sharedlib.h sharedlib_cbs.c sharedlib_cbs.h sharedlib_gui.c signals.c signals.h signals_cbs.c signals_cbs.h signals_gui.c splash.c splash.h src_paths.c src_paths.h src_paths_cbs.c src_paths_cbs.h src_paths_gui.c stack_trace.c stack_trace.h stack_trace_cbs.c stack_trace_cbs.h stack_trace_gui.c support.c support.h syntax.h tags_manager.c tags_manager.h text_editor.c text_editor.h text_editor_cbs.c text_editor_cbs.h text_editor_gui.c text_editor_gui.h text_editor_menu.c text_editor_menu.h toolbar.c toolbar.h toolbar_callbacks.c toolbar_callbacks.h utilities.c utilities.h watch.c watch.h watch_cbs.c watch_cbs.h watch_gui.c about.c appwidz_page4.c source.c anjuta.c anjuta_gui.c source.h glade_iface.c glade_iface.h compatibility_0.c compatibility_0.h defaults.c defaults.h about.h
@@ -136,7 +136,7 @@
anjuta_SOURCES = aneditor.cxx aneditor.h anjuta.h anjuta_cbs.c anjuta_dirs.c anjuta_dirs.h anjuta_info.c anjuta_info.h appwiz_page1.c appwiz_page2.c appwiz_page3.c appwizard.c appwizard.h appwizard_cbs.c appwizard_cbs.h appwizard_gui.c attach_process.c attach_process.h attach_process_cbs.c attach_process_cbs.h attach_process_gui.c breakpoints.c breakpoints.h breakpoints_cbs.c breakpoints_cbs.h breakpoints_gui.c build_file.c build_file.h build_project.c build_project.h clean_project.c clean_project.h commands.c commands.h compile.c compile.h compiler_options.c compiler_options.h compiler_options_cbs.c compiler_options_cbs.h compiler_options_gui.c configurer.c configurer.h controls.c controls.h debugger.c debugger.h executer.c executer.h fileselection.c fileselection.h find_in_files.c find_in_files.h find_in_files_cbs.c find_in_files_cbs.h find_in_files_gui.c find_replace.c find_replace.h find_text.c find_text.h global.h gnome_project.c gnome_project.h goto_line.c goto_line.h help.c help.h launcher.c launcher.h lexer.h main.c main_menubar.c main_menubar.h main_menubar_def.h mainmenu_callbacks.c mainmenu_callbacks.h messagebox.c messagebox.h messages.c messages.h pixmaps.h preferences.c preferences.h preferences_gui.c project_dbase.c project_dbase.h project_config.c project_config.h project_dbase_gui.c properties.cxx properties.h registers.c registers.h registers_cbs.c registers_cbs.h registers_gui.c sharedlib.c sharedlib.h sharedlib_cbs.c sharedlib_cbs.h sharedlib_gui.c signals.c signals.h signals_cbs.c signals_cbs.h signals_gui.c splash.c splash.h src_paths.c src_paths.h src_paths_cbs.c src_paths_cbs.h src_paths_gui.c stack_trace.c stack_trace.h stack_trace_cbs.c stack_trace_cbs.h stack_trace_gui.c syntax.h tags_manager.c tags_manager.h text_editor.c text_editor.h text_editor_cbs.c text_editor_cbs.h text_editor_gui.c text_editor_gui.h text_editor_menu.c text_editor_menu.h toolbar.c toolbar.h toolbar_callbacks.c toolbar_callbacks.h utilities.c utilities.h watch.c watch.h watch_cbs.c watch_cbs.h watch_gui.c about.c appwiz_page4.c source.c anjuta.c anjuta_gui.c source.h glade_iface.c glade_iface.h compatibility_0.c compatibility_0.h defaults.c defaults.h about.h resources.c resources.h notebook.c notebook.h
-anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../scintilla -lscintilla ../scintilla/LexCPP.o ../scintilla/LexConf.o ../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o ../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o ../scintilla/LexVB.o ../scintilla/LexPascal.o
+anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -lscintilla
-anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../scintilla -L../widgets -L../ccview ../scintilla/LexCPP.o ../scintilla/LexConf.o ../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o ../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o ../scintilla/LexVB.o ../scintilla/LexPascal.o ../scintilla/LexAVE.o -lwidgets -lccview -lxml -lscintilla
+anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../widgets -L../ccview -lwidgets -lccview -lxml -lscintilla
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
@@ -150,10 +150,7 @@
utilities.o watch.o watch_cbs.o watch_gui.o about.o appwidz_page4.o \
source.o anjuta.o anjuta_gui.o glade_iface.o compatibility_0.o \
defaults.o
@@ -168,10 +168,7 @@
watch_cbs.o watch_gui.o about.o appwiz_page4.o source.o anjuta.o \
anjuta_gui.o glade_iface.o compatibility_0.o defaults.o resources.o \
notebook.o
-anjuta_DEPENDENCIES = ../scintilla/LexCPP.o ../scintilla/LexConf.o \
-../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o \
-../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o \
-../scintilla/LexVB.o ../scintilla/LexPascal.o
+anjuta_DEPENDENCIES =
-../scintilla/LexVB.o ../scintilla/LexPascal.o ../scintilla/LexAVE.o
+anjuta_DEPENDENCIES =
anjuta_LDFLAGS =
CXXFLAGS = @CXXFLAGS@
CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
@@ -279,14 +276,8 @@
@@ -297,14 +294,7 @@
fi; \
done
about.o: about.c ../config.h utilities.h support.h about.h
about.o: about.c ../config.h utilities.h resources.h about.h
-aneditor.o: aneditor.cxx ../config.h ../scintilla/include/Platform.h \
- ../scintilla/include/PropSet.h ../scintilla/include/SString.h \
- ../scintilla/include/Accessor.h \
@ -42,93 +42,92 @@
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h \
- ../scintilla/include/SciLexer.h lexer.h properties.h aneditor.h
+aneditor.o: aneditor.cxx ../config.h \
+ lexer.h properties.h aneditor.h
+aneditor.o: aneditor.cxx ../config.h lexer.h properties.h aneditor.h
anjuta.o: anjuta.c ../config.h text_editor.h global.h text_editor_menu.h \
preferences.h properties.h aneditor.h anjuta.h toolbar.h \
messagebox.h compiler_options.h src_paths.h find_replace.h \
@@ -295,9 +286,7 @@
@@ -313,9 +303,7 @@
anjuta_dirs.h executer.h configurer.h utilities.h \
main_menubar.h fileselection.h support.h launcher.h debugger.h \
watch.h registers.h stack_trace.h signals.h sharedlib.h \
- attach_process.h controls.h anjuta_info.h \
main_menubar.h help.h fileselection.h resources.h launcher.h \
debugger.h watch.h registers.h stack_trace.h signals.h \
- sharedlib.h attach_process.h controls.h anjuta_info.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ attach_process.h controls.h anjuta_info.h
+ sharedlib.h attach_process.h controls.h anjuta_info.h
anjuta_cbs.o: anjuta_cbs.c ../config.h text_editor.h global.h \
text_editor_menu.h preferences.h properties.h aneditor.h \
anjuta.h toolbar.h messagebox.h compiler_options.h src_paths.h \
@@ -480,9 +469,7 @@
messagebox.h compiler_options.h src_paths.h find_replace.h \
@@ -501,8 +489,7 @@
find_text.h find_in_files.h messages.h project_dbase.h \
tags_manager.h project_config.h commands.h anjuta_dirs.h \
- executer.h configurer.h utilities.h main_menubar.h controls.h \
- ../scintilla/include/Scintilla.h \
executer.h configurer.h utilities.h main_menubar.h help.h \
- controls.h ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ executer.h configurer.h utilities.h main_menubar.h controls.h
+ controls.h
debugger.o: debugger.c ../config.h anjuta.h toolbar.h text_editor.h \
global.h text_editor_menu.h preferences.h properties.h \
aneditor.h messagebox.h compiler_options.h src_paths.h \
@@ -535,9 +522,7 @@
@@ -557,9 +544,7 @@
src_paths.h find_replace.h find_text.h find_in_files.h \
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
- utilities.h main_menubar.h support.h \
- utilities.h main_menubar.h help.h resources.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ utilities.h main_menubar.h support.h
+ utilities.h main_menubar.h help.h resources.h
find_text.o: find_text.c ../config.h anjuta.h toolbar.h text_editor.h \
global.h text_editor_menu.h preferences.h properties.h \
aneditor.h messagebox.h compiler_options.h src_paths.h \
@@ -600,8 +585,7 @@
launcher.h appwidzard.h debugger.h watch.h registers.h \
@@ -629,8 +614,7 @@
compile.h launcher.h appwizard.h debugger.h watch.h registers.h \
stack_trace.h signals.h sharedlib.h attach_process.h \
breakpoints_cbs.h goto_line.h support.h controls.h \
breakpoints_cbs.h goto_line.h resources.h controls.h \
- signals_cbs.h watch_cbs.h ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ signals_cbs.h watch_cbs.h
messagebox.o: messagebox.c ../config.h text_editor.h global.h \
text_editor_menu.h preferences.h properties.h aneditor.h \
mainmenu_callbacks.h messagebox.h support.h
@@ -653,8 +637,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h support.h
mainmenu_callbacks.h messagebox.h resources.h
@@ -685,8 +669,7 @@
project_config.h commands.h breakpoints.h anjuta_dirs.h \
executer.h configurer.h utilities.h main_menubar.h help.h \
resources.h fileselection.h
-properties.o: properties.cxx ../scintilla/include/PropSet.h \
- ../scintilla/include/SString.h properties.h
+properties.o: properties.cxx properties.h
registers.o: registers.c ../config.h support.h debugger.h global.h \
registers.o: registers.c ../config.h resources.h debugger.h global.h \
breakpoints.h properties.h text_editor.h text_editor_menu.h \
preferences.h aneditor.h watch.h registers.h stack_trace.h \
@@ -758,9 +741,7 @@
@@ -791,10 +774,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h text_editor_gui.h text_editor_cbs.h \
- syntax.h launcher.h ../scintilla/include/Scintilla.h \
utilities.h main_menubar.h help.h text_editor_gui.h \
- text_editor_cbs.h syntax.h launcher.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/SciLexer.h \
- ../scintilla/include/ScintillaWidget.h lexer.h controls.h
+ syntax.h launcher.h lexer.h controls.h
+ text_editor_cbs.h syntax.h launcher.h lexer.h controls.h
text_editor_cbs.o: text_editor_cbs.c ../config.h anjuta.h toolbar.h \
text_editor.h global.h text_editor_menu.h preferences.h \
properties.h aneditor.h messagebox.h compiler_options.h \
@@ -768,8 +749,7 @@
@@ -802,8 +782,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h controls.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h support.h \
utilities.h main_menubar.h help.h controls.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h resources.h \
- ../scintilla/include/Scintilla.h
+ text_editor_gui.h mainmenu_callbacks.h support.h
+ text_editor_gui.h mainmenu_callbacks.h resources.h
text_editor_gui.o: text_editor_gui.c ../config.h anjuta.h toolbar.h \
text_editor.h global.h text_editor_menu.h preferences.h \
properties.h aneditor.h messagebox.h compiler_options.h \
@@ -777,9 +757,7 @@
@@ -811,9 +790,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h text_editor_cbs.h text_editor_gui.h \
- mainmenu_callbacks.h pixmaps.h support.h \
utilities.h main_menubar.h help.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h pixmaps.h resources.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ mainmenu_callbacks.h pixmaps.h support.h
text_editor_menu.o: text_editor_menu.c ../config.h support.h \
+ text_editor_gui.h mainmenu_callbacks.h pixmaps.h resources.h
text_editor_menu.o: text_editor_menu.c ../config.h resources.h \
text_editor_menu.h anjuta.h toolbar.h text_editor.h global.h \
preferences.h properties.h aneditor.h messagebox.h \

View file

@ -1,17 +0,0 @@
--- src/anjuta_dirs.c.orig Sat Mar 31 18:41:13 2001
+++ src/anjuta_dirs.c Sat Mar 31 18:46:47 2001
@@ -36,11 +36,11 @@
{
sharedir = g_dirname(PACKAGE_LOCALE_DIR);
ad->tmp = g_strdup(g_get_tmp_dir());
- ad->datadir = g_strconcat(sharedir, "/anjuta", NULL);
+ ad->datadir = g_strconcat(sharedir, "/gnome/anjuta", NULL);
ad->data = g_strdup(ad->datadir);
ad->templetes = g_strdup(ad->datadir);
- ad->pixmaps = g_strconcat(ad->datadir, "/pixmaps", NULL);
- /* ad->help = g_strconcat(ad->datadir, "/help", NULL); */
+ ad->pixmaps = g_strconcat(sharedir, "/gnome/pixmaps", NULL);
+ /* ad->help = g_strconcat(sharedir, "/gnome/help", NULL); */
ad->doc = g_strconcat(sharedir, "/doc/anjuta", NULL);
ad->home = g_strdup(g_get_home_dir());
ad->settings = g_strconcat(ad->home, "/.anjuta",NULL);

View file

@ -1,221 +1,314 @@
bin/anjuta
bin/anjuta_launcher
share/locale/ja/LC_MESSAGES/anjuta.mo
share/gnome/pixmaps/anjuta/add.xpm
share/gnome/pixmaps/anjuta/anjuta_icon.xpm
share/gnome/pixmaps/anjuta/anjuta_logo.png
share/gnome/pixmaps/anjuta/app_widzard.jpg
share/gnome/pixmaps/anjuta/appwid_blank.xpm
share/gnome/pixmaps/anjuta/appwid_book.xpm
share/gnome/pixmaps/anjuta/appwid_cd.xpm
share/gnome/pixmaps/anjuta/appwid_chart.xpm
share/gnome/pixmaps/anjuta/appwid_console.xpm
share/gnome/pixmaps/anjuta/appwid_data.xpm
share/gnome/pixmaps/anjuta/appwid_debug.xpm
share/gnome/pixmaps/anjuta/appwid_draw.xpm
share/gnome/pixmaps/anjuta/appwid_gear.xpm
share/gnome/pixmaps/anjuta/appwid_globe.xpm
share/gnome/pixmaps/anjuta/appwid_lib.xpm
share/gnome/pixmaps/anjuta/appwid_pack.xpm
share/gnome/pixmaps/anjuta/appwid_page.xpm
share/gnome/pixmaps/anjuta/appwid_page1.xpm
share/gnome/pixmaps/anjuta/appwid_penguin.xpm
share/gnome/pixmaps/anjuta/appwid_sheet.xpm
share/gnome/pixmaps/anjuta/appwid_wid.xpm
share/gnome/pixmaps/anjuta/appwid_www.xpm
share/gnome/pixmaps/anjuta/autocomplete.xpm
share/gnome/pixmaps/anjuta/bfoldc.xpm
share/gnome/pixmaps/anjuta/bfoldo.xpm
share/gnome/pixmaps/anjuta/blank.xpm
share/gnome/pixmaps/anjuta/block_end.xpm
share/gnome/pixmaps/anjuta/block_select.xpm
share/gnome/pixmaps/anjuta/block_start.xpm
share/gnome/pixmaps/anjuta/bookmark_first.xpm
share/gnome/pixmaps/anjuta/bookmark_last.xpm
share/gnome/pixmaps/anjuta/bookmark_next.xpm
share/gnome/pixmaps/anjuta/bookmark_prev.xpm
share/gnome/pixmaps/anjuta/bookmark_toggle.xpm
share/gnome/pixmaps/anjuta/breakpoint.xpm
share/gnome/pixmaps/anjuta/build.xpm
share/gnome/pixmaps/anjuta/build_all.xpm
share/gnome/pixmaps/anjuta/build_stop.xpm
share/gnome/pixmaps/anjuta/calltip.xpm
share/gnome/pixmaps/anjuta/compile.xpm
share/gnome/pixmaps/anjuta/close_file.xpm
share/gnome/pixmaps/anjuta/close_project.xpm
share/gnome/pixmaps/anjuta/configure.xpm
share/gnome/pixmaps/anjuta/console.xpm
share/gnome/pixmaps/anjuta/continue.xpm
share/gnome/pixmaps/anjuta/copy.xpm
share/gnome/pixmaps/anjuta/debug.xpm
share/gnome/pixmaps/anjuta/debug_stop.xpm
share/gnome/pixmaps/anjuta/dock.xpm
share/gnome/pixmaps/anjuta/error_next.xpm
share/gnome/pixmaps/anjuta/error_prev.xpm
share/gnome/pixmaps/anjuta/exec.xpm
share/gnome/pixmaps/anjuta/execute.xpm
share/gnome/pixmaps/anjuta/file_c.xpm
share/gnome/pixmaps/anjuta/file_cpp.xpm
share/gnome/pixmaps/anjuta/file_file.xpm
share/gnome/pixmaps/anjuta/file_h.xpm
share/gnome/pixmaps/anjuta/file_pix.xpm
share/gnome/pixmaps/anjuta/find.xpm
share/gnome/pixmaps/anjuta/find_replace.xpm
share/gnome/pixmaps/anjuta/fold_close.xpm
share/gnome/pixmaps/anjuta/fold_open.xpm
share/gnome/pixmaps/anjuta/fold_toggle.xpm
share/gnome/pixmaps/anjuta/frame.xpm
share/gnome/pixmaps/anjuta/gear.xpm
share/gnome/pixmaps/anjuta/goto.xpm
share/gnome/pixmaps/anjuta/graph.xpm
share/gnome/pixmaps/anjuta/handle_hide.xpm
share/gnome/pixmaps/anjuta/handle_undock.xpm
share/gnome/pixmaps/anjuta/help.xpm
share/gnome/pixmaps/anjuta/indent.xpm
share/gnome/pixmaps/anjuta/indent_auto.xpm
share/gnome/pixmaps/anjuta/indent_dcr.xpm
share/gnome/pixmaps/anjuta/indent_inc.xpm
share/gnome/pixmaps/anjuta/indent_set.xpm
share/gnome/pixmaps/anjuta/inspect.xpm
share/gnome/pixmaps/anjuta/interface.xpm
share/gnome/pixmaps/anjuta/interrupt.xpm
share/gnome/pixmaps/anjuta/ledgreen.xpm
share/gnome/pixmaps/anjuta/ledred.xpm
share/gnome/pixmaps/anjuta/line-arrow.xbm
share/gnome/pixmaps/anjuta/line-wrap.xbm
share/gnome/pixmaps/anjuta/list_select.xpm
share/gnome/pixmaps/anjuta/list_unselect.xpm
share/gnome/pixmaps/anjuta/messages.xpm
share/gnome/pixmaps/anjuta/mini-modules.xpm
share/gnome/pixmaps/anjuta/mini_build.xpm
share/gnome/pixmaps/anjuta/mini_cvs.xpm
share/gnome/pixmaps/anjuta/mini_debug.xpm
share/gnome/pixmaps/anjuta/mini_dock.xpm
share/gnome/pixmaps/anjuta/mini_find.xpm
share/gnome/pixmaps/anjuta/new_file.xpm
share/gnome/pixmaps/anjuta/open_file.xpm
share/gnome/pixmaps/anjuta/open_project.xpm
share/gnome/pixmaps/anjuta/paste.xpm
share/gnome/pixmaps/anjuta/pointer.xpm
share/gnome/pixmaps/anjuta/preferences.xpm
share/gnome/pixmaps/anjuta/print.xpm
share/gnome/pixmaps/anjuta/project.xpm
share/gnome/pixmaps/anjuta/redo.xpm
share/gnome/pixmaps/anjuta/registers.xpm
share/gnome/pixmaps/anjuta/reload.xpm
share/gnome/pixmaps/anjuta/reload_file.xpm
share/gnome/pixmaps/anjuta/remove.xpm
share/gnome/pixmaps/anjuta/save.xpm
share/gnome/pixmaps/anjuta/save_all.xpm
share/gnome/pixmaps/anjuta/save_file.xpm
share/gnome/pixmaps/anjuta/save_project.xpm
share/gnome/pixmaps/anjuta/search.xpm
share/gnome/pixmaps/anjuta/stack.xpm
share/gnome/pixmaps/anjuta/step_in.xpm
share/gnome/pixmaps/anjuta/step_out.xpm
share/gnome/pixmaps/anjuta/step_over.xpm
share/gnome/pixmaps/anjuta/stop.xpm
share/gnome/pixmaps/anjuta/syntax.xpm
share/gnome/pixmaps/anjuta/undo.xpm
share/gnome/pixmaps/anjuta/undock.xpm
share/gnome/pixmaps/anjuta/watch.xpm
share/gnome/pixmaps/anjuta/widzard.xpm
share/gnome/pixmaps/anjuta/file_icon.xpm
share/gnome/pixmaps/anjuta/file_html.xpm
share/gnome/pixmaps/anjuta/run_to_cursor.xpm
share/gnome/pixmaps/anjuta/file_i18n.xpm
share/gnome/help/anjuta/C/anjuta_logo.jpg
share/gnome/help/anjuta/C/arguments.jpg
share/gnome/help/anjuta/C/brk_add.jpg
share/gnome/help/anjuta/C/brk_dlg.jpg
share/gnome/help/anjuta/C/brk_edit.jpg
share/gnome/help/anjuta/C/browse_toolbar.jpg
share/gnome/help/anjuta/C/configure_dlg.jpg
share/gnome/help/anjuta/C/defines.jpg
share/gnome/help/anjuta/C/evaluate.jpg
share/gnome/help/anjuta/C/find_files.jpg
share/gnome/help/anjuta/C/find_replace.jpg
share/gnome/help/anjuta/C/find_text.jpg
share/gnome/help/anjuta/C/frame.jpg
share/gnome/help/anjuta/C/includes.jpg
share/gnome/help/anjuta/C/index.html
share/gnome/help/anjuta/C/index2.html
share/gnome/help/anjuta/C/inspect.jpg
share/gnome/help/anjuta/C/lib_paths.jpg
share/gnome/help/anjuta/C/libraries.jpg
share/gnome/help/anjuta/C/menu_detached.jpg
share/gnome/help/anjuta/C/page00.html
share/gnome/help/anjuta/C/message_win.jpg
share/gnome/help/anjuta/C/open_file.jpg
share/gnome/help/anjuta/C/optimizations.jpg
share/gnome/help/anjuta/C/other_opts.jpg
share/gnome/help/anjuta/C/page01.html
share/gnome/help/anjuta/C/page02.html
share/gnome/help/anjuta/C/page03.html
share/gnome/help/anjuta/C/page04.html
share/gnome/help/anjuta/C/page05.html
share/gnome/help/anjuta/C/page06.html
share/gnome/help/anjuta/C/page07.html
share/gnome/help/anjuta/C/page08.html
share/gnome/help/anjuta/C/page09.html
share/gnome/help/anjuta/C/page10.html
share/gnome/help/anjuta/C/page100.html
share/gnome/help/anjuta/C/page104.html
share/gnome/help/anjuta/C/page11.html
share/gnome/help/anjuta/C/page110.html
share/gnome/help/anjuta/C/page111.html
share/gnome/help/anjuta/C/page112.html
share/gnome/help/anjuta/C/page113.html
share/gnome/help/anjuta/C/page114.html
share/gnome/help/anjuta/C/page115.html
share/gnome/help/anjuta/C/page12.html
share/gnome/help/anjuta/C/page13.html
share/gnome/help/anjuta/C/page14.html
share/gnome/help/anjuta/C/page15.html
share/gnome/help/anjuta/C/page16.html
share/gnome/help/anjuta/C/page17.html
share/gnome/help/anjuta/C/page18.html
share/gnome/help/anjuta/C/page19.html
share/gnome/help/anjuta/C/page20.html
share/gnome/help/anjuta/C/page21.html
share/gnome/help/anjuta/C/page22.html
share/gnome/help/anjuta/C/page23.html
share/gnome/help/anjuta/C/page24.html
share/gnome/help/anjuta/C/page25.html
share/gnome/help/anjuta/C/page26.html
share/gnome/help/anjuta/C/page27.html
share/gnome/help/anjuta/C/page28.html
share/gnome/help/anjuta/C/page29.html
share/gnome/help/anjuta/C/page30.html
share/gnome/help/anjuta/C/page31.html
share/gnome/help/anjuta/C/page32.html
share/gnome/help/anjuta/C/page33.html
share/gnome/help/anjuta/C/page34.html
share/gnome/help/anjuta/C/project_info.jpg
share/gnome/help/anjuta/C/project_win.jpg
share/gnome/help/anjuta/C/replace_text.jpg
share/gnome/help/anjuta/C/scrshot.jpg
share/gnome/help/anjuta/C/signal_mod.jpg
share/gnome/help/anjuta/C/signals.jpg
share/gnome/help/anjuta/C/stack.jpg
share/gnome/help/anjuta/C/supports.jpg
share/gnome/help/anjuta/C/topic.dat
share/gnome/help/anjuta/C/warnings.jpg
share/gnome/help/anjuta/C/watch.jpg
share/gnome/help/anjuta/C/watch_add.jpg
share/anjuta/README.stock_libs
share/anjuta/anjuta.properties
share/anjuta/autogen.sh.generic
share/anjuta/autogen.sh.gnome
share/anjuta/autogen.sh.gnomemm
share/anjuta/autogen.sh.gtk
share/anjuta/autogen.sh.gtkmm
share/anjuta/gdb.init
share/anjuta/header.c
share/anjuta/internal.properties
share/anjuta/linux-gnome-c.api
share/anjuta/stock_libs.anj
share/anjuta/tags2api.py
share/anjuta/welcome.txt
share/gnome/apps/Development/anjuta.desktop
share/gnome/anjuta/anjuta.properties
share/gnome/anjuta/gdb.init
share/gnome/anjuta/README.stock_libs
share/gnome/anjuta/header.c
share/gnome/anjuta/internal.properties
share/gnome/anjuta/stock_libs.anj
share/gnome/anjuta/welcome.txt
share/gnome/anjuta/autogen.sh.gnome
share/gnome/anjuta/autogen.sh.gtk
share/gnome/anjuta/autogen.sh.generic
share/gnome/anjuta/linux-gnome-c.api
@dirrm share/gnome/pixmaps/anjuta
@dirrm share/gnome/anjuta
share/gnome/help/anjuta/C/anjuta-faqs/anjuta-faqs.sgml
share/gnome/help/anjuta/C/anjuta-faqs/docbook.css
share/gnome/help/anjuta/C/anjuta-faqs/index.html
share/gnome/help/anjuta/C/anjuta-faqs/ln7.html
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/caution.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/home.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/important.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/next.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/note.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/prev.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/tip.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-blank.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-minus.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-plus.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/up.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/warning.gif
share/gnome/help/anjuta/C/anjuta-manual/add-rm-files.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-contacts.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-license.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-manual.sgml
share/gnome/help/anjuta/C/anjuta-manual/breaks-del.html
share/gnome/help/anjuta/C/anjuta-manual/breaks-edit.html
share/gnome/help/anjuta/C/anjuta-manual/breaks-enbdis.html
share/gnome/help/anjuta/C/anjuta-manual/browsing-files.html
share/gnome/help/anjuta/C/anjuta-manual/building.html
share/gnome/help/anjuta/C/anjuta-manual/chapter01.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter02.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter03.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter04.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter05.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter06.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter07.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter08.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter09.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter10.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter11.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter12.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter13.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter14.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter15.sgml
share/gnome/help/anjuta/C/anjuta-manual/dbg-dyna-libs.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-interrupt.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-registers.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-restart.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-run.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-step-out.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-step-over.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-stop.html
share/gnome/help/anjuta/C/anjuta-manual/debug-attach.html
share/gnome/help/anjuta/C/anjuta-manual/debug-core.html
share/gnome/help/anjuta/C/anjuta-manual/debug-loading.html
share/gnome/help/anjuta/C/anjuta-manual/debug-start.html
share/gnome/help/anjuta/C/anjuta-manual/debugger-exec.html
share/gnome/help/anjuta/C/anjuta-manual/debugger-others.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-breaks.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-exprs.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-stack.html
share/gnome/help/anjuta/C/anjuta-manual/debugging.html
share/gnome/help/anjuta/C/anjuta-manual/defines.html
share/gnome/help/anjuta/C/anjuta-manual/docbook.css
share/gnome/help/anjuta/C/anjuta-manual/editing-files.html
share/gnome/help/anjuta/C/anjuta-manual/expr-watch.html
share/gnome/help/anjuta/C/anjuta-manual/familiar.html
share/gnome/help/anjuta/C/anjuta-manual/figures/arguments.png
share/gnome/help/anjuta/C/anjuta-manual/figures/attach.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_add.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_dlg.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_edit.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview_class.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview_struct.png
share/gnome/help/anjuta/C/anjuta-manual/figures/configure_dlg.png
share/gnome/help/anjuta/C/anjuta-manual/figures/defines.png
share/gnome/help/anjuta/C/anjuta-manual/figures/devt_menu.png
share/gnome/help/anjuta/C/anjuta-manual/figures/evaluate.png
share/gnome/help/anjuta/C/anjuta-manual/figures/fileview.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_files.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_replace.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_text.png
share/gnome/help/anjuta/C/anjuta-manual/figures/frame.png
share/gnome/help/anjuta/C/anjuta-manual/figures/includes.png
share/gnome/help/anjuta/C/anjuta-manual/figures/inspect.png
share/gnome/help/anjuta/C/anjuta-manual/figures/lib_paths.png
share/gnome/help/anjuta/C/anjuta-manual/figures/libraries.png
share/gnome/help/anjuta/C/anjuta-manual/figures/menu_detached.png
share/gnome/help/anjuta/C/anjuta-manual/figures/menu_main.png
share/gnome/help/anjuta/C/anjuta-manual/figures/message_win.png
share/gnome/help/anjuta/C/anjuta-manual/figures/open_file.png
share/gnome/help/anjuta/C/anjuta-manual/figures/optimizations.png
share/gnome/help/anjuta/C/anjuta-manual/figures/other_opts.png
share/gnome/help/anjuta/C/anjuta-manual/figures/project_info.png
share/gnome/help/anjuta/C/anjuta-manual/figures/project_win.png
share/gnome/help/anjuta/C/anjuta-manual/figures/registers.png
share/gnome/help/anjuta/C/anjuta-manual/figures/scrshot.png
share/gnome/help/anjuta/C/anjuta-manual/figures/sharedlibs.png
share/gnome/help/anjuta/C/anjuta-manual/figures/signal_mod.png
share/gnome/help/anjuta/C/anjuta-manual/figures/signals.png
share/gnome/help/anjuta/C/anjuta-manual/figures/stack.png
share/gnome/help/anjuta/C/anjuta-manual/figures/supports.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_browser.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_debug.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_ext.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_format.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_main.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_tags.png
share/gnome/help/anjuta/C/anjuta-manual/figures/warnings.png
share/gnome/help/anjuta/C/anjuta-manual/figures/watch.png
share/gnome/help/anjuta/C/anjuta-manual/figures/watch_add.png
share/gnome/help/anjuta/C/anjuta-manual/file-operations.html
share/gnome/help/anjuta/C/anjuta-manual/includes.html
share/gnome/help/anjuta/C/anjuta-manual/index.html
share/gnome/help/anjuta/C/anjuta-manual/information.html
share/gnome/help/anjuta/C/anjuta-manual/introduction.html
share/gnome/help/anjuta/C/anjuta-manual/libpaths.html
share/gnome/help/anjuta/C/anjuta-manual/libraries.html
share/gnome/help/anjuta/C/anjuta-manual/ln15.html
share/gnome/help/anjuta/C/anjuta-manual/loadsave-prjs.html
share/gnome/help/anjuta/C/anjuta-manual/main-win.html
share/gnome/help/anjuta/C/anjuta-manual/menu.html
share/gnome/help/anjuta/C/anjuta-manual/multiple-find-files.html
share/gnome/help/anjuta/C/anjuta-manual/new-projects.html
share/gnome/help/anjuta/C/anjuta-manual/open-save-files.html
share/gnome/help/anjuta/C/anjuta-manual/optimization.html
share/gnome/help/anjuta/C/anjuta-manual/other-operations-files.html
share/gnome/help/anjuta/C/anjuta-manual/others.html
share/gnome/help/anjuta/C/anjuta-manual/preferences.html
share/gnome/help/anjuta/C/anjuta-manual/project-build.html
share/gnome/help/anjuta/C/anjuta-manual/project-config.html
share/gnome/help/anjuta/C/anjuta-manual/project-files.html
share/gnome/help/anjuta/C/anjuta-manual/project-information.html
share/gnome/help/anjuta/C/anjuta-manual/project-management.html
share/gnome/help/anjuta/C/anjuta-manual/running.html
share/gnome/help/anjuta/C/anjuta-manual/search-replace-files.html
share/gnome/help/anjuta/C/anjuta-manual/setting-compiler-options.html
share/gnome/help/anjuta/C/anjuta-manual/stack-frame-info.html
share/gnome/help/anjuta/C/anjuta-manual/stack-frame.html
share/gnome/help/anjuta/C/anjuta-manual/stack-update.html
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/caution.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/home.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/important.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/next.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/note.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/prev.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/tip.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-blank.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-minus.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-plus.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/up.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/warning.gif
share/gnome/help/anjuta/C/anjuta-manual/toolbars.html
share/gnome/help/anjuta/C/anjuta-manual/warnings.html
share/gnome/help/anjuta/C/topic.dat
share/gnome/omf/anjuta/anjuta-faqs-C.omf
share/gnome/omf/anjuta/anjuta-manual-C.omf
share/locale/es/LC_MESSAGES/anjuta.mo
share/locale/fr/LC_MESSAGES/anjuta.mo
share/locale/it/LC_MESSAGES/anjuta.mo
share/locale/ja/LC_MESSAGES/anjuta.mo
share/locale/ru/LC_MESSAGES/anjuta.mo
share/locale/sv/LC_MESSAGES/anjuta.mo
share/locale/tr/LC_MESSAGES/anjuta.mo
share/locale/uk/LC_MESSAGES/anjuta.mo
share/pixmaps/anjuta/add.xpm
share/pixmaps/anjuta/anjuta_icon.xpm
share/pixmaps/anjuta/anjuta_logo.png
share/pixmaps/anjuta/app_wizard.jpg
share/pixmaps/anjuta/appwid_blank.xpm
share/pixmaps/anjuta/appwid_book.xpm
share/pixmaps/anjuta/appwid_cd.xpm
share/pixmaps/anjuta/appwid_chart.xpm
share/pixmaps/anjuta/appwid_console.xpm
share/pixmaps/anjuta/appwid_data.xpm
share/pixmaps/anjuta/appwid_debug.xpm
share/pixmaps/anjuta/appwid_draw.xpm
share/pixmaps/anjuta/appwid_gear.xpm
share/pixmaps/anjuta/appwid_globe.xpm
share/pixmaps/anjuta/appwid_lib.xpm
share/pixmaps/anjuta/appwid_pack.xpm
share/pixmaps/anjuta/appwid_page.xpm
share/pixmaps/anjuta/appwid_page1.xpm
share/pixmaps/anjuta/appwid_penguin.xpm
share/pixmaps/anjuta/appwid_sheet.xpm
share/pixmaps/anjuta/appwid_wid.xpm
share/pixmaps/anjuta/appwid_www.xpm
share/pixmaps/anjuta/autocomplete.xpm
share/pixmaps/anjuta/bfoldc.xpm
share/pixmaps/anjuta/bfoldo.xpm
share/pixmaps/anjuta/blank.xpm
share/pixmaps/anjuta/block_end.xpm
share/pixmaps/anjuta/block_select.xpm
share/pixmaps/anjuta/block_start.xpm
share/pixmaps/anjuta/bookmark_first.xpm
share/pixmaps/anjuta/bookmark_last.xpm
share/pixmaps/anjuta/bookmark_next.xpm
share/pixmaps/anjuta/bookmark_prev.xpm
share/pixmaps/anjuta/bookmark_toggle.xpm
share/pixmaps/anjuta/breakpoint.xpm
share/pixmaps/anjuta/build.xpm
share/pixmaps/anjuta/build_all.xpm
share/pixmaps/anjuta/build_stop.xpm
share/pixmaps/anjuta/calltip.xpm
share/pixmaps/anjuta/close_file.xpm
share/pixmaps/anjuta/close_project.xpm
share/pixmaps/anjuta/compile.xpm
share/pixmaps/anjuta/configure.xpm
share/pixmaps/anjuta/console.xpm
share/pixmaps/anjuta/continue.xpm
share/pixmaps/anjuta/copy.xpm
share/pixmaps/anjuta/debug.xpm
share/pixmaps/anjuta/debug_stop.xpm
share/pixmaps/anjuta/dock.xpm
share/pixmaps/anjuta/error_next.xpm
share/pixmaps/anjuta/error_prev.xpm
share/pixmaps/anjuta/exec.xpm
share/pixmaps/anjuta/execute.xpm
share/pixmaps/anjuta/file_c.xpm
share/pixmaps/anjuta/file_cpp.xpm
share/pixmaps/anjuta/file_file.xpm
share/pixmaps/anjuta/file_h.xpm
share/pixmaps/anjuta/file_html.xpm
share/pixmaps/anjuta/file_i18n.xpm
share/pixmaps/anjuta/file_icon.xpm
share/pixmaps/anjuta/file_pix.xpm
share/pixmaps/anjuta/find.xpm
share/pixmaps/anjuta/find_replace.xpm
share/pixmaps/anjuta/fold_close.xpm
share/pixmaps/anjuta/fold_open.xpm
share/pixmaps/anjuta/fold_toggle.xpm
share/pixmaps/anjuta/frame.xpm
share/pixmaps/anjuta/gear.xpm
share/pixmaps/anjuta/goto.xpm
share/pixmaps/anjuta/graph.xpm
share/pixmaps/anjuta/handle_hide.xpm
share/pixmaps/anjuta/handle_undock.xpm
share/pixmaps/anjuta/help.xpm
share/pixmaps/anjuta/indent.xpm
share/pixmaps/anjuta/indent_auto.xpm
share/pixmaps/anjuta/indent_dcr.xpm
share/pixmaps/anjuta/indent_inc.xpm
share/pixmaps/anjuta/indent_set.xpm
share/pixmaps/anjuta/inspect.xpm
share/pixmaps/anjuta/interface.xpm
share/pixmaps/anjuta/interrupt.xpm
share/pixmaps/anjuta/ledgreen.xpm
share/pixmaps/anjuta/ledred.xpm
share/pixmaps/anjuta/line-arrow.xbm
share/pixmaps/anjuta/line-wrap.xbm
share/pixmaps/anjuta/list_select.xpm
share/pixmaps/anjuta/list_unselect.xpm
share/pixmaps/anjuta/messages.xpm
share/pixmaps/anjuta/mini-modules.xpm
share/pixmaps/anjuta/mini_build.xpm
share/pixmaps/anjuta/mini_cvs.xpm
share/pixmaps/anjuta/mini_debug.xpm
share/pixmaps/anjuta/mini_dock.xpm
share/pixmaps/anjuta/mini_find.xpm
share/pixmaps/anjuta/new_file.xpm
share/pixmaps/anjuta/open_file.xpm
share/pixmaps/anjuta/open_project.xpm
share/pixmaps/anjuta/paste.xpm
share/pixmaps/anjuta/pointer.xpm
share/pixmaps/anjuta/preferences.xpm
share/pixmaps/anjuta/print.xpm
share/pixmaps/anjuta/project.xpm
share/pixmaps/anjuta/redo.xpm
share/pixmaps/anjuta/registers.xpm
share/pixmaps/anjuta/reload.xpm
share/pixmaps/anjuta/reload_file.xpm
share/pixmaps/anjuta/remove.xpm
share/pixmaps/anjuta/run_to_cursor.xpm
share/pixmaps/anjuta/save.xpm
share/pixmaps/anjuta/save_all.xpm
share/pixmaps/anjuta/save_file.xpm
share/pixmaps/anjuta/save_project.xpm
share/pixmaps/anjuta/search.xpm
share/pixmaps/anjuta/stack.xpm
share/pixmaps/anjuta/step_in.xpm
share/pixmaps/anjuta/step_out.xpm
share/pixmaps/anjuta/step_over.xpm
share/pixmaps/anjuta/stop.xpm
share/pixmaps/anjuta/syntax.xpm
share/pixmaps/anjuta/undo.xpm
share/pixmaps/anjuta/undock.xpm
share/pixmaps/anjuta/watch.xpm
share/pixmaps/anjuta/wizard.xpm
@dirrm share/pixmaps/anjuta
@dirrm share/gnome/omf/anjuta
@dirrm share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images
@dirrm share/gnome/help/anjuta/C/anjuta-manual/figures
@dirrm share/gnome/help/anjuta/C/anjuta-manual
@dirrm share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images
@dirrm share/gnome/help/anjuta/C/anjuta-faqs/figures
@dirrm share/gnome/help/anjuta/C/anjuta-faqs
@dirrm share/gnome/help/anjuta/C
@dirrm share/gnome/help/anjuta
@dirrm share/anjuta
@dirrm doc/anjuta

View file

@ -6,7 +6,7 @@
#
PORTNAME= anjuta
PORTVERSION= 0.1.4
PORTVERSION= 0.1.6
CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= anjuta

View file

@ -1 +1 @@
MD5 (anjuta-0.1.4.tar.gz) = 334e57ae4e760de39aa9620a79f2587b
MD5 (anjuta-0.1.6.tar.gz) = f9e57f1dc990425dfbc91840c539366c

View file

@ -1,25 +1,15 @@
--- Makefile.in.orig Sat Mar 31 19:36:17 2001
+++ Makefile.in Sat Mar 31 19:37:04 2001
@@ -110,10 +110,10 @@
--- Makefile.in.orig Sun Aug 12 11:01:09 2001
+++ Makefile.in Sun Aug 12 11:02:14 2001
@@ -128,10 +128,10 @@
cxxflags_set = @cxxflags_set@
l = @l@
-SUBDIRS = intl po macros scintilla src pixmaps data help doc launcher
+SUBDIRS = intl po macros src pixmaps data help doc launcher
-SUBDIRS = intl po macros scintilla ccview widgets manuals omf-install src pixmaps data doc launcher
+SUBDIRS = intl po macros ccview widgets manuals omf-install src pixmaps data doc launcher
anjutadocdir = ${prefix}/doc/anjuta
-anjutadoc_DATA = README COPYING AUTHORS ChangeLog INSTALL NEWS TODO ABOUT-NLS
+anjutadoc_DATA =
EXTRA_DIST = anjuta.prj $(anjutadoc_DATA)
@@ -384,8 +384,7 @@
install-exec-am:
install-exec: install-exec-recursive
-install-data-am: install-anjutadocDATA install-gnomemenuDATA \
- install-data-local
+install-data-am: install-anjutadocDATA install-gnomemenuDATA
install-data: install-data-recursive
install-am: all-am
EXTRA_DIST = anjuta.desktop.in.in anjuta.prj anjuta.spec.in xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in $(anjutadoc_DATA)

View file

@ -1,5 +1,5 @@
--- configure.orig Sat Mar 31 19:18:57 2001
+++ configure Sat Mar 31 19:19:59 2001
--- configure.orig Sun Aug 12 11:02:48 2001
+++ configure Sun Aug 12 11:10:02 2001
@@ -8,6 +8,7 @@
# gives unlimited permission to copy, distribute and modify it.
@ -8,29 +8,20 @@
ac_help=
ac_default_prefix=/usr/local
# Any additions from configure.in:
@@ -4551,10 +4552,10 @@
PACKAGE_PIXMAPS_DIR="`gnome-config --datadir`/pixmaps/${PACKAGE}"
-PACKAGE_HELP_DIR="`gnome-config --datadir`/gnome/help/${PACKAGE}"
+PACKAGE_HELP_DIR="`gnome-config --datadir`/help/${PACKAGE}"
-PACKAGE_MENU_DIR="`gnome-config --datadir`/gnome/apps"
+PACKAGE_MENU_DIR="`gnome-config --datadir`/apps"
trap '' 1 2 15
@@ -4663,8 +4664,6 @@
@@ -4631,12 +4632,10 @@
intl/Makefile
po/Makefile.in
macros/Makefile
-scintilla/Makefile
ccview/Makefile
widgets/Makefile
manuals/Makefile
omf-install/Makefile
-scintilla/include/Makefile
anjuta.spec
src/Makefile
pixmaps/Makefile
@@ -4743,6 +4742,7 @@
manuals/C/Makefile
manuals/C/anjuta-manual/Makefile
manuals/C/anjuta-faqs/Makefile
@@ -4729,6 +4728,7 @@
s%@GNOME_CAPPLET_LIBS@%$GNOME_CAPPLET_LIBS%g
s%@cflags_set@%$cflags_set%g
s%@GTK_CONFIG@%$GTK_CONFIG%g
@ -38,12 +29,16 @@
s%@GTK_CFLAGS@%$GTK_CFLAGS%g
s%@GTK_LIBS@%$GTK_LIBS%g
s%@XPM_LIBS@%$XPM_LIBS%g
@@ -4818,8 +4818,6 @@
@@ -4820,12 +4820,10 @@
intl/Makefile
po/Makefile.in
macros/Makefile
-scintilla/Makefile
ccview/Makefile
widgets/Makefile
manuals/Makefile
omf-install/Makefile
-scintilla/include/Makefile
anjuta.spec
src/Makefile
pixmaps/Makefile
manuals/C/Makefile
manuals/C/anjuta-manual/Makefile
manuals/C/anjuta-faqs/Makefile

View file

@ -0,0 +1,11 @@
--- launcher/anjuta_launcher.c.orig Sun Aug 12 11:37:07 2001
+++ launcher/anjuta_launcher.c Sun Aug 12 11:37:15 2001
@@ -22,7 +22,7 @@
#endif
#include <sys/types.h>
-#include <sys/unistd.h>
+#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#include <glib.h>

View file

@ -0,0 +1,20 @@
--- po/Makefile.in.in.orig Tue Aug 7 01:13:27 2001
+++ po/Makefile.in.in Sun Aug 12 12:07:12 2001
@@ -20,7 +20,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = @datadir@
-localedir = $(datadir)/locale
+localedir = $(prefix)/share/locale
gettextsrcdir = $(datadir)/gettext/po
subdir = po
@@ -104,7 +104,7 @@
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\.gmo$$//'`; \
+ lang=`echo $$cat | sed 's/\.mo$$//'`; \
dir=$(localedir)/$$lang/LC_MESSAGES; \
$(mkinstalldirs) $(DESTDIR)$$dir; \
if test -r $$cat; then \

View file

@ -1,39 +1,39 @@
--- src/Makefile.in.orig Sat Mar 31 19:14:49 2001
+++ src/Makefile.in Sat Mar 31 19:17:53 2001
@@ -110,7 +110,7 @@
--- src/Makefile.in.orig Sun Aug 12 11:11:42 2001
+++ src/Makefile.in Sun Aug 12 11:15:59 2001
@@ -128,7 +128,7 @@
cxxflags_set = @cxxflags_set@
l = @l@
-INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I../scintilla/include -I. -I.. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
+INCLUDES = -I$(top_srcdir)/intl -I$(prefix)/include/scintilla $(GNOME_INCLUDEDIR) -I. -I.. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
-INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I$(srcdir)/../scintilla/include -I$(srcdir)/../widgets -I$(srcdir)/../ccview -I$(srcdir)/../pixmaps -I.. -I. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
+INCLUDES = -I$(top_srcdir)/intl $(GNOME_INCLUDEDIR) -I$(prefix)/include/scintilla -I$(srcdir)/../widgets -I$(srcdir)/../ccview -I$(srcdir)/../pixmaps -I.. -I. -DHAVE_CONFIG_H -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wtraditional -Wpointer-arith -Wmissing-prototypes -O1 -g
bin_PROGRAMS = anjuta
@@ -118,7 +118,7 @@
anjuta_SOURCES = aneditor.cxx aneditor.h anjuta.h anjuta_cbs.c anjuta_dirs.c anjuta_dirs.h anjuta_info.c anjuta_info.h appwidz_page1.c appwidz_page2.c appwidz_page3.c appwidzard.c appwidzard.h appwidzard_cbs.c appwidzard_cbs.h appwidzard_gui.c attach_process.c attach_process.h attach_process_cbs.c attach_process_cbs.h attach_process_gui.c breakpoints.c breakpoints.h breakpoints_cbs.c breakpoints_cbs.h breakpoints_gui.c build_file.c build_file.h build_project.c build_project.h clean_project.c clean_project.h commands.c commands.h compile.c compile.h compiler_options.c compiler_options.h compiler_options_cbs.c compiler_options_cbs.h compiler_options_gui.c configurer.c configurer.h controls.c controls.h debugger.c debugger.h executer.c executer.h fileselection.c fileselection.h find_in_files.c find_in_files.h find_in_files_cbs.c find_in_files_cbs.h find_in_files_gui.c find_replace.c find_replace.h find_text.c find_text.h global.h gnome_project.c gnome_project.h goto_line.c goto_line.h launcher.c launcher.h lexer.h main.c main_menubar.c main_menubar.h main_menubar_def.h mainmenu_callbacks.c mainmenu_callbacks.h messagebox.c messagebox.h messages.c messages.h pixmaps.h preferences.c preferences.h preferences_gui.c project_dbase.c project_dbase.h project_config.c project_config.h project_dbase_gui.c properties.cxx properties.h registers.c registers.h registers_cbs.c registers_cbs.h registers_gui.c sharedlib.c sharedlib.h sharedlib_cbs.c sharedlib_cbs.h sharedlib_gui.c signals.c signals.h signals_cbs.c signals_cbs.h signals_gui.c splash.c splash.h src_paths.c src_paths.h src_paths_cbs.c src_paths_cbs.h src_paths_gui.c stack_trace.c stack_trace.h stack_trace_cbs.c stack_trace_cbs.h stack_trace_gui.c support.c support.h syntax.h tags_manager.c tags_manager.h text_editor.c text_editor.h text_editor_cbs.c text_editor_cbs.h text_editor_gui.c text_editor_gui.h text_editor_menu.c text_editor_menu.h toolbar.c toolbar.h toolbar_callbacks.c toolbar_callbacks.h utilities.c utilities.h watch.c watch.h watch_cbs.c watch_cbs.h watch_gui.c about.c appwidz_page4.c source.c anjuta.c anjuta_gui.c source.h glade_iface.c glade_iface.h compatibility_0.c compatibility_0.h defaults.c defaults.h about.h
@@ -136,7 +136,7 @@
anjuta_SOURCES = aneditor.cxx aneditor.h anjuta.h anjuta_cbs.c anjuta_dirs.c anjuta_dirs.h anjuta_info.c anjuta_info.h appwiz_page1.c appwiz_page2.c appwiz_page3.c appwizard.c appwizard.h appwizard_cbs.c appwizard_cbs.h appwizard_gui.c attach_process.c attach_process.h attach_process_cbs.c attach_process_cbs.h attach_process_gui.c breakpoints.c breakpoints.h breakpoints_cbs.c breakpoints_cbs.h breakpoints_gui.c build_file.c build_file.h build_project.c build_project.h clean_project.c clean_project.h commands.c commands.h compile.c compile.h compiler_options.c compiler_options.h compiler_options_cbs.c compiler_options_cbs.h compiler_options_gui.c configurer.c configurer.h controls.c controls.h debugger.c debugger.h executer.c executer.h fileselection.c fileselection.h find_in_files.c find_in_files.h find_in_files_cbs.c find_in_files_cbs.h find_in_files_gui.c find_replace.c find_replace.h find_text.c find_text.h global.h gnome_project.c gnome_project.h goto_line.c goto_line.h help.c help.h launcher.c launcher.h lexer.h main.c main_menubar.c main_menubar.h main_menubar_def.h mainmenu_callbacks.c mainmenu_callbacks.h messagebox.c messagebox.h messages.c messages.h pixmaps.h preferences.c preferences.h preferences_gui.c project_dbase.c project_dbase.h project_config.c project_config.h project_dbase_gui.c properties.cxx properties.h registers.c registers.h registers_cbs.c registers_cbs.h registers_gui.c sharedlib.c sharedlib.h sharedlib_cbs.c sharedlib_cbs.h sharedlib_gui.c signals.c signals.h signals_cbs.c signals_cbs.h signals_gui.c splash.c splash.h src_paths.c src_paths.h src_paths_cbs.c src_paths_cbs.h src_paths_gui.c stack_trace.c stack_trace.h stack_trace_cbs.c stack_trace_cbs.h stack_trace_gui.c syntax.h tags_manager.c tags_manager.h text_editor.c text_editor.h text_editor_cbs.c text_editor_cbs.h text_editor_gui.c text_editor_gui.h text_editor_menu.c text_editor_menu.h toolbar.c toolbar.h toolbar_callbacks.c toolbar_callbacks.h utilities.c utilities.h watch.c watch.h watch_cbs.c watch_cbs.h watch_gui.c about.c appwiz_page4.c source.c anjuta.c anjuta_gui.c source.h glade_iface.c glade_iface.h compatibility_0.c compatibility_0.h defaults.c defaults.h about.h resources.c resources.h notebook.c notebook.h
-anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../scintilla -lscintilla ../scintilla/LexCPP.o ../scintilla/LexConf.o ../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o ../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o ../scintilla/LexVB.o ../scintilla/LexPascal.o
+anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -lscintilla
-anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../scintilla -L../widgets -L../ccview ../scintilla/LexCPP.o ../scintilla/LexConf.o ../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o ../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o ../scintilla/LexVB.o ../scintilla/LexPascal.o ../scintilla/LexAVE.o -lwidgets -lccview -lxml -lscintilla
+anjuta_LDADD = $(INTLLIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -L../widgets -L../ccview -lwidgets -lccview -lxml -lscintilla
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
@@ -150,10 +150,7 @@
utilities.o watch.o watch_cbs.o watch_gui.o about.o appwidz_page4.o \
source.o anjuta.o anjuta_gui.o glade_iface.o compatibility_0.o \
defaults.o
@@ -168,10 +168,7 @@
watch_cbs.o watch_gui.o about.o appwiz_page4.o source.o anjuta.o \
anjuta_gui.o glade_iface.o compatibility_0.o defaults.o resources.o \
notebook.o
-anjuta_DEPENDENCIES = ../scintilla/LexCPP.o ../scintilla/LexConf.o \
-../scintilla/LexHTML.o ../scintilla/LexLua.o ../scintilla/LexOthers.o \
-../scintilla/LexPerl.o ../scintilla/LexPython.o ../scintilla/LexSQL.o \
-../scintilla/LexVB.o ../scintilla/LexPascal.o
+anjuta_DEPENDENCIES =
-../scintilla/LexVB.o ../scintilla/LexPascal.o ../scintilla/LexAVE.o
+anjuta_DEPENDENCIES =
anjuta_LDFLAGS =
CXXFLAGS = @CXXFLAGS@
CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
@@ -279,14 +276,8 @@
@@ -297,14 +294,7 @@
fi; \
done
about.o: about.c ../config.h utilities.h support.h about.h
about.o: about.c ../config.h utilities.h resources.h about.h
-aneditor.o: aneditor.cxx ../config.h ../scintilla/include/Platform.h \
- ../scintilla/include/PropSet.h ../scintilla/include/SString.h \
- ../scintilla/include/Accessor.h \
@ -42,93 +42,92 @@
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h \
- ../scintilla/include/SciLexer.h lexer.h properties.h aneditor.h
+aneditor.o: aneditor.cxx ../config.h \
+ lexer.h properties.h aneditor.h
+aneditor.o: aneditor.cxx ../config.h lexer.h properties.h aneditor.h
anjuta.o: anjuta.c ../config.h text_editor.h global.h text_editor_menu.h \
preferences.h properties.h aneditor.h anjuta.h toolbar.h \
messagebox.h compiler_options.h src_paths.h find_replace.h \
@@ -295,9 +286,7 @@
@@ -313,9 +303,7 @@
anjuta_dirs.h executer.h configurer.h utilities.h \
main_menubar.h fileselection.h support.h launcher.h debugger.h \
watch.h registers.h stack_trace.h signals.h sharedlib.h \
- attach_process.h controls.h anjuta_info.h \
main_menubar.h help.h fileselection.h resources.h launcher.h \
debugger.h watch.h registers.h stack_trace.h signals.h \
- sharedlib.h attach_process.h controls.h anjuta_info.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ attach_process.h controls.h anjuta_info.h
+ sharedlib.h attach_process.h controls.h anjuta_info.h
anjuta_cbs.o: anjuta_cbs.c ../config.h text_editor.h global.h \
text_editor_menu.h preferences.h properties.h aneditor.h \
anjuta.h toolbar.h messagebox.h compiler_options.h src_paths.h \
@@ -480,9 +469,7 @@
messagebox.h compiler_options.h src_paths.h find_replace.h \
@@ -501,8 +489,7 @@
find_text.h find_in_files.h messages.h project_dbase.h \
tags_manager.h project_config.h commands.h anjuta_dirs.h \
- executer.h configurer.h utilities.h main_menubar.h controls.h \
- ../scintilla/include/Scintilla.h \
executer.h configurer.h utilities.h main_menubar.h help.h \
- controls.h ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ executer.h configurer.h utilities.h main_menubar.h controls.h
+ controls.h
debugger.o: debugger.c ../config.h anjuta.h toolbar.h text_editor.h \
global.h text_editor_menu.h preferences.h properties.h \
aneditor.h messagebox.h compiler_options.h src_paths.h \
@@ -535,9 +522,7 @@
@@ -557,9 +544,7 @@
src_paths.h find_replace.h find_text.h find_in_files.h \
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
- utilities.h main_menubar.h support.h \
- utilities.h main_menubar.h help.h resources.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ utilities.h main_menubar.h support.h
+ utilities.h main_menubar.h help.h resources.h
find_text.o: find_text.c ../config.h anjuta.h toolbar.h text_editor.h \
global.h text_editor_menu.h preferences.h properties.h \
aneditor.h messagebox.h compiler_options.h src_paths.h \
@@ -600,8 +585,7 @@
launcher.h appwidzard.h debugger.h watch.h registers.h \
@@ -629,8 +614,7 @@
compile.h launcher.h appwizard.h debugger.h watch.h registers.h \
stack_trace.h signals.h sharedlib.h attach_process.h \
breakpoints_cbs.h goto_line.h support.h controls.h \
breakpoints_cbs.h goto_line.h resources.h controls.h \
- signals_cbs.h watch_cbs.h ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ signals_cbs.h watch_cbs.h
messagebox.o: messagebox.c ../config.h text_editor.h global.h \
text_editor_menu.h preferences.h properties.h aneditor.h \
mainmenu_callbacks.h messagebox.h support.h
@@ -653,8 +637,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h support.h
mainmenu_callbacks.h messagebox.h resources.h
@@ -685,8 +669,7 @@
project_config.h commands.h breakpoints.h anjuta_dirs.h \
executer.h configurer.h utilities.h main_menubar.h help.h \
resources.h fileselection.h
-properties.o: properties.cxx ../scintilla/include/PropSet.h \
- ../scintilla/include/SString.h properties.h
+properties.o: properties.cxx properties.h
registers.o: registers.c ../config.h support.h debugger.h global.h \
registers.o: registers.c ../config.h resources.h debugger.h global.h \
breakpoints.h properties.h text_editor.h text_editor_menu.h \
preferences.h aneditor.h watch.h registers.h stack_trace.h \
@@ -758,9 +741,7 @@
@@ -791,10 +774,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h text_editor_gui.h text_editor_cbs.h \
- syntax.h launcher.h ../scintilla/include/Scintilla.h \
utilities.h main_menubar.h help.h text_editor_gui.h \
- text_editor_cbs.h syntax.h launcher.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/SciLexer.h \
- ../scintilla/include/ScintillaWidget.h lexer.h controls.h
+ syntax.h launcher.h lexer.h controls.h
+ text_editor_cbs.h syntax.h launcher.h lexer.h controls.h
text_editor_cbs.o: text_editor_cbs.c ../config.h anjuta.h toolbar.h \
text_editor.h global.h text_editor_menu.h preferences.h \
properties.h aneditor.h messagebox.h compiler_options.h \
@@ -768,8 +749,7 @@
@@ -802,8 +782,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h controls.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h support.h \
utilities.h main_menubar.h help.h controls.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h resources.h \
- ../scintilla/include/Scintilla.h
+ text_editor_gui.h mainmenu_callbacks.h support.h
+ text_editor_gui.h mainmenu_callbacks.h resources.h
text_editor_gui.o: text_editor_gui.c ../config.h anjuta.h toolbar.h \
text_editor.h global.h text_editor_menu.h preferences.h \
properties.h aneditor.h messagebox.h compiler_options.h \
@@ -777,9 +757,7 @@
@@ -811,9 +790,7 @@
messages.h project_dbase.h tags_manager.h project_config.h \
commands.h breakpoints.h anjuta_dirs.h executer.h configurer.h \
utilities.h main_menubar.h text_editor_cbs.h text_editor_gui.h \
- mainmenu_callbacks.h pixmaps.h support.h \
utilities.h main_menubar.h help.h text_editor_cbs.h \
- text_editor_gui.h mainmenu_callbacks.h pixmaps.h resources.h \
- ../scintilla/include/Scintilla.h \
- ../scintilla/include/ScintillaWidget.h
+ mainmenu_callbacks.h pixmaps.h support.h
text_editor_menu.o: text_editor_menu.c ../config.h support.h \
+ text_editor_gui.h mainmenu_callbacks.h pixmaps.h resources.h
text_editor_menu.o: text_editor_menu.c ../config.h resources.h \
text_editor_menu.h anjuta.h toolbar.h text_editor.h global.h \
preferences.h properties.h aneditor.h messagebox.h \

View file

@ -1,17 +0,0 @@
--- src/anjuta_dirs.c.orig Sat Mar 31 18:41:13 2001
+++ src/anjuta_dirs.c Sat Mar 31 18:46:47 2001
@@ -36,11 +36,11 @@
{
sharedir = g_dirname(PACKAGE_LOCALE_DIR);
ad->tmp = g_strdup(g_get_tmp_dir());
- ad->datadir = g_strconcat(sharedir, "/anjuta", NULL);
+ ad->datadir = g_strconcat(sharedir, "/gnome/anjuta", NULL);
ad->data = g_strdup(ad->datadir);
ad->templetes = g_strdup(ad->datadir);
- ad->pixmaps = g_strconcat(ad->datadir, "/pixmaps", NULL);
- /* ad->help = g_strconcat(ad->datadir, "/help", NULL); */
+ ad->pixmaps = g_strconcat(sharedir, "/gnome/pixmaps", NULL);
+ /* ad->help = g_strconcat(sharedir, "/gnome/help", NULL); */
ad->doc = g_strconcat(sharedir, "/doc/anjuta", NULL);
ad->home = g_strdup(g_get_home_dir());
ad->settings = g_strconcat(ad->home, "/.anjuta",NULL);

View file

@ -1,221 +1,314 @@
bin/anjuta
bin/anjuta_launcher
share/locale/ja/LC_MESSAGES/anjuta.mo
share/gnome/pixmaps/anjuta/add.xpm
share/gnome/pixmaps/anjuta/anjuta_icon.xpm
share/gnome/pixmaps/anjuta/anjuta_logo.png
share/gnome/pixmaps/anjuta/app_widzard.jpg
share/gnome/pixmaps/anjuta/appwid_blank.xpm
share/gnome/pixmaps/anjuta/appwid_book.xpm
share/gnome/pixmaps/anjuta/appwid_cd.xpm
share/gnome/pixmaps/anjuta/appwid_chart.xpm
share/gnome/pixmaps/anjuta/appwid_console.xpm
share/gnome/pixmaps/anjuta/appwid_data.xpm
share/gnome/pixmaps/anjuta/appwid_debug.xpm
share/gnome/pixmaps/anjuta/appwid_draw.xpm
share/gnome/pixmaps/anjuta/appwid_gear.xpm
share/gnome/pixmaps/anjuta/appwid_globe.xpm
share/gnome/pixmaps/anjuta/appwid_lib.xpm
share/gnome/pixmaps/anjuta/appwid_pack.xpm
share/gnome/pixmaps/anjuta/appwid_page.xpm
share/gnome/pixmaps/anjuta/appwid_page1.xpm
share/gnome/pixmaps/anjuta/appwid_penguin.xpm
share/gnome/pixmaps/anjuta/appwid_sheet.xpm
share/gnome/pixmaps/anjuta/appwid_wid.xpm
share/gnome/pixmaps/anjuta/appwid_www.xpm
share/gnome/pixmaps/anjuta/autocomplete.xpm
share/gnome/pixmaps/anjuta/bfoldc.xpm
share/gnome/pixmaps/anjuta/bfoldo.xpm
share/gnome/pixmaps/anjuta/blank.xpm
share/gnome/pixmaps/anjuta/block_end.xpm
share/gnome/pixmaps/anjuta/block_select.xpm
share/gnome/pixmaps/anjuta/block_start.xpm
share/gnome/pixmaps/anjuta/bookmark_first.xpm
share/gnome/pixmaps/anjuta/bookmark_last.xpm
share/gnome/pixmaps/anjuta/bookmark_next.xpm
share/gnome/pixmaps/anjuta/bookmark_prev.xpm
share/gnome/pixmaps/anjuta/bookmark_toggle.xpm
share/gnome/pixmaps/anjuta/breakpoint.xpm
share/gnome/pixmaps/anjuta/build.xpm
share/gnome/pixmaps/anjuta/build_all.xpm
share/gnome/pixmaps/anjuta/build_stop.xpm
share/gnome/pixmaps/anjuta/calltip.xpm
share/gnome/pixmaps/anjuta/compile.xpm
share/gnome/pixmaps/anjuta/close_file.xpm
share/gnome/pixmaps/anjuta/close_project.xpm
share/gnome/pixmaps/anjuta/configure.xpm
share/gnome/pixmaps/anjuta/console.xpm
share/gnome/pixmaps/anjuta/continue.xpm
share/gnome/pixmaps/anjuta/copy.xpm
share/gnome/pixmaps/anjuta/debug.xpm
share/gnome/pixmaps/anjuta/debug_stop.xpm
share/gnome/pixmaps/anjuta/dock.xpm
share/gnome/pixmaps/anjuta/error_next.xpm
share/gnome/pixmaps/anjuta/error_prev.xpm
share/gnome/pixmaps/anjuta/exec.xpm
share/gnome/pixmaps/anjuta/execute.xpm
share/gnome/pixmaps/anjuta/file_c.xpm
share/gnome/pixmaps/anjuta/file_cpp.xpm
share/gnome/pixmaps/anjuta/file_file.xpm
share/gnome/pixmaps/anjuta/file_h.xpm
share/gnome/pixmaps/anjuta/file_pix.xpm
share/gnome/pixmaps/anjuta/find.xpm
share/gnome/pixmaps/anjuta/find_replace.xpm
share/gnome/pixmaps/anjuta/fold_close.xpm
share/gnome/pixmaps/anjuta/fold_open.xpm
share/gnome/pixmaps/anjuta/fold_toggle.xpm
share/gnome/pixmaps/anjuta/frame.xpm
share/gnome/pixmaps/anjuta/gear.xpm
share/gnome/pixmaps/anjuta/goto.xpm
share/gnome/pixmaps/anjuta/graph.xpm
share/gnome/pixmaps/anjuta/handle_hide.xpm
share/gnome/pixmaps/anjuta/handle_undock.xpm
share/gnome/pixmaps/anjuta/help.xpm
share/gnome/pixmaps/anjuta/indent.xpm
share/gnome/pixmaps/anjuta/indent_auto.xpm
share/gnome/pixmaps/anjuta/indent_dcr.xpm
share/gnome/pixmaps/anjuta/indent_inc.xpm
share/gnome/pixmaps/anjuta/indent_set.xpm
share/gnome/pixmaps/anjuta/inspect.xpm
share/gnome/pixmaps/anjuta/interface.xpm
share/gnome/pixmaps/anjuta/interrupt.xpm
share/gnome/pixmaps/anjuta/ledgreen.xpm
share/gnome/pixmaps/anjuta/ledred.xpm
share/gnome/pixmaps/anjuta/line-arrow.xbm
share/gnome/pixmaps/anjuta/line-wrap.xbm
share/gnome/pixmaps/anjuta/list_select.xpm
share/gnome/pixmaps/anjuta/list_unselect.xpm
share/gnome/pixmaps/anjuta/messages.xpm
share/gnome/pixmaps/anjuta/mini-modules.xpm
share/gnome/pixmaps/anjuta/mini_build.xpm
share/gnome/pixmaps/anjuta/mini_cvs.xpm
share/gnome/pixmaps/anjuta/mini_debug.xpm
share/gnome/pixmaps/anjuta/mini_dock.xpm
share/gnome/pixmaps/anjuta/mini_find.xpm
share/gnome/pixmaps/anjuta/new_file.xpm
share/gnome/pixmaps/anjuta/open_file.xpm
share/gnome/pixmaps/anjuta/open_project.xpm
share/gnome/pixmaps/anjuta/paste.xpm
share/gnome/pixmaps/anjuta/pointer.xpm
share/gnome/pixmaps/anjuta/preferences.xpm
share/gnome/pixmaps/anjuta/print.xpm
share/gnome/pixmaps/anjuta/project.xpm
share/gnome/pixmaps/anjuta/redo.xpm
share/gnome/pixmaps/anjuta/registers.xpm
share/gnome/pixmaps/anjuta/reload.xpm
share/gnome/pixmaps/anjuta/reload_file.xpm
share/gnome/pixmaps/anjuta/remove.xpm
share/gnome/pixmaps/anjuta/save.xpm
share/gnome/pixmaps/anjuta/save_all.xpm
share/gnome/pixmaps/anjuta/save_file.xpm
share/gnome/pixmaps/anjuta/save_project.xpm
share/gnome/pixmaps/anjuta/search.xpm
share/gnome/pixmaps/anjuta/stack.xpm
share/gnome/pixmaps/anjuta/step_in.xpm
share/gnome/pixmaps/anjuta/step_out.xpm
share/gnome/pixmaps/anjuta/step_over.xpm
share/gnome/pixmaps/anjuta/stop.xpm
share/gnome/pixmaps/anjuta/syntax.xpm
share/gnome/pixmaps/anjuta/undo.xpm
share/gnome/pixmaps/anjuta/undock.xpm
share/gnome/pixmaps/anjuta/watch.xpm
share/gnome/pixmaps/anjuta/widzard.xpm
share/gnome/pixmaps/anjuta/file_icon.xpm
share/gnome/pixmaps/anjuta/file_html.xpm
share/gnome/pixmaps/anjuta/run_to_cursor.xpm
share/gnome/pixmaps/anjuta/file_i18n.xpm
share/gnome/help/anjuta/C/anjuta_logo.jpg
share/gnome/help/anjuta/C/arguments.jpg
share/gnome/help/anjuta/C/brk_add.jpg
share/gnome/help/anjuta/C/brk_dlg.jpg
share/gnome/help/anjuta/C/brk_edit.jpg
share/gnome/help/anjuta/C/browse_toolbar.jpg
share/gnome/help/anjuta/C/configure_dlg.jpg
share/gnome/help/anjuta/C/defines.jpg
share/gnome/help/anjuta/C/evaluate.jpg
share/gnome/help/anjuta/C/find_files.jpg
share/gnome/help/anjuta/C/find_replace.jpg
share/gnome/help/anjuta/C/find_text.jpg
share/gnome/help/anjuta/C/frame.jpg
share/gnome/help/anjuta/C/includes.jpg
share/gnome/help/anjuta/C/index.html
share/gnome/help/anjuta/C/index2.html
share/gnome/help/anjuta/C/inspect.jpg
share/gnome/help/anjuta/C/lib_paths.jpg
share/gnome/help/anjuta/C/libraries.jpg
share/gnome/help/anjuta/C/menu_detached.jpg
share/gnome/help/anjuta/C/page00.html
share/gnome/help/anjuta/C/message_win.jpg
share/gnome/help/anjuta/C/open_file.jpg
share/gnome/help/anjuta/C/optimizations.jpg
share/gnome/help/anjuta/C/other_opts.jpg
share/gnome/help/anjuta/C/page01.html
share/gnome/help/anjuta/C/page02.html
share/gnome/help/anjuta/C/page03.html
share/gnome/help/anjuta/C/page04.html
share/gnome/help/anjuta/C/page05.html
share/gnome/help/anjuta/C/page06.html
share/gnome/help/anjuta/C/page07.html
share/gnome/help/anjuta/C/page08.html
share/gnome/help/anjuta/C/page09.html
share/gnome/help/anjuta/C/page10.html
share/gnome/help/anjuta/C/page100.html
share/gnome/help/anjuta/C/page104.html
share/gnome/help/anjuta/C/page11.html
share/gnome/help/anjuta/C/page110.html
share/gnome/help/anjuta/C/page111.html
share/gnome/help/anjuta/C/page112.html
share/gnome/help/anjuta/C/page113.html
share/gnome/help/anjuta/C/page114.html
share/gnome/help/anjuta/C/page115.html
share/gnome/help/anjuta/C/page12.html
share/gnome/help/anjuta/C/page13.html
share/gnome/help/anjuta/C/page14.html
share/gnome/help/anjuta/C/page15.html
share/gnome/help/anjuta/C/page16.html
share/gnome/help/anjuta/C/page17.html
share/gnome/help/anjuta/C/page18.html
share/gnome/help/anjuta/C/page19.html
share/gnome/help/anjuta/C/page20.html
share/gnome/help/anjuta/C/page21.html
share/gnome/help/anjuta/C/page22.html
share/gnome/help/anjuta/C/page23.html
share/gnome/help/anjuta/C/page24.html
share/gnome/help/anjuta/C/page25.html
share/gnome/help/anjuta/C/page26.html
share/gnome/help/anjuta/C/page27.html
share/gnome/help/anjuta/C/page28.html
share/gnome/help/anjuta/C/page29.html
share/gnome/help/anjuta/C/page30.html
share/gnome/help/anjuta/C/page31.html
share/gnome/help/anjuta/C/page32.html
share/gnome/help/anjuta/C/page33.html
share/gnome/help/anjuta/C/page34.html
share/gnome/help/anjuta/C/project_info.jpg
share/gnome/help/anjuta/C/project_win.jpg
share/gnome/help/anjuta/C/replace_text.jpg
share/gnome/help/anjuta/C/scrshot.jpg
share/gnome/help/anjuta/C/signal_mod.jpg
share/gnome/help/anjuta/C/signals.jpg
share/gnome/help/anjuta/C/stack.jpg
share/gnome/help/anjuta/C/supports.jpg
share/gnome/help/anjuta/C/topic.dat
share/gnome/help/anjuta/C/warnings.jpg
share/gnome/help/anjuta/C/watch.jpg
share/gnome/help/anjuta/C/watch_add.jpg
share/anjuta/README.stock_libs
share/anjuta/anjuta.properties
share/anjuta/autogen.sh.generic
share/anjuta/autogen.sh.gnome
share/anjuta/autogen.sh.gnomemm
share/anjuta/autogen.sh.gtk
share/anjuta/autogen.sh.gtkmm
share/anjuta/gdb.init
share/anjuta/header.c
share/anjuta/internal.properties
share/anjuta/linux-gnome-c.api
share/anjuta/stock_libs.anj
share/anjuta/tags2api.py
share/anjuta/welcome.txt
share/gnome/apps/Development/anjuta.desktop
share/gnome/anjuta/anjuta.properties
share/gnome/anjuta/gdb.init
share/gnome/anjuta/README.stock_libs
share/gnome/anjuta/header.c
share/gnome/anjuta/internal.properties
share/gnome/anjuta/stock_libs.anj
share/gnome/anjuta/welcome.txt
share/gnome/anjuta/autogen.sh.gnome
share/gnome/anjuta/autogen.sh.gtk
share/gnome/anjuta/autogen.sh.generic
share/gnome/anjuta/linux-gnome-c.api
@dirrm share/gnome/pixmaps/anjuta
@dirrm share/gnome/anjuta
share/gnome/help/anjuta/C/anjuta-faqs/anjuta-faqs.sgml
share/gnome/help/anjuta/C/anjuta-faqs/docbook.css
share/gnome/help/anjuta/C/anjuta-faqs/index.html
share/gnome/help/anjuta/C/anjuta-faqs/ln7.html
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/caution.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/home.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/important.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/next.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/note.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/prev.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/tip.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-blank.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-minus.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/toc-plus.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/up.gif
share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images/warning.gif
share/gnome/help/anjuta/C/anjuta-manual/add-rm-files.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-contacts.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-license.html
share/gnome/help/anjuta/C/anjuta-manual/anjuta-manual.sgml
share/gnome/help/anjuta/C/anjuta-manual/breaks-del.html
share/gnome/help/anjuta/C/anjuta-manual/breaks-edit.html
share/gnome/help/anjuta/C/anjuta-manual/breaks-enbdis.html
share/gnome/help/anjuta/C/anjuta-manual/browsing-files.html
share/gnome/help/anjuta/C/anjuta-manual/building.html
share/gnome/help/anjuta/C/anjuta-manual/chapter01.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter02.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter03.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter04.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter05.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter06.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter07.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter08.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter09.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter10.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter11.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter12.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter13.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter14.sgml
share/gnome/help/anjuta/C/anjuta-manual/chapter15.sgml
share/gnome/help/anjuta/C/anjuta-manual/dbg-dyna-libs.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-interrupt.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-registers.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-restart.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-run.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-step-out.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-step-over.html
share/gnome/help/anjuta/C/anjuta-manual/dbg-stop.html
share/gnome/help/anjuta/C/anjuta-manual/debug-attach.html
share/gnome/help/anjuta/C/anjuta-manual/debug-core.html
share/gnome/help/anjuta/C/anjuta-manual/debug-loading.html
share/gnome/help/anjuta/C/anjuta-manual/debug-start.html
share/gnome/help/anjuta/C/anjuta-manual/debugger-exec.html
share/gnome/help/anjuta/C/anjuta-manual/debugger-others.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-breaks.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-exprs.html
share/gnome/help/anjuta/C/anjuta-manual/debugging-stack.html
share/gnome/help/anjuta/C/anjuta-manual/debugging.html
share/gnome/help/anjuta/C/anjuta-manual/defines.html
share/gnome/help/anjuta/C/anjuta-manual/docbook.css
share/gnome/help/anjuta/C/anjuta-manual/editing-files.html
share/gnome/help/anjuta/C/anjuta-manual/expr-watch.html
share/gnome/help/anjuta/C/anjuta-manual/familiar.html
share/gnome/help/anjuta/C/anjuta-manual/figures/arguments.png
share/gnome/help/anjuta/C/anjuta-manual/figures/attach.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_add.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_dlg.png
share/gnome/help/anjuta/C/anjuta-manual/figures/brk_edit.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview_class.png
share/gnome/help/anjuta/C/anjuta-manual/figures/ccview_struct.png
share/gnome/help/anjuta/C/anjuta-manual/figures/configure_dlg.png
share/gnome/help/anjuta/C/anjuta-manual/figures/defines.png
share/gnome/help/anjuta/C/anjuta-manual/figures/devt_menu.png
share/gnome/help/anjuta/C/anjuta-manual/figures/evaluate.png
share/gnome/help/anjuta/C/anjuta-manual/figures/fileview.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_files.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_replace.png
share/gnome/help/anjuta/C/anjuta-manual/figures/find_text.png
share/gnome/help/anjuta/C/anjuta-manual/figures/frame.png
share/gnome/help/anjuta/C/anjuta-manual/figures/includes.png
share/gnome/help/anjuta/C/anjuta-manual/figures/inspect.png
share/gnome/help/anjuta/C/anjuta-manual/figures/lib_paths.png
share/gnome/help/anjuta/C/anjuta-manual/figures/libraries.png
share/gnome/help/anjuta/C/anjuta-manual/figures/menu_detached.png
share/gnome/help/anjuta/C/anjuta-manual/figures/menu_main.png
share/gnome/help/anjuta/C/anjuta-manual/figures/message_win.png
share/gnome/help/anjuta/C/anjuta-manual/figures/open_file.png
share/gnome/help/anjuta/C/anjuta-manual/figures/optimizations.png
share/gnome/help/anjuta/C/anjuta-manual/figures/other_opts.png
share/gnome/help/anjuta/C/anjuta-manual/figures/project_info.png
share/gnome/help/anjuta/C/anjuta-manual/figures/project_win.png
share/gnome/help/anjuta/C/anjuta-manual/figures/registers.png
share/gnome/help/anjuta/C/anjuta-manual/figures/scrshot.png
share/gnome/help/anjuta/C/anjuta-manual/figures/sharedlibs.png
share/gnome/help/anjuta/C/anjuta-manual/figures/signal_mod.png
share/gnome/help/anjuta/C/anjuta-manual/figures/signals.png
share/gnome/help/anjuta/C/anjuta-manual/figures/stack.png
share/gnome/help/anjuta/C/anjuta-manual/figures/supports.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_browser.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_debug.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_ext.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_format.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_main.png
share/gnome/help/anjuta/C/anjuta-manual/figures/toolbar_tags.png
share/gnome/help/anjuta/C/anjuta-manual/figures/warnings.png
share/gnome/help/anjuta/C/anjuta-manual/figures/watch.png
share/gnome/help/anjuta/C/anjuta-manual/figures/watch_add.png
share/gnome/help/anjuta/C/anjuta-manual/file-operations.html
share/gnome/help/anjuta/C/anjuta-manual/includes.html
share/gnome/help/anjuta/C/anjuta-manual/index.html
share/gnome/help/anjuta/C/anjuta-manual/information.html
share/gnome/help/anjuta/C/anjuta-manual/introduction.html
share/gnome/help/anjuta/C/anjuta-manual/libpaths.html
share/gnome/help/anjuta/C/anjuta-manual/libraries.html
share/gnome/help/anjuta/C/anjuta-manual/ln15.html
share/gnome/help/anjuta/C/anjuta-manual/loadsave-prjs.html
share/gnome/help/anjuta/C/anjuta-manual/main-win.html
share/gnome/help/anjuta/C/anjuta-manual/menu.html
share/gnome/help/anjuta/C/anjuta-manual/multiple-find-files.html
share/gnome/help/anjuta/C/anjuta-manual/new-projects.html
share/gnome/help/anjuta/C/anjuta-manual/open-save-files.html
share/gnome/help/anjuta/C/anjuta-manual/optimization.html
share/gnome/help/anjuta/C/anjuta-manual/other-operations-files.html
share/gnome/help/anjuta/C/anjuta-manual/others.html
share/gnome/help/anjuta/C/anjuta-manual/preferences.html
share/gnome/help/anjuta/C/anjuta-manual/project-build.html
share/gnome/help/anjuta/C/anjuta-manual/project-config.html
share/gnome/help/anjuta/C/anjuta-manual/project-files.html
share/gnome/help/anjuta/C/anjuta-manual/project-information.html
share/gnome/help/anjuta/C/anjuta-manual/project-management.html
share/gnome/help/anjuta/C/anjuta-manual/running.html
share/gnome/help/anjuta/C/anjuta-manual/search-replace-files.html
share/gnome/help/anjuta/C/anjuta-manual/setting-compiler-options.html
share/gnome/help/anjuta/C/anjuta-manual/stack-frame-info.html
share/gnome/help/anjuta/C/anjuta-manual/stack-frame.html
share/gnome/help/anjuta/C/anjuta-manual/stack-update.html
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/caution.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/home.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/important.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/next.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/note.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/prev.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/tip.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-blank.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-minus.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/toc-plus.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/up.gif
share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images/warning.gif
share/gnome/help/anjuta/C/anjuta-manual/toolbars.html
share/gnome/help/anjuta/C/anjuta-manual/warnings.html
share/gnome/help/anjuta/C/topic.dat
share/gnome/omf/anjuta/anjuta-faqs-C.omf
share/gnome/omf/anjuta/anjuta-manual-C.omf
share/locale/es/LC_MESSAGES/anjuta.mo
share/locale/fr/LC_MESSAGES/anjuta.mo
share/locale/it/LC_MESSAGES/anjuta.mo
share/locale/ja/LC_MESSAGES/anjuta.mo
share/locale/ru/LC_MESSAGES/anjuta.mo
share/locale/sv/LC_MESSAGES/anjuta.mo
share/locale/tr/LC_MESSAGES/anjuta.mo
share/locale/uk/LC_MESSAGES/anjuta.mo
share/pixmaps/anjuta/add.xpm
share/pixmaps/anjuta/anjuta_icon.xpm
share/pixmaps/anjuta/anjuta_logo.png
share/pixmaps/anjuta/app_wizard.jpg
share/pixmaps/anjuta/appwid_blank.xpm
share/pixmaps/anjuta/appwid_book.xpm
share/pixmaps/anjuta/appwid_cd.xpm
share/pixmaps/anjuta/appwid_chart.xpm
share/pixmaps/anjuta/appwid_console.xpm
share/pixmaps/anjuta/appwid_data.xpm
share/pixmaps/anjuta/appwid_debug.xpm
share/pixmaps/anjuta/appwid_draw.xpm
share/pixmaps/anjuta/appwid_gear.xpm
share/pixmaps/anjuta/appwid_globe.xpm
share/pixmaps/anjuta/appwid_lib.xpm
share/pixmaps/anjuta/appwid_pack.xpm
share/pixmaps/anjuta/appwid_page.xpm
share/pixmaps/anjuta/appwid_page1.xpm
share/pixmaps/anjuta/appwid_penguin.xpm
share/pixmaps/anjuta/appwid_sheet.xpm
share/pixmaps/anjuta/appwid_wid.xpm
share/pixmaps/anjuta/appwid_www.xpm
share/pixmaps/anjuta/autocomplete.xpm
share/pixmaps/anjuta/bfoldc.xpm
share/pixmaps/anjuta/bfoldo.xpm
share/pixmaps/anjuta/blank.xpm
share/pixmaps/anjuta/block_end.xpm
share/pixmaps/anjuta/block_select.xpm
share/pixmaps/anjuta/block_start.xpm
share/pixmaps/anjuta/bookmark_first.xpm
share/pixmaps/anjuta/bookmark_last.xpm
share/pixmaps/anjuta/bookmark_next.xpm
share/pixmaps/anjuta/bookmark_prev.xpm
share/pixmaps/anjuta/bookmark_toggle.xpm
share/pixmaps/anjuta/breakpoint.xpm
share/pixmaps/anjuta/build.xpm
share/pixmaps/anjuta/build_all.xpm
share/pixmaps/anjuta/build_stop.xpm
share/pixmaps/anjuta/calltip.xpm
share/pixmaps/anjuta/close_file.xpm
share/pixmaps/anjuta/close_project.xpm
share/pixmaps/anjuta/compile.xpm
share/pixmaps/anjuta/configure.xpm
share/pixmaps/anjuta/console.xpm
share/pixmaps/anjuta/continue.xpm
share/pixmaps/anjuta/copy.xpm
share/pixmaps/anjuta/debug.xpm
share/pixmaps/anjuta/debug_stop.xpm
share/pixmaps/anjuta/dock.xpm
share/pixmaps/anjuta/error_next.xpm
share/pixmaps/anjuta/error_prev.xpm
share/pixmaps/anjuta/exec.xpm
share/pixmaps/anjuta/execute.xpm
share/pixmaps/anjuta/file_c.xpm
share/pixmaps/anjuta/file_cpp.xpm
share/pixmaps/anjuta/file_file.xpm
share/pixmaps/anjuta/file_h.xpm
share/pixmaps/anjuta/file_html.xpm
share/pixmaps/anjuta/file_i18n.xpm
share/pixmaps/anjuta/file_icon.xpm
share/pixmaps/anjuta/file_pix.xpm
share/pixmaps/anjuta/find.xpm
share/pixmaps/anjuta/find_replace.xpm
share/pixmaps/anjuta/fold_close.xpm
share/pixmaps/anjuta/fold_open.xpm
share/pixmaps/anjuta/fold_toggle.xpm
share/pixmaps/anjuta/frame.xpm
share/pixmaps/anjuta/gear.xpm
share/pixmaps/anjuta/goto.xpm
share/pixmaps/anjuta/graph.xpm
share/pixmaps/anjuta/handle_hide.xpm
share/pixmaps/anjuta/handle_undock.xpm
share/pixmaps/anjuta/help.xpm
share/pixmaps/anjuta/indent.xpm
share/pixmaps/anjuta/indent_auto.xpm
share/pixmaps/anjuta/indent_dcr.xpm
share/pixmaps/anjuta/indent_inc.xpm
share/pixmaps/anjuta/indent_set.xpm
share/pixmaps/anjuta/inspect.xpm
share/pixmaps/anjuta/interface.xpm
share/pixmaps/anjuta/interrupt.xpm
share/pixmaps/anjuta/ledgreen.xpm
share/pixmaps/anjuta/ledred.xpm
share/pixmaps/anjuta/line-arrow.xbm
share/pixmaps/anjuta/line-wrap.xbm
share/pixmaps/anjuta/list_select.xpm
share/pixmaps/anjuta/list_unselect.xpm
share/pixmaps/anjuta/messages.xpm
share/pixmaps/anjuta/mini-modules.xpm
share/pixmaps/anjuta/mini_build.xpm
share/pixmaps/anjuta/mini_cvs.xpm
share/pixmaps/anjuta/mini_debug.xpm
share/pixmaps/anjuta/mini_dock.xpm
share/pixmaps/anjuta/mini_find.xpm
share/pixmaps/anjuta/new_file.xpm
share/pixmaps/anjuta/open_file.xpm
share/pixmaps/anjuta/open_project.xpm
share/pixmaps/anjuta/paste.xpm
share/pixmaps/anjuta/pointer.xpm
share/pixmaps/anjuta/preferences.xpm
share/pixmaps/anjuta/print.xpm
share/pixmaps/anjuta/project.xpm
share/pixmaps/anjuta/redo.xpm
share/pixmaps/anjuta/registers.xpm
share/pixmaps/anjuta/reload.xpm
share/pixmaps/anjuta/reload_file.xpm
share/pixmaps/anjuta/remove.xpm
share/pixmaps/anjuta/run_to_cursor.xpm
share/pixmaps/anjuta/save.xpm
share/pixmaps/anjuta/save_all.xpm
share/pixmaps/anjuta/save_file.xpm
share/pixmaps/anjuta/save_project.xpm
share/pixmaps/anjuta/search.xpm
share/pixmaps/anjuta/stack.xpm
share/pixmaps/anjuta/step_in.xpm
share/pixmaps/anjuta/step_out.xpm
share/pixmaps/anjuta/step_over.xpm
share/pixmaps/anjuta/stop.xpm
share/pixmaps/anjuta/syntax.xpm
share/pixmaps/anjuta/undo.xpm
share/pixmaps/anjuta/undock.xpm
share/pixmaps/anjuta/watch.xpm
share/pixmaps/anjuta/wizard.xpm
@dirrm share/pixmaps/anjuta
@dirrm share/gnome/omf/anjuta
@dirrm share/gnome/help/anjuta/C/anjuta-manual/stylesheet-images
@dirrm share/gnome/help/anjuta/C/anjuta-manual/figures
@dirrm share/gnome/help/anjuta/C/anjuta-manual
@dirrm share/gnome/help/anjuta/C/anjuta-faqs/stylesheet-images
@dirrm share/gnome/help/anjuta/C/anjuta-faqs/figures
@dirrm share/gnome/help/anjuta/C/anjuta-faqs
@dirrm share/gnome/help/anjuta/C
@dirrm share/gnome/help/anjuta
@dirrm share/anjuta
@dirrm doc/anjuta