forked from pool/peazip
Luigi Baldoni
84d87a64c5
- Removed xorg-x11-devel build requirement - Added peazip-help_path.patch to use the correct path for the pdf guide OBS-URL: https://build.opensuse.org/request/show/577288 OBS-URL: https://build.opensuse.org/package/show/devel:languages:pascal/peazip?expand=0&rev=29
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
Index: peazip-6.5.0.src/peach.pas
|
|
===================================================================
|
|
--- peazip-6.5.0.src.orig/peach.pas
|
|
+++ peazip-6.5.0.src/peach.pas
|
|
@@ -35341,7 +35341,7 @@ end;
|
|
|
|
procedure TForm_peach.baboutlocalhelpClick(Sender: TObject);
|
|
begin
|
|
-cp_open(executable_path+'peazip_help.pdf',desk_env);
|
|
+cp_open('/usr/share/doc/packages/peazip/peazip_help.pdf',desk_env);
|
|
end;
|
|
|
|
procedure TForm_peach.baboutsupportClick(Sender: TObject);
|
|
@@ -54349,7 +54349,7 @@ end;
|
|
procedure TForm_peach.mpeahelpofflineClick(Sender: TObject);
|
|
begin
|
|
//cp_open('http://www.peazip.org/peazip_help.pdf',desk_env);
|
|
-cp_open(executable_path+'peazip_help.pdf',desk_env);
|
|
+cp_open('/usr/share/doc/packages/peazip/peazip_help.pdf',desk_env);
|
|
end;
|
|
|
|
procedure TForm_peach.mRecent9Click(Sender: TObject);
|
|
Index: peazip-6.5.0.src/unit4.pas
|
|
===================================================================
|
|
--- peazip-6.5.0.src.orig/unit4.pas
|
|
+++ peazip-6.5.0.src/unit4.pas
|
|
@@ -122,7 +122,7 @@ end;
|
|
|
|
procedure TFormAbout.baboutlocalhelpClick(Sender: TObject);
|
|
begin
|
|
- cp_open(executable_path+'peazip_help.pdf',desk_env);
|
|
+ cp_open('/usr/share/doc/packages/peazip/peazip_help.pdf',desk_env);
|
|
end;
|
|
|
|
initialization
|