1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

Update to 1.2.0

This commit is contained in:
Alexander Nedotsukov 2003-12-09 06:38:29 +00:00
parent 299d12aff9
commit 126cc6674f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=95453
8 changed files with 67 additions and 84 deletions

View File

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

View File

@ -1 +1 @@
MD5 (anjuta-1.1.98.tar.gz) = cd4a048c856831d5eaddd6e78de3169c
MD5 (anjuta-1.2.0.tar.gz) = 5ba4547bd71dd9c6d19006913623680e

View File

@ -1,20 +0,0 @@
--- scintilla/PlatGTK.cxx.orig Mon Sep 29 19:29:19 2003
+++ scintilla/PlatGTK.cxx Sat Nov 8 05:00:37 2003
@@ -1034,7 +1034,7 @@
static char *UTF8FromIconv(iconv_t iconvh, const char *s, int len) {
if (iconvh != ((iconv_t)(-1))) {
char *utfForm = new char[len*3+1];
- char *pin = const_cast<char *>(s);
+ const char *pin = s;
size_t inLeft = len;
char *pout = utfForm;
size_t outLeft = len*3+1;
@@ -1051,7 +1051,7 @@
static size_t MultiByteLenFromIconv(iconv_t iconvh, const char *s, size_t len) {
for (size_t lenMB=1; (lenMB<4) && (lenMB <= len); lenMB++) {
char wcForm[2];
- char *pin = const_cast<char *>(s);
+ const char *pin = s;
size_t inLeft = lenMB;
char *pout = wcForm;
size_t outLeft = 2;

View File

@ -1,20 +0,0 @@
--- scintilla/ScintillaGTK.cxx.orig Mon Sep 29 19:29:20 2003
+++ scintilla/ScintillaGTK.cxx Sat Nov 8 05:02:57 2003
@@ -965,7 +965,7 @@
iconv_t iconvh = iconv_open(source, "UTF-8");
if (iconvh != ((iconv_t)(-1))) {
char localeVal[4]="\0\0\0";
- char *pin = utfVal;
+ const char *pin = utfVal;
size_t inLeft = strlen(utfVal);
char *pout = localeVal;
size_t outLeft = sizeof(localeVal);
@@ -1103,7 +1103,7 @@
iconv_t iconvh = iconv_open(charSetDest, charSetSource);
if (iconvh != ((iconv_t)(-1))) {
destForm = new char[len*3+1];
- char *pin = s;
+ const char *pin = s;
size_t inLeft = len;
char *pout = destForm;
size_t outLeft = len*3+1;

View File

@ -1,14 +0,0 @@
--- src/appwizard_cbs.c.orig Sat Nov 8 05:35:15 2003
+++ src/appwizard_cbs.c Sat Nov 8 05:35:41 2003
@@ -235,10 +235,10 @@
gnomedruidpage, gpointer arg1, gpointer user_data)
{
AppWizard *aw;
- aw = user_data;
GtkTextBuffer *buffer;
GtkTextIter start, end;
+ aw = user_data;
g_free (aw->description);
buffer =
gtk_text_view_get_buffer (GTK_TEXT_VIEW (aw->widgets.description_text));

View File

@ -1,5 +1,5 @@
--- src/launcher.c.orig Wed Nov 5 21:50:36 2003
+++ src/launcher.c Sat Nov 8 05:43:47 2003
--- 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>
@ -12,7 +12,7 @@
#include "pixmaps.h"
#include "launcher.h"
@@ -836,9 +836,9 @@
@@ -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)
@ -24,3 +24,12 @@
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 =

View File

@ -1,15 +0,0 @@
--- src/start-with.c.orig Sat Nov 8 05:55:08 2003
+++ src/start-with.c Sat Nov 8 05:55:51 2003
@@ -54,9 +54,11 @@
on_open_last_project_clicked (GtkButton *button, gpointer data)
{
GtkWidget *dialog = GTK_WIDGET (data);
+ gchar* prj_filename;
+
/* Do not allow a second click */
gtk_widget_set_sensitive (GTK_WIDGET (button), FALSE);
- gchar *prj_filename = anjuta_preferences_get (app->preferences,
+ prj_filename = anjuta_preferences_get (app->preferences,
"anjuta.last.open.project");
project_dbase_load_project (app->project_dbase, prj_filename, TRUE);
g_free (prj_filename);

View File

@ -10,6 +10,15 @@ 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_project.template
share/gnome/anjuta/autogen.sh.generic
@ -111,15 +120,6 @@ share/gnome/anjuta/setup-gettext
share/gnome/anjuta/stock_libs.anj
share/gnome/anjuta/system.tags
share/gnome/anjuta/welcome.txt
%%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/applications/anjuta.desktop
share/gnome/help/anjuta/C/anjuta-faqs.xml
share/gnome/help/anjuta/C/anjuta-manual.xml
@ -201,6 +201,39 @@ 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
@ -277,6 +310,8 @@ 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/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
@ -400,6 +435,8 @@ 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
@ -409,6 +446,7 @@ 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
@ -418,6 +456,8 @@ 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/tr/LC_MESSAGES/anjuta.mo
share/locale/uk/LC_MESSAGES/anjuta.mo
@ -429,20 +469,23 @@ share/locale/zh_TW/LC_MESSAGES/anjuta.mo
@dirrm share/gnome/omf/anjuta
@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
%%PORTDOCS%%@dirrm share/doc/anjuta
@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.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.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