diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-12-27 10:58:57 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-12-27 10:58:57 +0000 |
commit | 59ae077af5e957acf9f54a7a366d3b190343e892 (patch) | |
tree | 183201de7d5647ea9f50762240638f09d414ac8e /app-editors/scite/files | |
parent | sign manifest (diff) | |
download | gentoo-2-59ae077af5e957acf9f54a7a366d3b190343e892.tar.gz gentoo-2-59ae077af5e957acf9f54a7a366d3b190343e892.tar.bz2 gentoo-2-59ae077af5e957acf9f54a7a366d3b190343e892.zip |
Add patches needed for BSD, see bug #150550.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'app-editors/scite/files')
-rw-r--r-- | app-editors/scite/files/scite-1.71-install.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app-editors/scite/files/scite-1.71-install.patch b/app-editors/scite/files/scite-1.71-install.patch new file mode 100644 index 000000000000..c1d87501c855 --- /dev/null +++ b/app-editors/scite/files/scite-1.71-install.patch @@ -0,0 +1,20 @@ +--- 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 644 -d $(DESTDIR)$(pixmapdir)/ ++ $(INSTALL) -m 644 Sci48M.png $(DESTDIR)$(pixmapdir)/Sci48M.png + endif + + uninstall: |