diff options
author | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-01-07 05:29:31 +0000 |
---|---|---|
committer | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-01-07 05:29:31 +0000 |
commit | c1351c974ab13029cb642bb6e6318add80c2dfce (patch) | |
tree | a0f5709fde3282d2a751b90953906386d167a483 /devel/anjuta | |
parent | e27313caf897b673fdd6d54b1e82336835bcac13 (diff) | |
download | ports-c1351c974ab13029cb642bb6e6318add80c2dfce.tar.gz ports-c1351c974ab13029cb642bb6e6318add80c2dfce.zip |
Notes
Diffstat (limited to 'devel/anjuta')
22 files changed, 442 insertions, 521 deletions
diff --git a/devel/anjuta/Makefile b/devel/anjuta/Makefile index d39bb0356bf6..9a69cd991ed1 100644 --- a/devel/anjuta/Makefile +++ b/devel/anjuta/Makefile @@ -6,7 +6,7 @@ # PORTNAME= anjuta -PORTVERSION= 1.0.2 +PORTVERSION= 1.2.0 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= anjuta @@ -14,21 +14,27 @@ MASTER_SITE_SUBDIR= anjuta MAINTAINER= gnome@FreeBSD.org COMMENT= Integrated Development Environment for C and C++ -LIB_DEPENDS= scintilla.1:${PORTSDIR}/x11-toolkits/scintilla \ - pcre.0:${PORTSDIR}/devel/pcre +LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre +NO_LATEST_LINK= yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack gnomevfs gnomeprint gdkpixbuf libglade -USE_REINPLACE= yes +USE_GNOME= gnomeprefix gnomehack libgnomeprintui libgnomeui vte GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" -CONFLICTS= anjuta-1.1.* +MAN1= anjuta.1 anjuta_launcher.1 -post-patch: - @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \ - ${WRKSRC}/src/Makefile.in +post-install: + ${INSTALL_DATA} ${WRKSRC}/pixmaps/applogo.png \ + ${PREFIX}/share/gnome/anjuta/glade +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in AUTHORS COPYING ChangeLog FUTURE INSTALL NEWS README \ + doc/ScintillaDoc.html TODO + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif .include <bsd.port.mk> diff --git a/devel/anjuta/distinfo b/devel/anjuta/distinfo index e3a86b733052..bb1aa50592d8 100644 --- a/devel/anjuta/distinfo +++ b/devel/anjuta/distinfo @@ -1 +1 @@ -MD5 (anjuta-1.0.2.tar.gz) = e7dc6520265fd8099d22927a6763a26b +MD5 (anjuta-1.2.0.tar.gz) = 5ba4547bd71dd9c6d19006913623680e diff --git a/devel/anjuta/files/patch-Makefile.in b/devel/anjuta/files/patch-Makefile.in index 4818d62bd379..e9fe21a1db2a 100644 --- a/devel/anjuta/files/patch-Makefile.in +++ b/devel/anjuta/files/patch-Makefile.in @@ -1,23 +1,31 @@ ---- Makefile.in.orig Fri Mar 28 09:16:24 2003 -+++ Makefile.in Fri Mar 28 09:17:36 2003 -@@ -176,9 +176,9 @@ - am__quote = @am__quote@ - install_sh = @install_sh@ +--- Makefile.in.orig Wed May 14 13:01:45 2003 ++++ Makefile.in Wed May 14 13:02:02 2003 +@@ -281,17 +281,17 @@ + done --SUBDIRS = intl po macros tagmanager global-tags scintilla \ -+SUBDIRS = intl po macros tagmanager global-tags \ - widgets printing manuals omf-install pixmaps scripts data \ -- doc launcher plugins src macros2 -+ launcher plugins src macros2 + install-anjutadocDATA: $(anjutadoc_DATA) +- @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(anjutadocdir) +- @list='$(anjutadoc_DATA)'; for p in $$list; do \ +- if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjutadocdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjutadocdir)/$$p; \ +- else if test -f $$p; then \ +- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(anjutadocdir)/$$p"; \ +- $(INSTALL_DATA) $$p $(DESTDIR)$(anjutadocdir)/$$p; \ +- fi; fi; \ +- done ++# @$(NORMAL_INSTALL) ++# $(mkinstalldirs) $(DESTDIR)$(anjutadocdir) ++# @list='$(anjutadoc_DATA)'; for p in $$list; do \ ++# if test -f $(srcdir)/$$p; then \ ++# echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjutadocdir)/$$p"; \ ++# $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjutadocdir)/$$p; \ ++# else if test -f $$p; then \ ++# echo " $(INSTALL_DATA) $$p $(DESTDIR)$(anjutadocdir)/$$p"; \ ++# $(INSTALL_DATA) $$p $(DESTDIR)$(anjutadocdir)/$$p; \ ++# fi; fi; \ ++# done - - anjutadocdir = ${prefix}/@NO_PREFIX_PACKAGE_DOC_DIR@ -@@ -592,7 +592,7 @@ - - info-am: - --install-data-am: install-anjuta_dataDATA install-anjutadocDATA \ -+install-data-am: install-anjuta_dataDATA \ - install-gnomemenuDATA - - install-exec-am: + uninstall-anjutadocDATA: + @$(NORMAL_UNINSTALL) diff --git a/devel/anjuta/files/patch-configure b/devel/anjuta/files/patch-configure index 237d3a30ecc3..18957041874d 100644 --- a/devel/anjuta/files/patch-configure +++ b/devel/anjuta/files/patch-configure @@ -1,14 +1,6 @@ ---- configure.orig Tue Mar 25 09:35:14 2003 -+++ configure Sat Mar 29 09:27:42 2003 -@@ -16315,6 +16315,7 @@ - - - packagesrcdir=`cd $srcdir && pwd` -+GLIB_CONFIG="$GLIB_CONFIG" - - if test "x${prefix}" = "xNONE"; then - packageprefix=${ac_default_prefix} -@@ -16322,11 +16323,11 @@ +--- configure.orig Thu Jun 26 06:50:27 2003 ++++ configure Fri Jun 27 20:02:38 2003 +@@ -12994,11 +12995,11 @@ packageprefix=${prefix} fi @@ -22,33 +14,3 @@ packagehelpdir=share/gnome/help/${PACKAGE} packagemenudir=share/gnome/apps packageplugindir=lib/${PACKAGE} -@@ -16390,7 +16391,7 @@ - _ACEOF - - --ac_config_files="$ac_config_files Makefile intl/Makefile po/Makefile.in macros/Makefile macros2/Makefile tagmanager/Makefile tagmanager/include/Makefile global-tags/Makefile scintilla/Makefile widgets/Makefile printing/Makefile manuals/Makefile omf-install/Makefile scintilla/include/Makefile manuals/C/Makefile manuals/C/anjuta-tutorial/Makefile manuals/C/anjuta-manual/Makefile manuals/C/anjuta-faqs/Makefile manuals/ja/Makefile manuals/ja/anjuta-manual/Makefile manuals/ja/anjuta-faqs/Makefile anjuta.spec src/Makefile pixmaps/Makefile data/Makefile data/welcome.txt data/properties/Makefile doc/anjuta.1 doc/anjuta_launcher.1 doc/Makefile scripts/Makefile scripts/anjuta_import.sh scripts/anjuta_first_run.sh launcher/Makefile plugins/Makefile plugins/sample1/Makefile plugins/class-gen/Makefile plugins/patch/Makefile anjuta.desktop.in" -+ac_config_files="$ac_config_files Makefile intl/Makefile po/Makefile.in macros/Makefile macros2/Makefile tagmanager/Makefile tagmanager/include/Makefile global-tags/Makefile widgets/Makefile printing/Makefile manuals/Makefile omf-install/Makefile manuals/C/Makefile manuals/C/anjuta-tutorial/Makefile manuals/C/anjuta-manual/Makefile manuals/C/anjuta-faqs/Makefile manuals/ja/Makefile manuals/ja/anjuta-manual/Makefile manuals/ja/anjuta-faqs/Makefile anjuta.spec src/Makefile pixmaps/Makefile data/Makefile data/welcome.txt data/properties/Makefile doc/anjuta.1 doc/anjuta_launcher.1 doc/Makefile scripts/Makefile scripts/anjuta_import.sh scripts/anjuta_first_run.sh launcher/Makefile plugins/Makefile plugins/sample1/Makefile plugins/class-gen/Makefile plugins/patch/Makefile anjuta.desktop.in" - cat >confcache <<\_ACEOF - # This file is a shell script that caches the results of configure - # tests run on this system so they can be shared between configure -@@ -16930,12 +16931,10 @@ - "tagmanager/Makefile" ) CONFIG_FILES="$CONFIG_FILES tagmanager/Makefile" ;; - "tagmanager/include/Makefile" ) CONFIG_FILES="$CONFIG_FILES tagmanager/include/Makefile" ;; - "global-tags/Makefile" ) CONFIG_FILES="$CONFIG_FILES global-tags/Makefile" ;; -- "scintilla/Makefile" ) CONFIG_FILES="$CONFIG_FILES scintilla/Makefile" ;; - "widgets/Makefile" ) CONFIG_FILES="$CONFIG_FILES widgets/Makefile" ;; - "printing/Makefile" ) CONFIG_FILES="$CONFIG_FILES printing/Makefile" ;; - "manuals/Makefile" ) CONFIG_FILES="$CONFIG_FILES manuals/Makefile" ;; - "omf-install/Makefile" ) CONFIG_FILES="$CONFIG_FILES omf-install/Makefile" ;; -- "scintilla/include/Makefile" ) CONFIG_FILES="$CONFIG_FILES scintilla/include/Makefile" ;; - "manuals/C/Makefile" ) CONFIG_FILES="$CONFIG_FILES manuals/C/Makefile" ;; - "manuals/C/anjuta-tutorial/Makefile" ) CONFIG_FILES="$CONFIG_FILES manuals/C/anjuta-tutorial/Makefile" ;; - "manuals/C/anjuta-manual/Makefile" ) CONFIG_FILES="$CONFIG_FILES manuals/C/anjuta-manual/Makefile" ;; -@@ -17132,6 +17131,7 @@ - s,@GNOME_APPLETS_LIBS@,$GNOME_APPLETS_LIBS,;t t - s,@GNOME_DOCKLETS_LIBS@,$GNOME_DOCKLETS_LIBS,;t t - s,@GNOME_CAPPLET_LIBS@,$GNOME_CAPPLET_LIBS,;t t -+s,@GLIB_CONFIG@,$GLIB_CONFIG,;t t - s,@GTK_CONFIG@,$GTK_CONFIG,;t t - s,@GTK_CFLAGS@,$GTK_CFLAGS,;t t - s,@GTK_LIBS@,$GTK_LIBS,;t t diff --git a/devel/anjuta/files/patch-data::Makefile.in b/devel/anjuta/files/patch-data::Makefile.in index 20c72f963f79..81ae99415581 100644 --- a/devel/anjuta/files/patch-data::Makefile.in +++ b/devel/anjuta/files/patch-data::Makefile.in @@ -1,6 +1,6 @@ ---- data/Makefile.in.orig Fri Mar 28 09:18:26 2003 -+++ data/Makefile.in Fri Mar 28 09:19:51 2003 -@@ -196,10 +196,10 @@ +--- data/Makefile.in.orig Wed May 14 17:19:02 2003 ++++ data/Makefile.in Wed May 14 17:19:32 2003 +@@ -176,11 +176,11 @@ autogen.sh.wxwin @@ -8,8 +8,9 @@ +anjuta_mimedir = $(prefix)/share/gnome/mime-info anjuta_mime_DATA = anjuta.mime --anjuta_mimelnkdir = $(prefix)/share/mimelnk/application -+anjuta_mimelnkdir = $(prefix)/share/gnome/mimelnk/application - anjuta_mimelnk_DATA = x-anjuta-project.desktop + anjuta_mimelnkdir = $(prefix)/share/mimelnk/application +-anjuta_mimelnk_DATA = x-anjuta-project.desktop ++anjuta_mimelnk_DATA = MACROS = \ + ChangeLog \ diff --git a/devel/anjuta/files/patch-doc-Makefile.in b/devel/anjuta/files/patch-doc-Makefile.in deleted file mode 100644 index e4678caf302a..000000000000 --- a/devel/anjuta/files/patch-doc-Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- doc/Makefile.in.orig Thu Feb 14 22:16:50 2002 -+++ doc/Makefile.in Thu Feb 14 22:17:06 2002 -@@ -152,8 +152,7 @@ - - anjuta_docdir = $(prefix)/@NO_PREFIX_PACKAGE_DOC_DIR@ - --anjuta_doc_DATA = \ -- ScintillaDoc.html -+anjuta_doc_DATA = - - - EXTRA_DIST = $(anjuta_doc_DATA) diff --git a/devel/anjuta/files/patch-doc::Makefile.in b/devel/anjuta/files/patch-doc::Makefile.in new file mode 100644 index 000000000000..c7d02c112811 --- /dev/null +++ b/devel/anjuta/files/patch-doc::Makefile.in @@ -0,0 +1,31 @@ +--- doc/Makefile.in.orig Wed May 14 13:04:06 2003 ++++ doc/Makefile.in Wed May 14 13:04:39 2003 +@@ -239,17 +239,17 @@ + $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 + + install-anjuta_docDATA: $(anjuta_doc_DATA) +- @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(anjuta_docdir) +- @list='$(anjuta_doc_DATA)'; for p in $$list; do \ +- if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjuta_docdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjuta_docdir)/$$p; \ +- else if test -f $$p; then \ +- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(anjuta_docdir)/$$p"; \ +- $(INSTALL_DATA) $$p $(DESTDIR)$(anjuta_docdir)/$$p; \ +- fi; fi; \ +- done ++# @$(NORMAL_INSTALL) ++# $(mkinstalldirs) $(DESTDIR)$(anjuta_docdir) ++# @list='$(anjuta_doc_DATA)'; for p in $$list; do \ ++# if test -f $(srcdir)/$$p; then \ ++# echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjuta_docdir)/$$p"; \ ++# $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(anjuta_docdir)/$$p; \ ++# else if test -f $$p; then \ ++# echo " $(INSTALL_DATA) $$p $(DESTDIR)$(anjuta_docdir)/$$p"; \ ++# $(INSTALL_DATA) $$p $(DESTDIR)$(anjuta_docdir)/$$p; \ ++# fi; fi; \ ++# done + + uninstall-anjuta_docDATA: + @$(NORMAL_UNINSTALL) diff --git a/devel/anjuta/files/patch-launcher-Makefile.in b/devel/anjuta/files/patch-launcher-Makefile.in deleted file mode 100644 index 7935b72b58f1..000000000000 --- a/devel/anjuta/files/patch-launcher-Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- launcher/Makefile.in.orig Tue Nov 5 15:18:07 2002 -+++ launcher/Makefile.in Tue Nov 5 15:19:10 2002 -@@ -14,6 +14,7 @@ - - @SET_MAKE@ - SHELL = @SHELL@ -+GLIB_CONFIG = @GLIB_CONFIG@ - - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ -@@ -170,9 +171,9 @@ - am__include = @am__include@ - am__quote = @am__quote@ - install_sh = @install_sh@ --INCLUDES = `glib-config --cflags` -I. -I.. -+INCLUDES = `$(GLIB_CONFIG) --cflags` -I. -I.. - bin_PROGRAMS = anjuta_launcher --LDFLAGS = `glib-config --libs` -+LDFLAGS = `$(GLIB_CONFIG) --libs` - subdir = launcher - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = $(top_builddir)/config.h diff --git a/devel/anjuta/files/patch-launcher-anjuta_launcher.c b/devel/anjuta/files/patch-launcher-anjuta_launcher.c deleted file mode 100644 index 9f8693b6b674..000000000000 --- a/devel/anjuta/files/patch-launcher-anjuta_launcher.c +++ /dev/null @@ -1,11 +0,0 @@ ---- 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> diff --git a/devel/anjuta/files/patch-ltmain.sh b/devel/anjuta/files/patch-ltmain.sh index f90e4759111f..1c2fba5d533f 100644 --- a/devel/anjuta/files/patch-ltmain.sh +++ b/devel/anjuta/files/patch-ltmain.sh @@ -1,15 +1,15 @@ ---- ltmain.sh.orig Wed Jan 23 11:38:40 2002 -+++ ltmain.sh Sun Feb 3 01:44:17 2002 -@@ -1037,8 +1037,16 @@ +--- ltmain.sh.orig Fri Sep 13 15:38:11 2002 ++++ ltmain.sh Fri Oct 11 01:44:24 2002 +@@ -1073,8 +1073,16 @@ continue ;; + -pthread) -+ compile_command="$compile_command -pthread" -+ finalize_command="$finalize_command -pthread" -+ compiler_flags="$compiler_flags -pthread" -+ continue -+ ;; ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; + -module) module=yes @@ -17,17 +17,17 @@ continue ;; -@@ -2412,6 +2420,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. +@@ -2502,6 +2510,9 @@ + *-*-openbsd*) + # Do not include libc due to us having libc/libc_r. ;; + *-*-freebsd*) + # FreeBSD doesn't need this... + ;; *) # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4179,10 +4190,12 @@ + if test $build_libtool_need_lc = "yes"; then +@@ -4286,10 +4297,12 @@ fi # Install the pseudo-library for information purposes. @@ -40,4 +40,3 @@ # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" - diff --git a/devel/anjuta/files/patch-plugins::class-gen::Makefile.in b/devel/anjuta/files/patch-plugins::class-gen::Makefile.in deleted file mode 100644 index 877fc0a52456..000000000000 --- a/devel/anjuta/files/patch-plugins::class-gen::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/class-gen/Makefile.in.orig Tue Nov 5 15:19:38 2002 -+++ plugins/class-gen/Makefile.in Tue Nov 5 15:20:28 2002 -@@ -210,7 +210,7 @@ - CONFIG_CLEAN_FILES = - LTLIBRARIES = $(plugin_LTLIBRARIES) - --libanjuta_clsGen_la_LDFLAGS = -+libanjuta_clsGen_la_LDFLAGS = -module -avoid-version - libanjuta_clsGen_la_LIBADD = - am_libanjuta_clsGen_la_OBJECTS = clsGen.lo - libanjuta_clsGen_la_OBJECTS = $(am_libanjuta_clsGen_la_OBJECTS) diff --git a/devel/anjuta/files/patch-plugins::sample1::Makefile.in b/devel/anjuta/files/patch-plugins::sample1::Makefile.in deleted file mode 100644 index d08c010621c1..000000000000 --- a/devel/anjuta/files/patch-plugins::sample1::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/sample1/Makefile.in.orig Tue Nov 5 15:21:02 2002 -+++ plugins/sample1/Makefile.in Tue Nov 5 15:21:35 2002 -@@ -210,7 +210,7 @@ - CONFIG_CLEAN_FILES = - LTLIBRARIES = $(plugin_LTLIBRARIES) - --libanjuta_sample1_la_LDFLAGS = -+libanjuta_sample1_la_LDFLAGS = -module -avoid-version - libanjuta_sample1_la_LIBADD = - am_libanjuta_sample1_la_OBJECTS = plugin-sample1.lo - libanjuta_sample1_la_OBJECTS = $(am_libanjuta_sample1_la_OBJECTS) diff --git a/devel/anjuta/files/patch-plugins_patch_Makefile.in b/devel/anjuta/files/patch-plugins_patch_Makefile.in deleted file mode 100644 index f30e428913f3..000000000000 --- a/devel/anjuta/files/patch-plugins_patch_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/patch/Makefile.in.orig Tue Nov 5 16:59:47 2002 -+++ plugins/patch/Makefile.in Tue Nov 5 16:59:56 2002 -@@ -210,7 +210,7 @@ - CONFIG_CLEAN_FILES = - LTLIBRARIES = $(plugin_LTLIBRARIES) - --libanjuta_patch_la_LDFLAGS = -+libanjuta_patch_la_LDFLAGS = -module -avoid-version - libanjuta_patch_la_LIBADD = - am_libanjuta_patch_la_OBJECTS = patch-plugin.lo - libanjuta_patch_la_OBJECTS = $(am_libanjuta_patch_la_OBJECTS) diff --git a/devel/anjuta/files/patch-scripts::anjuta_import.sh.in b/devel/anjuta/files/patch-scripts::anjuta_import.sh.in new file mode 100644 index 000000000000..94b1413d60db --- /dev/null +++ b/devel/anjuta/files/patch-scripts::anjuta_import.sh.in @@ -0,0 +1,8 @@ +--- scripts/anjuta_import.sh.in.orig Wed May 14 16:09:42 2003 ++++ scripts/anjuta_import.sh.in Wed May 14 16:11:15 2003 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # + # Shell script to automatically create an Anjuta 1.x project file + # Copyright: Biswapesh Chattopadhyay (biswapesh_chatterjee@tcscal.co.in) 2001-2002 diff --git a/devel/anjuta/files/patch-src-Makefile.in b/devel/anjuta/files/patch-src-Makefile.in deleted file mode 100644 index 93ce3138c8ea..000000000000 --- a/devel/anjuta/files/patch-src-Makefile.in +++ /dev/null @@ -1,81 +0,0 @@ ---- src/Makefile.in.orig Fri Mar 28 09:20:58 2003 -+++ src/Makefile.in Fri Mar 28 09:23:15 2003 -@@ -183,7 +183,7 @@ - $(EXTRA_ORBIT_CFLAGS)\ - $(PCRE_CFLAGS)\ - $(FREEBSD_BUILD)\ -- -I$(srcdir)/../scintilla/include \ -+ -I%%X11BASE%%/include/scintilla \ - -I$(srcdir)/../tagmanager/include \ - -I$(srcdir)/../widgets \ - -I$(srcdir)/../pixmaps \ -@@ -191,31 +191,8 @@ - -I.. -I. -DPACKAGE_BIN_DIR=\"$(bindir)\" - - --SCILEXERS = \ -- ../scintilla/StyleContext.o\ -- ../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\ -- ../scintilla/LexCrontab.o\ -- ../scintilla/LexEiffel.o\ -- ../scintilla/LexLisp.o\ -- ../scintilla/LexRuby.o\ -- ../scintilla/LexBullant.o\ -- ../scintilla/LexAda.o\ -- ../scintilla/LexBaan.o\ -- ../scintilla/LexMatlab.o \ -- ../scintilla/LexAsm.o \ -- ../scintilla/LexFortran.o \ -- ../scintilla/LexCSS.o -- -+SCILEXERS = -lscintilla_lexers -+SCINTILLA = -lscintilla - - bin_PROGRAMS = anjuta - -@@ -423,10 +400,10 @@ - $(EXTRA_GNOME_LIBS)\ - $(EXTRA_ORBIT_LIBS)\ - $(PCRE_LIBS)\ -- $(top_builddir)/scintilla/libscintilla.a\ - $(top_builddir)/tagmanager/libctags.a\ - $(top_builddir)/widgets/libwidgets.a\ - $(top_builddir)/printing/libanjutaprint.a\ -+ $(SCINTILLA)\ - $(SCILEXERS) - - -@@ -500,22 +477,7 @@ - compatibility_0.$(OBJEXT) defaults.$(OBJEXT) \ - resources.$(OBJEXT) session.$(OBJEXT) widget-registry.$(OBJEXT) - anjuta_OBJECTS = $(am_anjuta_OBJECTS) --anjuta_DEPENDENCIES = $(top_builddir)/scintilla/libscintilla.a \ -- $(top_builddir)/tagmanager/libctags.a \ -- $(top_builddir)/widgets/libwidgets.a \ -- $(top_builddir)/printing/libanjutaprint.a \ -- ../scintilla/StyleContext.o ../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 \ -- ../scintilla/LexCrontab.o ../scintilla/LexEiffel.o \ -- ../scintilla/LexLisp.o ../scintilla/LexRuby.o \ -- ../scintilla/LexBullant.o ../scintilla/LexAda.o \ -- ../scintilla/LexBaan.o ../scintilla/LexMatlab.o \ -- ../scintilla/LexAsm.o ../scintilla/LexFortran.o \ -- ../scintilla/LexCSS.o -+anjuta_DEPENDENCIES = - anjuta_LDFLAGS = - - DEFS = @DEFS@ diff --git a/devel/anjuta/files/patch-src::anjuta.c b/devel/anjuta/files/patch-src::anjuta.c new file mode 100644 index 000000000000..da8a838ed74d --- /dev/null +++ b/devel/anjuta/files/patch-src::anjuta.c @@ -0,0 +1,11 @@ +--- src/anjuta.c.orig Sun Jun 8 23:31:48 2003 ++++ src/anjuta.c Sun Jun 8 23:33:26 2003 +@@ -1938,6 +1938,8 @@ + pid = waitpid (0, &status, WNOHANG); + if (pid < 1) + return; ++ if (!app) ++ return; + idx = g_list_index (app->registered_child_processes, (int *) pid); + if (idx < 0) + return; diff --git a/devel/anjuta/files/patch-src::launcher.c b/devel/anjuta/files/patch-src::launcher.c new file mode 100644 index 000000000000..0015b841ed42 --- /dev/null +++ b/devel/anjuta/files/patch-src::launcher.c @@ -0,0 +1,35 @@ +--- src/launcher.c.orig Thu Nov 27 17:37:16 2003 ++++ src/launcher.c Tue Dec 9 15:27:12 2003 +@@ -23,10 +23,10 @@ + #include <unistd.h> + #include <fcntl.h> + #include <signal.h> +-#include <pty.h> + #include <assert.h> + #include <gnome.h> + #include <termios.h> ++#include <vte/pty.h> + + #include "pixmaps.h" + #include "launcher.h" +@@ -845,9 +845,9 @@ + /* Set no delays for the write pipes (non_buffered) so + that we get all the outputs immidiately */ + if ((md = fcntl (stdout_pipe[1], F_GETFL)) != -1) +- fcntl (stdout_pipe[1], F_SETFL, O_SYNC | md); ++ fcntl (stdout_pipe[1], F_SETFL, O_FSYNC | md); + if ((md = fcntl (stderr_pipe[1], F_GETFL)) != -1) +- fcntl (stderr_pipe[1], F_SETFL, O_SYNC | md); ++ fcntl (stderr_pipe[1], F_SETFL, O_FSYNC | md); + + execvp (args[0], args); + g_error (_("Cannot execute command shell")); +@@ -902,7 +902,7 @@ + ECHOCTL | ISIG | ICANON | IEXTEN | NOFLSH | TOSTOP); + // termios_flags.c_lflag |= 0; + termios_flags.c_cc[VMIN] = 0; +- cfsetospeed(&termios_flags, __MAX_BAUD); ++ cfsetospeed(&termios_flags, B115200); + tcsetattr(pty_master_fd, TCSANOW, &termios_flags); + + launcher->priv->stdout_watch = diff --git a/devel/anjuta/files/patch-src::source.c b/devel/anjuta/files/patch-src::source.c new file mode 100644 index 000000000000..3d421d9bf133 --- /dev/null +++ b/devel/anjuta/files/patch-src::source.c @@ -0,0 +1,20 @@ +--- src/source.c.orig Wed May 14 14:17:11 2003 ++++ src/source.c Wed May 14 14:17:23 2003 +@@ -314,7 +314,7 @@ + "fi\n\n"); + fprintf (fp, + "dnl Set PACKAGE DATA & DOC DIR\n" +- "packagedatadir=share/${PACKAGE}\n" ++ "packagedatadir=share/gnome/${PACKAGE}\n" + "packagedocdir=doc/${PACKAGE}\n" + "\n"); + +@@ -332,7 +332,7 @@ + { + fprintf (fp, + "dnl Set PACKAGE DIRs in config.h.\n" +- "packagepixmapsdir=share/pixmaps/${PACKAGE}\n" ++ "packagepixmapsdir=share/gnome/pixmaps/${PACKAGE}\n" + "packagehelpdir=share/gnome/help/${PACKAGE}\n" + "packagemenudir=share/gnome/apps\n"); + } diff --git a/devel/anjuta/files/patch-src_aneditor.cxx b/devel/anjuta/files/patch-src_aneditor.cxx deleted file mode 100644 index f8e2d88bce8b..000000000000 --- a/devel/anjuta/files/patch-src_aneditor.cxx +++ /dev/null @@ -1,12 +0,0 @@ ---- src/aneditor.cxx.orig Tue Nov 5 15:51:38 2002 -+++ src/aneditor.cxx Tue Nov 5 15:52:01 2002 -@@ -289,6 +289,9 @@ - void EvalOutputArrived(GList* lines, int textPos, const string &expression); - }; - -+inline bool nonFuncChar(char ch) { -+ return strchr("\t\n\r !\"#%&'()*+,-./:;<=>?@[\\]^`{|}~", ch) != NULL; -+} - - class ExpressionEvaluationTipInfo - // Utility class to help displaying expression values in tips. diff --git a/devel/anjuta/files/patch-tagmanager::parse.h b/devel/anjuta/files/patch-tagmanager::parse.h deleted file mode 100644 index 2647cdaff6de..000000000000 --- a/devel/anjuta/files/patch-tagmanager::parse.h +++ /dev/null @@ -1,10 +0,0 @@ ---- tagmanager/parse.h.orig Fri Feb 15 16:44:43 2002 -+++ tagmanager/parse.h Fri Feb 15 16:44:54 2002 -@@ -13,6 +13,7 @@ - /* - * INCLUDE FILES - */ -+#include <sys/types.h> - #include "general.h" /* must always come first */ - - #include "parsers.h" /* contains list of parsers */ diff --git a/devel/anjuta/pkg-descr b/devel/anjuta/pkg-descr index d289b4bdf3da..4a68250856d2 100644 --- a/devel/anjuta/pkg-descr +++ b/devel/anjuta/pkg-descr @@ -5,4 +5,4 @@ basically a GUI interface for the bunch of command line programming utilites and tools available for FreeBSD, which are usually run in console and are very user unfriendly. -WWW: http://anjuta.sourceforge.net/ +WWW: http://www.anjuta.org/ diff --git a/devel/anjuta/pkg-plist b/devel/anjuta/pkg-plist index 9a1879b898c7..fc1ad02f4674 100644 --- a/devel/anjuta/pkg-plist +++ b/devel/anjuta/pkg-plist @@ -1,12 +1,25 @@ bin/anjuta -bin/anjuta_first_run.sh bin/anjuta_import.sh bin/anjuta_launcher +lib/anjuta/libanjuta_clsGen.a lib/anjuta/libanjuta_clsGen.so +lib/anjuta/libanjuta_clsGen.so.0 +lib/anjuta/libanjuta_patch.a lib/anjuta/libanjuta_patch.so +lib/anjuta/libanjuta_patch.so.0 +lib/anjuta/libanjuta_sample1.a lib/anjuta/libanjuta_sample1.so +lib/anjuta/libanjuta_sample1.so.0 +%%PORTDOCS%%share/doc/anjuta/AUTHORS +%%PORTDOCS%%share/doc/anjuta/COPYING +%%PORTDOCS%%share/doc/anjuta/ChangeLog +%%PORTDOCS%%share/doc/anjuta/FUTURE +%%PORTDOCS%%share/doc/anjuta/INSTALL +%%PORTDOCS%%share/doc/anjuta/NEWS +%%PORTDOCS%%share/doc/anjuta/README +%%PORTDOCS%%share/doc/anjuta/ScintillaDoc.html +%%PORTDOCS%%share/doc/anjuta/TODO share/gnome/anjuta/README.stock_libs -share/gnome/anjuta/anjuta.glade share/gnome/anjuta/anjuta_project.template share/gnome/anjuta/autogen.sh.generic share/gnome/anjuta/autogen.sh.gnome @@ -16,6 +29,12 @@ share/gnome/anjuta/autogen.sh.gtk share/gnome/anjuta/autogen.sh.gtkmm share/gnome/anjuta/autogen.sh.wxwin share/gnome/anjuta/gdb.init +share/gnome/anjuta/gdl/glade/layout.glade +share/gnome/anjuta/glade/anjuta.glade +share/gnome/anjuta/glade/applogo.png +share/gnome/anjuta/glade/start-with-import.png +share/gnome/anjuta/glade/start-with-open.png +share/gnome/anjuta/glade/start-with-wizard.png share/gnome/anjuta/gnome/ChangeLog share/gnome/anjuta/gnome/Makefile.am share/gnome/anjuta/gnome/aclocal-include.m4 @@ -24,6 +43,7 @@ share/gnome/anjuta/gnome/compiler-flags.m4 share/gnome/anjuta/gnome/curses.m4 share/gnome/anjuta/gnome/gnome-bonobo-check.m4 share/gnome/anjuta/gnome/gnome-common.m4 +share/gnome/anjuta/gnome/gnome-cxx-check.m4 share/gnome/anjuta/gnome/gnome-fileutils.m4 share/gnome/anjuta/gnome/gnome-gettext.m4 share/gnome/anjuta/gnome/gnome-ghttp-check.m4 @@ -44,6 +64,7 @@ share/gnome/anjuta/gnome/gnome.m4 share/gnome/anjuta/gnome/gperf-check.m4 share/gnome/anjuta/gnome/linger.m4 share/gnome/anjuta/gnome/need-declaration.m4 +share/gnome/anjuta/gnome/psiconv.m4 share/gnome/anjuta/gnome2/ChangeLog share/gnome/anjuta/gnome2/Makefile.am share/gnome/anjuta/gnome2/autogen.sh @@ -59,7 +80,6 @@ share/gnome/anjuta/gnome2/gnome-pthread-check.m4 share/gnome/anjuta/gnome2/gnome-x-checks.m4 share/gnome/anjuta/gnome2/linger.m4 share/gnome/anjuta/header.c -share/gnome/anjuta/licence.txt share/gnome/anjuta/properties/ada.properties share/gnome/anjuta/properties/anjuta.properties share/gnome/anjuta/properties/asm.properties @@ -70,6 +90,7 @@ share/gnome/anjuta/properties/bullant.properties share/gnome/anjuta/properties/conf.properties share/gnome/anjuta/properties/cpp.properties share/gnome/anjuta/properties/cs.properties +share/gnome/anjuta/properties/css.properties share/gnome/anjuta/properties/eiffel.properties share/gnome/anjuta/properties/fortran.properties share/gnome/anjuta/properties/html.properties @@ -84,6 +105,7 @@ share/gnome/anjuta/properties/others.properties share/gnome/anjuta/properties/pascal.properties share/gnome/anjuta/properties/perl.properties share/gnome/anjuta/properties/php.properties +share/gnome/anjuta/properties/pov.properties share/gnome/anjuta/properties/props.properties share/gnome/anjuta/properties/python.properties share/gnome/anjuta/properties/rc.properties @@ -98,170 +120,201 @@ share/gnome/anjuta/setup-gettext share/gnome/anjuta/stock_libs.anj share/gnome/anjuta/system.tags share/gnome/anjuta/welcome.txt -share/gnome/apps/Development/anjuta.desktop -share/gnome/help/anjuta/C/anjuta-faqs/anjuta-faqs.sgml -share/gnome/help/anjuta/C/anjuta-faqs/index.html -share/gnome/help/anjuta/C/anjuta-manual/anjuta-manual.sgml -share/gnome/help/anjuta/C/anjuta-manual/build.sgml -share/gnome/help/anjuta/C/anjuta-manual/compileopts.sgml -share/gnome/help/anjuta/C/anjuta-manual/debugger.sgml -share/gnome/help/anjuta/C/anjuta-manual/execute.sgml -share/gnome/help/anjuta/C/anjuta-manual/figures/a2ps.png -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/doxygen.png -share/gnome/help/anjuta/C/anjuta-manual/figures/editor_guides.png -share/gnome/help/anjuta/C/anjuta-manual/figures/editor_margins.png -share/gnome/help/anjuta/C/anjuta-manual/figures/editor_markers.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/local_variables.png -share/gnome/help/anjuta/C/anjuta-manual/figures/mainwin.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/open_file_multiple.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/prefs_print.png -share/gnome/help/anjuta/C/anjuta-manual/figures/print_dlg.png -share/gnome/help/anjuta/C/anjuta-manual/figures/print_preview.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/symbol_browser.png -share/gnome/help/anjuta/C/anjuta-manual/figures/tool-editor.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/variable_tip.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/fileoperations.sgml -share/gnome/help/anjuta/C/anjuta-manual/index.html -share/gnome/help/anjuta/C/anjuta-manual/interface.sgml -share/gnome/help/anjuta/C/anjuta-manual/introduction.sgml -share/gnome/help/anjuta/C/anjuta-manual/preferences.sgml -share/gnome/help/anjuta/C/anjuta-manual/projects.sgml -share/gnome/help/anjuta/C/anjuta-manual/tools.sgml -share/gnome/help/anjuta/C/anjuta-tutorial/anjuta-tutorial.sgml -share/gnome/help/anjuta/C/anjuta-tutorial/figures/divided.png -share/gnome/help/anjuta/C/anjuta-tutorial/figures/glade-l.png -share/gnome/help/anjuta/C/anjuta-tutorial/figures/icons.png -share/gnome/help/anjuta/C/anjuta-tutorial/figures/interface.png -share/gnome/help/anjuta/C/anjuta-tutorial/index.html -share/gnome/help/anjuta/C/topic.dat -share/gnome/help/anjuta/ja/anjuta-faqs/anjuta-faqs.sgml -share/gnome/help/anjuta/ja/anjuta-faqs/index.html -share/gnome/help/anjuta/ja/anjuta-manual/anjuta-manual.sgml -share/gnome/help/anjuta/ja/anjuta-manual/authors.sgml -share/gnome/help/anjuta/ja/anjuta-manual/build.sgml -share/gnome/help/anjuta/ja/anjuta-manual/compileopts.sgml -share/gnome/help/anjuta/ja/anjuta-manual/debugger.sgml -share/gnome/help/anjuta/ja/anjuta-manual/execute.sgml -share/gnome/help/anjuta/ja/anjuta-manual/figures/appwiz1.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/appwiz2.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/appwiz3.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/appwiz4.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/arguments.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/attach.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/brk_add.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/brk_dlg.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/brk_edit.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/ccview.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/ccview_class.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/ccview_struct.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/configure_dlg.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/defines.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/devt_menu.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/evaluate.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/fileview.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/find_files.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/find_replace.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/find_text.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/frame.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/impwiz.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/includes.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/inspect.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/lib_paths.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/libraries.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/mainwin.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/menu_detached.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/menu_main.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/message_win.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/open_file.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/optimizations.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/other_opts.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/project_info.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/project_win.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/registers.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/scrshot.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/sharedlibs.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/signal_mod.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/signals.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/stack.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/supports.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_browser.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_debug.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_ext.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_format.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_main.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/toolbar_tags.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/warnings.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/watch.png -share/gnome/help/anjuta/ja/anjuta-manual/figures/watch_add.png -share/gnome/help/anjuta/ja/anjuta-manual/fileoperations.sgml -share/gnome/help/anjuta/ja/anjuta-manual/index.html -share/gnome/help/anjuta/ja/anjuta-manual/interface.sgml -share/gnome/help/anjuta/ja/anjuta-manual/introduction.sgml -share/gnome/help/anjuta/ja/anjuta-manual/license.sgml -share/gnome/help/anjuta/ja/anjuta-manual/preferences.sgml -share/gnome/help/anjuta/ja/anjuta-manual/projects.sgml -share/gnome/help/anjuta/ja/topic.dat +share/gnome/applications/anjuta.desktop +share/gnome/help/anjuta/C/anjuta-faqs.xml +share/gnome/help/anjuta/C/anjuta-manual.xml +share/gnome/help/anjuta/C/anjuta-tutorial.xml +share/gnome/help/anjuta/C/authors.xml +share/gnome/help/anjuta/C/build.xml +share/gnome/help/anjuta/C/compileopts.xml +share/gnome/help/anjuta/C/debugger.xml +share/gnome/help/anjuta/C/execute.xml +share/gnome/help/anjuta/C/figures/a2ps.png +share/gnome/help/anjuta/C/figures/arguments.png +share/gnome/help/anjuta/C/figures/attach.png +share/gnome/help/anjuta/C/figures/brk_add.png +share/gnome/help/anjuta/C/figures/brk_dlg.png +share/gnome/help/anjuta/C/figures/brk_edit.png +share/gnome/help/anjuta/C/figures/ccview.png +share/gnome/help/anjuta/C/figures/ccview_class.png +share/gnome/help/anjuta/C/figures/ccview_struct.png +share/gnome/help/anjuta/C/figures/configure_dlg.png +share/gnome/help/anjuta/C/figures/defines.png +share/gnome/help/anjuta/C/figures/devt_menu.png +share/gnome/help/anjuta/C/figures/divided.png +share/gnome/help/anjuta/C/figures/doxygen.png +share/gnome/help/anjuta/C/figures/editor_guides.png +share/gnome/help/anjuta/C/figures/editor_margins.png +share/gnome/help/anjuta/C/figures/editor_markers.png +share/gnome/help/anjuta/C/figures/evaluate.png +share/gnome/help/anjuta/C/figures/fileview.png +share/gnome/help/anjuta/C/figures/find_files.png +share/gnome/help/anjuta/C/figures/find_replace.png +share/gnome/help/anjuta/C/figures/find_text.png +share/gnome/help/anjuta/C/figures/frame.png +share/gnome/help/anjuta/C/figures/glade-l.png +share/gnome/help/anjuta/C/figures/icons.png +share/gnome/help/anjuta/C/figures/includes.png +share/gnome/help/anjuta/C/figures/inspect.png +share/gnome/help/anjuta/C/figures/interface.png +share/gnome/help/anjuta/C/figures/lib_paths.png +share/gnome/help/anjuta/C/figures/libraries.png +share/gnome/help/anjuta/C/figures/local_variables.png +share/gnome/help/anjuta/C/figures/mainwin.png +share/gnome/help/anjuta/C/figures/menu_detached.png +share/gnome/help/anjuta/C/figures/menu_main.png +share/gnome/help/anjuta/C/figures/message_win.png +share/gnome/help/anjuta/C/figures/open_file.png +share/gnome/help/anjuta/C/figures/open_file_multiple.png +share/gnome/help/anjuta/C/figures/optimizations.png +share/gnome/help/anjuta/C/figures/other_opts.png +share/gnome/help/anjuta/C/figures/prefs_print.png +share/gnome/help/anjuta/C/figures/print_dlg.png +share/gnome/help/anjuta/C/figures/print_preview.png +share/gnome/help/anjuta/C/figures/project_info.png +share/gnome/help/anjuta/C/figures/project_win.png +share/gnome/help/anjuta/C/figures/registers.png +share/gnome/help/anjuta/C/figures/scrshot.png +share/gnome/help/anjuta/C/figures/sharedlibs.png +share/gnome/help/anjuta/C/figures/signal_mod.png +share/gnome/help/anjuta/C/figures/signals.png +share/gnome/help/anjuta/C/figures/stack.png +share/gnome/help/anjuta/C/figures/supports.png +share/gnome/help/anjuta/C/figures/symbol_browser.png +share/gnome/help/anjuta/C/figures/tool-editor.png +share/gnome/help/anjuta/C/figures/toolbar_browser.png +share/gnome/help/anjuta/C/figures/toolbar_debug.png +share/gnome/help/anjuta/C/figures/toolbar_ext.png +share/gnome/help/anjuta/C/figures/toolbar_format.png +share/gnome/help/anjuta/C/figures/toolbar_main.png +share/gnome/help/anjuta/C/figures/toolbar_tags.png +share/gnome/help/anjuta/C/figures/variable_tip.png +share/gnome/help/anjuta/C/figures/warnings.png +share/gnome/help/anjuta/C/figures/watch.png +share/gnome/help/anjuta/C/figures/watch_add.png +share/gnome/help/anjuta/C/fileoperations.xml +share/gnome/help/anjuta/C/interface.xml +share/gnome/help/anjuta/C/introduction.xml +share/gnome/help/anjuta/C/legal.xml +share/gnome/help/anjuta/C/license.xml +share/gnome/help/anjuta/C/preferences.xml +share/gnome/help/anjuta/C/projects.xml +share/gnome/help/anjuta/C/template.xml +share/gnome/help/anjuta/C/tools.xml +share/gnome/help/anjuta/de/anjuta-tutorial.xml +share/gnome/help/anjuta/de/images/beenden.png +share/gnome/help/anjuta/de/images/druide1.png +share/gnome/help/anjuta/de/images/druide2.png +share/gnome/help/anjuta/de/images/druide3.png +share/gnome/help/anjuta/de/images/druide5.png +share/gnome/help/anjuta/de/images/entry.png +share/gnome/help/anjuta/de/images/erstellen.png +share/gnome/help/anjuta/de/images/glade_eigenschaften.png +share/gnome/help/anjuta/de/images/glade_hauptfenster.png +share/gnome/help/anjuta/de/images/glade_widgets.png +share/gnome/help/anjuta/de/images/gui1.png +share/gnome/help/anjuta/de/images/gui2.png +share/gnome/help/anjuta/de/images/gui3.png +share/gnome/help/anjuta/de/images/hinzufuegen.png +share/gnome/help/anjuta/de/images/horizontal_box.png +share/gnome/help/anjuta/de/images/interface_de.png +share/gnome/help/anjuta/de/images/interface_run2_de.png +share/gnome/help/anjuta/de/images/interface_run_de.png +share/gnome/help/anjuta/de/images/key_anwenden.png +share/gnome/help/anjuta/de/images/key_anwendungsdruide.png +share/gnome/help/anjuta/de/images/key_ok.png +share/gnome/help/anjuta/de/images/key_vor.png +share/gnome/help/anjuta/de/images/knopf_punkt_punkt_punkt.png +share/gnome/help/anjuta/de/images/label.png +share/gnome/help/anjuta/de/images/packen.png +share/gnome/help/anjuta/de/images/projektdateien.png +share/gnome/help/anjuta/de/images/signal_key_ende.png +share/gnome/help/anjuta/de/images/signale.png +share/gnome/help/anjuta/de/images/speichern.png +share/gnome/help/anjuta/de/images/startdialog.png +share/gnome/help/anjuta/de/images/vertikale_box.png +share/gnome/help/anjuta/de/images/zeilenzahl2.png +share/gnome/help/anjuta/ja/anjuta-faqs.xml +share/gnome/help/anjuta/ja/anjuta-manual.xml +share/gnome/help/anjuta/ja/authors.xml +share/gnome/help/anjuta/ja/build.xml +share/gnome/help/anjuta/ja/compileopts.xml +share/gnome/help/anjuta/ja/debugger.xml +share/gnome/help/anjuta/ja/execute.xml +share/gnome/help/anjuta/ja/figures/appwiz1.png +share/gnome/help/anjuta/ja/figures/appwiz2.png +share/gnome/help/anjuta/ja/figures/appwiz3.png +share/gnome/help/anjuta/ja/figures/appwiz4.png +share/gnome/help/anjuta/ja/figures/arguments.png +share/gnome/help/anjuta/ja/figures/attach.png +share/gnome/help/anjuta/ja/figures/brk_add.png +share/gnome/help/anjuta/ja/figures/brk_dlg.png +share/gnome/help/anjuta/ja/figures/brk_edit.png +share/gnome/help/anjuta/ja/figures/ccview.png +share/gnome/help/anjuta/ja/figures/ccview_class.png +share/gnome/help/anjuta/ja/figures/ccview_struct.png +share/gnome/help/anjuta/ja/figures/configure_dlg.png +share/gnome/help/anjuta/ja/figures/defines.png +share/gnome/help/anjuta/ja/figures/devt_menu.png +share/gnome/help/anjuta/ja/figures/evaluate.png +share/gnome/help/anjuta/ja/figures/fileview.png +share/gnome/help/anjuta/ja/figures/find_files.png +share/gnome/help/anjuta/ja/figures/find_replace.png +share/gnome/help/anjuta/ja/figures/find_text.png +share/gnome/help/anjuta/ja/figures/frame.png +share/gnome/help/anjuta/ja/figures/impwiz.png +share/gnome/help/anjuta/ja/figures/includes.png +share/gnome/help/anjuta/ja/figures/inspect.png +share/gnome/help/anjuta/ja/figures/lib_paths.png +share/gnome/help/anjuta/ja/figures/libraries.png +share/gnome/help/anjuta/ja/figures/mainwin.png +share/gnome/help/anjuta/ja/figures/menu_detached.png +share/gnome/help/anjuta/ja/figures/menu_main.png +share/gnome/help/anjuta/ja/figures/message_win.png +share/gnome/help/anjuta/ja/figures/open_file.png +share/gnome/help/anjuta/ja/figures/optimizations.png +share/gnome/help/anjuta/ja/figures/other_opts.png +share/gnome/help/anjuta/ja/figures/project_info.png +share/gnome/help/anjuta/ja/figures/project_win.png +share/gnome/help/anjuta/ja/figures/registers.png +share/gnome/help/anjuta/ja/figures/scrshot.png +share/gnome/help/anjuta/ja/figures/sharedlibs.png +share/gnome/help/anjuta/ja/figures/signal_mod.png +share/gnome/help/anjuta/ja/figures/signals.png +share/gnome/help/anjuta/ja/figures/stack.png +share/gnome/help/anjuta/ja/figures/supports.png +share/gnome/help/anjuta/ja/figures/toolbar_browser.png +share/gnome/help/anjuta/ja/figures/toolbar_debug.png +share/gnome/help/anjuta/ja/figures/toolbar_ext.png +share/gnome/help/anjuta/ja/figures/toolbar_format.png +share/gnome/help/anjuta/ja/figures/toolbar_main.png +share/gnome/help/anjuta/ja/figures/toolbar_tags.png +share/gnome/help/anjuta/ja/figures/warnings.png +share/gnome/help/anjuta/ja/figures/watch.png +share/gnome/help/anjuta/ja/figures/watch_add.png +share/gnome/help/anjuta/ja/fileoperations.xml +share/gnome/help/anjuta/ja/interface.xml +share/gnome/help/anjuta/ja/introduction.xml +share/gnome/help/anjuta/ja/legal.xml +share/gnome/help/anjuta/ja/license.xml +share/gnome/help/anjuta/ja/preferences.xml +share/gnome/help/anjuta/ja/projects.xml share/gnome/mime-info/anjuta.mime -share/gnome/mimelnk/application/x-anjuta-project.desktop share/gnome/omf/anjuta/anjuta-faqs-C.omf @exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-faqs-C.omf 2>/dev/null || /usr/bin/true -share/gnome/omf/anjuta/anjuta-faqs-ja_JP.eucJP.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-faqs-ja_JP.eucJP.omf 2>/dev/null || /usr/bin/true +share/gnome/omf/anjuta/anjuta-faqs-ja_JP.UTF-8.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-faqs-ja_JP.UTF-8.omf 2>/dev/null || /usr/bin/true share/gnome/omf/anjuta/anjuta-manual-C.omf @exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-manual-C.omf 2>/dev/null || /usr/bin/true -share/gnome/omf/anjuta/anjuta-manual-ja_JP.eucJP.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-manual-ja_JP.eucJP.omf 2>/dev/null || /usr/bin/true +share/gnome/omf/anjuta/anjuta-manual-ja_JP.UTF-8.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-manual-ja_JP.UTF-8.omf 2>/dev/null || /usr/bin/true share/gnome/omf/anjuta/anjuta-tutorial-C.omf @exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-tutorial-C.omf 2>/dev/null || /usr/bin/true -share/gnome/pixmaps/anjuta/add.xpm -share/gnome/pixmaps/anjuta/an_tag.xpm +share/gnome/omf/anjuta/anjuta-tutorial-de.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/anjuta/anjuta-tutorial-de.omf 2>/dev/null || /usr/bin/true share/gnome/pixmaps/anjuta/anjuta_icon.png share/gnome/pixmaps/anjuta/anjuta_logo.png +share/gnome/pixmaps/anjuta/anjuta_logo1.png share/gnome/pixmaps/anjuta/anjuta_splash.png share/gnome/pixmaps/anjuta/applogo.png share/gnome/pixmaps/anjuta/appwiz_bonobo.png @@ -276,64 +329,51 @@ share/gnome/pixmaps/anjuta/appwiz_gtkmm.png share/gnome/pixmaps/anjuta/appwiz_gtkmm2.png share/gnome/pixmaps/anjuta/appwiz_libglade.png share/gnome/pixmaps/anjuta/appwiz_libglade2.png +share/gnome/pixmaps/anjuta/appwiz_opengl.png +share/gnome/pixmaps/anjuta/appwiz_sdl.png share/gnome/pixmaps/anjuta/appwiz_terminal.png share/gnome/pixmaps/anjuta/appwiz_wxwin.png share/gnome/pixmaps/anjuta/appwiz_xlib.png share/gnome/pixmaps/anjuta/appwizard.png -share/gnome/pixmaps/anjuta/autocomplete.xpm +share/gnome/pixmaps/anjuta/autocomplete-16.png +share/gnome/pixmaps/anjuta/autocomplete.png 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-end-16.png +share/gnome/pixmaps/anjuta/block-end.png +share/gnome/pixmaps/anjuta/block-start-16.png +share/gnome/pixmaps/anjuta/block-start.png 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-first-16.png +share/gnome/pixmaps/anjuta/bookmark-first.png +share/gnome/pixmaps/anjuta/bookmark-last-16.png +share/gnome/pixmaps/anjuta/bookmark-last.png +share/gnome/pixmaps/anjuta/bookmark-next-16.png +share/gnome/pixmaps/anjuta/bookmark-next.png +share/gnome/pixmaps/anjuta/bookmark-prev-16.png +share/gnome/pixmaps/anjuta/bookmark-prev.png 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/cfolder.xpm -share/gnome/pixmaps/anjuta/close_file.xpm share/gnome/pixmaps/anjuta/close_file_small.xpm -share/gnome/pixmaps/anjuta/close_project.xpm +share/gnome/pixmaps/anjuta/close_project.png share/gnome/pixmaps/anjuta/compile.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_html.xpm -share/gnome/pixmaps/anjuta/file_i18n.xpm -share/gnome/pixmaps/anjuta/file_icon.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/error-next-16.png +share/gnome/pixmaps/anjuta/error-next.png +share/gnome/pixmaps/anjuta/error-prev-16.png +share/gnome/pixmaps/anjuta/error-prev.png 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/fv_core.xpm -share/gnome/pixmaps/anjuta/fv_exec.xpm -share/gnome/pixmaps/anjuta/fv_image.xpm -share/gnome/pixmaps/anjuta/fv_text.xpm -share/gnome/pixmaps/anjuta/fv_unknown.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 @@ -344,12 +384,6 @@ share/gnome/pixmaps/anjuta/indent_inc.xpm share/gnome/pixmaps/anjuta/indent_set.xpm share/gnome/pixmaps/anjuta/inspect.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/madeinanjuta.xcf share/gnome/pixmaps/anjuta/messages.xpm share/gnome/pixmaps/anjuta/mini-modules.xpm @@ -360,46 +394,27 @@ share/gnome/pixmaps/anjuta/mini_dock.xpm share/gnome/pixmaps/anjuta/mini_find.xpm share/gnome/pixmaps/anjuta/mini_locals.xpm share/gnome/pixmaps/anjuta/mini_term.xpm -share/gnome/pixmaps/anjuta/new_file.xpm share/gnome/pixmaps/anjuta/new_folder.xpm -share/gnome/pixmaps/anjuta/ofolder.xpm -share/gnome/pixmaps/anjuta/open_file.xpm -share/gnome/pixmaps/anjuta/open_project.xpm +share/gnome/pixmaps/anjuta/open_project.png share/gnome/pixmaps/anjuta/password.png -share/gnome/pixmaps/anjuta/paste.xpm share/gnome/pixmaps/anjuta/pointer.xpm -share/gnome/pixmaps/anjuta/preferences.xpm -share/gnome/pixmaps/anjuta/prefs_autoformat.xpm -share/gnome/pixmaps/anjuta/prefs_build.xpm -share/gnome/pixmaps/anjuta/prefs_cvs.xpm -share/gnome/pixmaps/anjuta/prefs_editor.xpm -share/gnome/pixmaps/anjuta/prefs_general.xpm -share/gnome/pixmaps/anjuta/prefs_messages.xpm -share/gnome/pixmaps/anjuta/prefs_print.xpm -share/gnome/pixmaps/anjuta/prefs_styles.xpm -share/gnome/pixmaps/anjuta/print.xpm -share/gnome/pixmaps/anjuta/print_color.xpm -share/gnome/pixmaps/anjuta/print_landscape.xpm -share/gnome/pixmaps/anjuta/print_layout.xpm -share/gnome/pixmaps/anjuta/print_nocolor.xpm -share/gnome/pixmaps/anjuta/print_portrait.xpm +share/gnome/pixmaps/anjuta/preferences-build.png +share/gnome/pixmaps/anjuta/preferences-cvs.png +share/gnome/pixmaps/anjuta/preferences-editor.png +share/gnome/pixmaps/anjuta/preferences-encodings.png +share/gnome/pixmaps/anjuta/preferences-general.png +share/gnome/pixmaps/anjuta/preferences-indentation.png +share/gnome/pixmaps/anjuta/preferences-messages.png +share/gnome/pixmaps/anjuta/preferences-print.png +share/gnome/pixmaps/anjuta/preferences-terminal.png 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/run_to_cursor.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/save_project.png 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/sv_class.xpm share/gnome/pixmaps/anjuta/sv_function.xpm share/gnome/pixmaps/anjuta/sv_macro.xpm @@ -415,19 +430,25 @@ share/gnome/pixmaps/anjuta/sv_struct.xpm share/gnome/pixmaps/anjuta/sv_unknown.xpm share/gnome/pixmaps/anjuta/sv_variable.xpm share/gnome/pixmaps/anjuta/syntax.xpm -share/gnome/pixmaps/anjuta/undo.xpm -share/gnome/pixmaps/anjuta/undock.xpm +share/gnome/pixmaps/anjuta/undock.png share/gnome/pixmaps/anjuta/watch.xpm share/gnome/pixmaps/anjuta/wizard.xpm share/locale/az/LC_MESSAGES/anjuta.mo +share/locale/be/LC_MESSAGES/anjuta.mo +share/locale/ca/LC_MESSAGES/anjuta.mo +share/locale/cs/LC_MESSAGES/anjuta.mo share/locale/da/LC_MESSAGES/anjuta.mo share/locale/de/LC_MESSAGES/anjuta.mo share/locale/el/LC_MESSAGES/anjuta.mo share/locale/en_GB/LC_MESSAGES/anjuta.mo share/locale/es/LC_MESSAGES/anjuta.mo share/locale/fr/LC_MESSAGES/anjuta.mo +share/locale/hi/LC_MESSAGES/anjuta.mo share/locale/it/LC_MESSAGES/anjuta.mo share/locale/ja/LC_MESSAGES/anjuta.mo +share/locale/mk/LC_MESSAGES/anjuta.mo +share/locale/ml/LC_MESSAGES/anjuta.mo +share/locale/ms/LC_MESSAGES/anjuta.mo share/locale/nl/LC_MESSAGES/anjuta.mo share/locale/no/LC_MESSAGES/anjuta.mo share/locale/pl/LC_MESSAGES/anjuta.mo @@ -435,36 +456,36 @@ share/locale/pt/LC_MESSAGES/anjuta.mo share/locale/pt_BR/LC_MESSAGES/anjuta.mo share/locale/ru/LC_MESSAGES/anjuta.mo share/locale/sk/LC_MESSAGES/anjuta.mo +share/locale/sr/LC_MESSAGES/anjuta.mo +share/locale/sr@Latn/LC_MESSAGES/anjuta.mo share/locale/sv/LC_MESSAGES/anjuta.mo -share/locale/ta/LC_MESSAGES/anjuta.mo share/locale/tr/LC_MESSAGES/anjuta.mo share/locale/uk/LC_MESSAGES/anjuta.mo share/locale/zh_CN/LC_MESSAGES/anjuta.mo share/locale/zh_TW/LC_MESSAGES/anjuta.mo +@dirrm share/mimelnk/application +@dirrm share/mimelnk @dirrm share/gnome/pixmaps/anjuta @dirrm share/gnome/omf/anjuta -@dirrm share/gnome/mimelnk/application -@dirrm share/gnome/mimelnk -@dirrm share/gnome/help/anjuta/C/anjuta-tutorial/figures -@dirrm share/gnome/help/anjuta/C/anjuta-tutorial -@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/figures -@dirrm share/gnome/help/anjuta/C/anjuta-faqs -@dirrm share/gnome/help/anjuta/C -@dirrm share/gnome/help/anjuta/ja/anjuta-manual/figures -@dirrm share/gnome/help/anjuta/ja/anjuta-manual -@dirrm share/gnome/help/anjuta/ja/anjuta-faqs/figures -@dirrm share/gnome/help/anjuta/ja/anjuta-faqs +@dirrm share/gnome/help/anjuta/ja/figures @dirrm share/gnome/help/anjuta/ja +@dirrm share/gnome/help/anjuta/de/images +@dirrm share/gnome/help/anjuta/de +@dirrm share/gnome/help/anjuta/C/figures +@dirrm share/gnome/help/anjuta/C @dirrm share/gnome/help/anjuta +@dirrm share/gnome/anjuta/gdl/glade +@dirrm share/gnome/anjuta/gdl @dirrm share/gnome/anjuta/properties @dirrm share/gnome/anjuta/gnome2 @dirrm share/gnome/anjuta/gnome +@dirrm share/gnome/anjuta/glade @dirrm share/gnome/anjuta +%%PORTDOCS%%@dirrm share/doc/anjuta @dirrm lib/anjuta @unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-faqs-C.omf 2>/dev/null || /usr/bin/true -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-faqs-ja_JP.eucJP.omf 2>/dev/null || /usr/bin/true +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-faqs-ja_JP.UTF-8.omf 2>/dev/null || /usr/bin/true @unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-manual-C.omf 2>/dev/null || /usr/bin/true -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-manual-ja_JP.eucJP.omf 2>/dev/null || /usr/bin/true +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-manual-ja_JP.UTF-8.omf 2>/dev/null || /usr/bin/true +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-tutorial-de.omf 2>/dev/null || /usr/bin/true @unexec scrollkeeper-uninstall -q %D/share/gnome/omf/anjuta/anjuta-tutorial-C.omf 2>/dev/null || /usr/bin/true |