Browse Source

* Some more manifests

git-svn-id: trunk@11963 -
marco 17 years ago
parent
commit
e64a1f6026

+ 9 - 1
packages/fv/fpmake.pp

@@ -17,6 +17,12 @@ begin
     P.Directory:='fv';
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
+    P.Author := 'Leon De Boer and Pierre Mueller';
+    P.License := 'LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Free Vision, a portable Turbo Vision clone.';
+    P.NeedLibC:= false;
 
     P.SourcePath.Add('src');
     P.IncludePath.Add('src');
@@ -201,7 +207,9 @@ begin
     T:=P.Targets.AddUnit('sysmsg.pas');
       with T.Dependencies do
         begin
-          AddInclude('unixsmsg.inc');
+          AddInclude('unixsmsg.inc',AllUnixOSes);
+          AddInclude('win32smsg.inc',[win32,win64]);
+          AddInclude('go32smsg.inc',[go32v2]);
         end;
     T:=P.Targets.AddUnit('tabs.pas');
       with T.Dependencies do

+ 7 - 0
packages/iconvenc/fpmake.pp

@@ -17,6 +17,13 @@ begin
     P.Directory:='iconvenc';
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
+    P.Author := 'Marco van de Voort';
+    P.License := 'Library: LGPL2 or later, header: LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'A libiconv header translation.';
+    P.NeedLibC:= true;
+
     P.SourcePath.Add('src');
     P.IncludePath.Add('src');
 

+ 9 - 1
packages/libc/fpmake.pp

@@ -17,6 +17,14 @@ begin
     P.Directory:='libc';
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
+
+    P.Author := 'Peter Vreman and Michael van Canneyt (?)';
+    P.License := 'LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Kylix compatibility libc header, (linux/x86 only, deprecated for new development)';
+    P.NeedLibC:= true;
+
     P.SourcePath.Add('src');
     P.IncludePath.Add('src');
     P.OSES:=[linux];
@@ -257,7 +265,7 @@ begin
           AddUnit('kerneldefs');
           AddUnit('kernelioctl');
         end;
-
+     p.Sources.Adddoc('README');
 
 {$ifndef ALLPACKAGES}
     Run;

+ 9 - 4
packages/symbolic/fpmake.pp

@@ -11,17 +11,21 @@ begin
   With Installer do
     begin
 {$endif ALLPACKAGES}
-
     P:=AddPackage('symbolic');
 {$ifdef ALLPACKAGES}
     P.Directory:='symbolic';
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
+    P.Author := 'Marco van de Voort';
+    P.License := 'LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Expression parser with support for fast evaluation';
+    P.NeedLibC:= false;
+
     P.SourcePath.Add('src');
     P.IncludePath.Add('src');
 
-//    P.Dependencies.Add('x11');
-
     T:=P.Targets.AddUnit('symbolic.pas');
       with T.Dependencies do
         begin
@@ -35,7 +39,8 @@ begin
     P.ExamplePath.Add('examples');
     P.Targets.AddExampleProgram('evaltest.pas');
     P.Targets.AddExampleProgram('rpnthing.pas');
-
+    P.Sources.AddDoc('doc/optimization.txt');
+    P.Sources.AddDoc('doc/symbolic.txt');
 
 {$ifndef ALLPACKAGES}
     Run;

+ 7 - 0
packages/users/fpmake.pp

@@ -17,6 +17,13 @@ begin
     P.Directory:='users';
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
+    P.Author := 'Michael van Canneyt, Marco van de Voort';
+    P.License := 'LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Headers to access Unix groups and users.';
+    P.NeedLibC:= false;
+
     P.SourcePath.Add('src');
 
     T:=P.Targets.AddUnit('crypth.pp',[linux]);

+ 6 - 0
packages/winunits-base/fpmake.pp

@@ -18,6 +18,12 @@ begin
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
     P.OSes:=[win32,win64];
+    P.Author := 'Florian Klaempfl, Marco van de Voort';
+    P.License := 'LGPL with modification, ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Base Delphi compatible windows headers units outside the RTL';
+    P.NeedLibC:= true;
 
     P.SourcePath.Add('src');
 

+ 6 - 0
packages/winunits-jedi/fpmake.pp

@@ -19,6 +19,12 @@ begin
 {$endif ALLPACKAGES}
     P.Version:='2.2.2-0';
     P.OSes:=[win32,win64];
+    P.Author := 'Marcel van Brakel, Jedi-apilib team';
+    P.License := 'LGPL with modification/MPL dual licensed ';
+    P.ExternalURL := 'www.freepascal.org';
+    P.Email := '';
+    P.Description := 'Very complete set of Windows units by Jedi Apilib';
+    P.NeedLibC:= true;
 
     P.Dependencies.Add('winunits-base');