summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2010-05-19 18:31:29 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2010-05-19 18:31:29 +0000
commitd3cacb98df78b7f41e72fbd7911dbb33b98aa607 (patch)
treec11b8d7a853c5bdeae9f795a7f1853aa69d57e7f /app-editors/scite/files
parentRevision bump, add patch that fixes issues with NetworkManager (bug #320097),... (diff)
downloadgentoo-2-d3cacb98df78b7f41e72fbd7911dbb33b98aa607.tar.gz
gentoo-2-d3cacb98df78b7f41e72fbd7911dbb33b98aa607.tar.bz2
gentoo-2-d3cacb98df78b7f41e72fbd7911dbb33b98aa607.zip
Remove old versions.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/scite/files')
-rw-r--r--app-editors/scite/files/scite-1.78-install.patch20
-rw-r--r--app-editors/scite/files/scite-1.78-no-lua.patch15
2 files changed, 0 insertions, 35 deletions
diff --git a/app-editors/scite/files/scite-1.78-install.patch b/app-editors/scite/files/scite-1.78-install.patch
deleted file mode 100644
index 52f51e65b676..000000000000
--- a/app-editors/scite/files/scite-1.78-install.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- scite/gtk/makefile.orig 2006-10-09 06:26:55 -0300
-+++ scite/gtk/makefile 2006-10-09 06:36:09 -0300
-@@ -123,11 +123,14 @@
-
- ifdef gnomeprefix
- ifdef GTK2
-- $(INSTALL) -m 755 -D SciTE.desktop $(DESTDIR)$(datadir)/applications/SciTE.desktop
-+ $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/applications/
-+ $(INSTALL) -m 755 SciTE.desktop $(DESTDIR)$(datadir)/applications/
- else
-- $(INSTALL) -m 755 -D SciTE.desktop $(DESTDIR)$(datadir)/applications/SciTE.desktop
-+ $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/applications/
-+ $(INSTALL) -m 755 SciTE.desktop $(DESTDIR)$(datadir)/applications/
- endif
-- $(INSTALL) -m 644 -D Sci48M.png $(DESTDIR)$(pixmapdir)/Sci48M.png
-+ $(INSTALL) -m 755 -d $(DESTDIR)$(pixmapdir)/
-+ $(INSTALL) -m 644 Sci48M.png $(DESTDIR)$(pixmapdir)/Sci48M.png
- endif
-
- uninstall:
diff --git a/app-editors/scite/files/scite-1.78-no-lua.patch b/app-editors/scite/files/scite-1.78-no-lua.patch
deleted file mode 100644
index 2511cef0faf9..000000000000
--- a/app-editors/scite/files/scite-1.78-no-lua.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- scite/src/SciTEProps.cxx 2008-04-05 17:23:22.000000000 +0200
-+++ scite/src/SciTEProps.cxx 2008-04-05 17:23:41.000000000 +0200
-@@ -1461,10 +1461,12 @@
-
- // return the int value of the command name passed in.
- int SciTEBase::GetMenuCommandAsInt(SString commandName) {
-+#ifndef NO_LUA
- int i = IFaceTable::FindConstant(commandName.c_str());
- if (i != -1) {
- return IFaceTable::constants[i].value;
- }
-+#endif
- // Otherwise we might have entered a number as command to access a "SCI_" command
- return commandName.value();
- }