diff options
author | marcus <marcus@FreeBSD.org> | 2002-11-06 01:37:47 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-11-06 01:37:47 +0000 |
commit | e30c57a2542b848007f11744bee7572aff660f75 (patch) | |
tree | 3124728d17dd4d27172909d701a70215b051213d /editors | |
parent | e33a3e0c67b64721187a8fe6db420a3fb75f43eb (diff) | |
download | FreeBSD-ports-e30c57a2542b848007f11744bee7572aff660f75.zip FreeBSD-ports-e30c57a2542b848007f11744bee7572aff660f75.tar.gz |
Update to 1.49.
Reviewed by: sobomax
Approved by: sobomax (scite update)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/scite/Makefile | 2 | ||||
-rw-r--r-- | editors/scite/distinfo | 2 | ||||
-rw-r--r-- | editors/scite/files/patch-SciTEGTK.cxx | 13 | ||||
-rw-r--r-- | editors/scite/files/patch-aa | 31 | ||||
-rw-r--r-- | editors/scite/pkg-plist | 3 |
5 files changed, 28 insertions, 23 deletions
diff --git a/editors/scite/Makefile b/editors/scite/Makefile index c4f3017..4c6f3d7 100644 --- a/editors/scite/Makefile +++ b/editors/scite/Makefile @@ -6,7 +6,7 @@ # PORTNAME= scite -PORTVERSION= 1.44 +PORTVERSION= 1.49 CATEGORIES= editors gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.scintilla.org/ diff --git a/editors/scite/distinfo b/editors/scite/distinfo index a6bca76..b1cd6a1 100644 --- a/editors/scite/distinfo +++ b/editors/scite/distinfo @@ -1 +1 @@ -MD5 (scite144.tgz) = 88199f52c4a337a938fff64d0eb470b0 +MD5 (scite149.tgz) = 4a60e1ff31b5f97106a6e2b6be013d92 diff --git a/editors/scite/files/patch-SciTEGTK.cxx b/editors/scite/files/patch-SciTEGTK.cxx index 7f7d45b..7452de8 100644 --- a/editors/scite/files/patch-SciTEGTK.cxx +++ b/editors/scite/files/patch-SciTEGTK.cxx @@ -1,14 +1,11 @@ - -$FreeBSD$ - ---- SciTEGTK.cxx 2002/08/19 16:01:39 1.1 -+++ SciTEGTK.cxx 2002/08/19 16:02:02 -@@ -1882,7 +1882,7 @@ +--- SciTEGTK.cxx.orig Tue Nov 5 17:24:05 2002 ++++ SciTEGTK.cxx Tue Nov 5 17:24:42 2002 +@@ -1910,7 +1910,7 @@ return 0;
}
--void SciTEGTK::AddToPopUp(const char *label, int cmd=0, bool enabled=true) {
-+void SciTEGTK::AddToPopUp(const char *label, int cmd, bool enabled) {
+-void SciTEGTK::AddToPopUp(const char *label, int cmd, bool enabled) {
++void SciTEGTK::AddToPopUp(const char *label, int cmd=0, bool enabled=true) {
SString localised = LocaliseString(label);
localised.insert(0, "/");
GtkItemFactoryEntry itemEntry = {
diff --git a/editors/scite/files/patch-aa b/editors/scite/files/patch-aa index ac5044b..d179084 100644 --- a/editors/scite/files/patch-aa +++ b/editors/scite/files/patch-aa @@ -1,8 +1,5 @@ - -$FreeBSD$ - ---- makefile.orig Mon Feb 11 12:01:37 2002 -+++ makefile Mon Feb 11 12:06:45 2002 +--- makefile.orig Tue Nov 5 17:36:21 2002 ++++ makefile Tue Nov 5 17:39:53 2002 @@ -10,34 +10,34 @@ # For the Gnome desktop stuff to work, prefix must point to where Gnome thinks it is. @@ -36,24 +33,32 @@ $FreeBSD$ -CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) +CXXFLAGS+=-DDEBUG -g $(CXXBASEFLAGS) else --CXXFLAGS=-DNDEBUG $(CXXBASEFLAGS) +-CXXFLAGS=-DNDEBUG -Os $(CXXBASEFLAGS) +CXXFLAGS+=-DNDEBUG $(CXXBASEFLAGS) endif .cxx.o: - $(CC) `gtk-config --cflags` $(CXXFLAGS) -c $< -o $@ -+ $(CC) $(shell $(GTK_CONFIG) --cflags) $(CXXFLAGS) -c $< -o $@ ++ $(CC) $(shell $(GTK_CONFIG) --cflags) $(shell $(GLIB_CONFIG) --libs gthread) $(CXXFLAGS) -c $< -o $@ all: $(PROG) -@@ -51,8 +51,8 @@ +@@ -45,14 +45,14 @@ + rm -f *.o $(PROG) + + deps: +- $(CC) -MM `gtk-config --cflags` $(CXXFLAGS) *.cxx ../src/*.cxx >deps.mak ++ $(CC) -MM `$(GTK_CONFIG) --cflags` `$(GLIB_CONFIG) --libs gthread)` $(CXXFLAGS) *.cxx ../src/*.cxx >deps.mak + + # make should be run in ../../scintilla/gtk to compile all the lexers. LEXEROBJS=$(wildcard ../../scintilla/gtk/Lex*.o) - $(PROG): SciTEGTK.o SciTEBase.o SciTEBuffers.o SciTEIO.o Exporters.o DirectorExtension.o \ --SciTEProps.o $(LEXEROBJS) ../../scintilla/bin/scintilla.a -- $(CC) `gtk-config --libs` -DGTK $^ -o $@ +-$(PROG): SciTEGTK.o SciTEBase.o SciTEBuffers.o SciTEIO.o Exporters.o DirectorExtension.o \ +-SciTEProps.o Utf8_16.o $(LEXEROBJS) ../../scintilla/bin/scintilla.a +- $(CC) `gtk-config --libs` `glib-config --libs gthread` -DGTK $^ -o $@ ++$(PROG): SciTEGTK.o SciTEBase.o SciTEBuffers.o SciTEIO.o Exporters.o DirectorExtension.o Utf8_16.o \ +SciTEProps.o # $(LEXEROBJS) ../../scintilla/bin/scintilla.a -+ $(CC) $(shell $(GTK_CONFIG) --libs) -DGTK $^ -L$(X11BASE)/lib -lscintilla -lscintilla_lexers -o $@ ++ $(CC) $(shell $(GTK_CONFIG) --libs) $(shell $(GLIB_CONFIG) --libs gthread) -DGTK $^ -L$(X11BASE)/lib -lscintilla -lscintilla_lexers -o $@ # SciTE-static no longer builds. Kept here in case of later need. SciTE-static: SciTEGTK.o SciTEBase.o SciTEBuffers.o SciTEIO.o Exporters.o SciTEProps.o \ @@ -63,7 +68,7 @@ $FreeBSD$ install: - install -s $(PROG) $(bindir) - install -d $(SYSCONF_PATH) -- install -D ../src/*.properties $(SYSCONF_PATH) +- install ../src/*.properties $(SYSCONF_PATH) - install ../doc/*.html $(SYSCONF_PATH) - install ../doc/SciTEIco.png $(SYSCONF_PATH) - install ../doc/PrintHi.png $(SYSCONF_PATH) diff --git a/editors/scite/pkg-plist b/editors/scite/pkg-plist index 22ef243..a34a4f2 100644 --- a/editors/scite/pkg-plist +++ b/editors/scite/pkg-plist @@ -18,16 +18,19 @@ share/gnome/scite/SciTERegEx.html share/gnome/scite/SciTETranslation.html share/gnome/scite/abbrev.properties share/gnome/scite/ada.properties +share/gnome/scite/asm.properties share/gnome/scite/ave.properties share/gnome/scite/baan.properties share/gnome/scite/bullant.properties share/gnome/scite/conf.properties share/gnome/scite/cpp.properties share/gnome/scite/eiffel.properties +share/gnome/scite/fortran.properties share/gnome/scite/html.properties share/gnome/scite/latex.properties share/gnome/scite/lisp.properties share/gnome/scite/lua.properties +share/gnome/scite/matlab.properties share/gnome/scite/nncrontab.properties share/gnome/scite/others.properties share/gnome/scite/pascal.properties |