Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37509124
en ru br
ALT Linux repos
S:3.2.2-alt4
D:2.2.2-alt1
5.0: 2.2.4-alt1
4.1: 2.2.0-alt3
4.0: 2.2.0-alt2
3.0: 1.0.10-alt1

Group :: Development/Other
RPM: fpc

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: fpc-relpath.patch
Download


This patch adds an utility for computing relative path according to a given
base directory. This is useful for libraries that are to install .lpk in
order to be used with lazarus. As these libraries may be compiled without
need to build depend on Lazarus, we add it in fp-utils package which is likely
to be used by any big project which build depends on fp-compiler.
Index: fpc/fpcsrc/utils/relpath.pas
===================================================================
--- /dev/null
+++ fpc/fpcsrc/utils/relpath.pas
@@ -0,0 +1,16 @@
+program relpath;
+uses
+  SysUtils;
+
+var
+	BaseDir: string;
+	TargetDir: string;
+begin
+	TargetDir := ParamStr(1);
+	BaseDir := ParamStr(2);
+	if BaseDir = ''
+	then begin
+		BaseDir := GetCurrentDir;
+	end;
+	WriteLn(ExtractRelativePath(IncludeTrailingPathDelimiter(BaseDir), TargetDir));
+end.
Index: fpc/install/man/man1/relpath.1
===================================================================
--- /dev/null
+++ fpc/install/man/man1/relpath.1
@@ -0,0 +1,32 @@
+.TH relpath 1 "7 May 2013" "Free Pascal" "Relative path computing tool"
+.SH NAME
+relpath \- The Free Pascal file deletion tool.
+
+.SH SYNOPSIS
+
+.B relpath
+[\fIfile or directory\fR] [\fIbase directory\fR]
+
+.SH DESCRIPTION
+
+.B relpath
+This is an utility for computing relative path according to a given base
+directory. This is useful for libraries that are to install .lpk in order to be
+used with lazarus. As these libraries may be compiled without need to build
+depend on Lazarus, we add it in fp-utils package which is likely to be used by
+any big project which build depends on fp-compiler.
+
+.SH USAGE
+
+.B relpath 
+takes the following arguments:
+.TP
+.B file or directory
+The target file or directory for which relative path should be computed.
+.TP
+.B base directory
+The base directory according to which the relative patch should be computed.
+
+.SH SEE ALSO
+.IP 
+.BR  readlink (1)
Index: fpc/fpcsrc/utils/fpmake.pp
===================================================================
--- fpc.orig/fpcsrc/utils/fpmake.pp
+++ fpc/fpcsrc/utils/fpmake.pp
@@ -84,6 +84,7 @@ begin
     P.Targets.AddProgram('mkinsadd.pp');
     P.Targets.AddProgram('postw32.pp');
     P.Targets.AddProgram('rmcvsdir.pp');
+    P.Targets.AddProgram('relpath.pas');
     P.Targets.AddProgram('grab_vcsa.pp',[linux]);
     T:=P.Targets.AddProgram('fpcsubst.pp');
     T.Dependencies.AddUnit('usubst');
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin