diff options
author | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-10-23 22:27:48 +0000 |
---|---|---|
committer | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-10-23 22:27:48 +0000 |
commit | 4cde687665fd0d6e700b0f78bbb4b68400d83c9d (patch) | |
tree | 5a40fd7fe71713edecaf50bf15fa012a1e374c42 | |
parent | 902854381377981744c6b09d37adf39a7e4a1e7e (diff) | |
download | fpc-4cde687665fd0d6e700b0f78bbb4b68400d83c9d.tar.gz |
* Some more manifests
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11963 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r-- | packages/fv/fpmake.pp | 10 | ||||
-rw-r--r-- | packages/iconvenc/fpmake.pp | 7 | ||||
-rw-r--r-- | packages/libc/fpmake.pp | 10 | ||||
-rw-r--r-- | packages/symbolic/fpmake.pp | 13 | ||||
-rw-r--r-- | packages/users/fpmake.pp | 7 | ||||
-rw-r--r-- | packages/winunits-base/fpmake.pp | 6 | ||||
-rw-r--r-- | packages/winunits-jedi/fpmake.pp | 6 |
7 files changed, 53 insertions, 6 deletions
diff --git a/packages/fv/fpmake.pp b/packages/fv/fpmake.pp index 2f8aaaaf06..0522f326d1 100644 --- a/packages/fv/fpmake.pp +++ b/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 diff --git a/packages/iconvenc/fpmake.pp b/packages/iconvenc/fpmake.pp index 9e431ac549..4227fe2b66 100644 --- a/packages/iconvenc/fpmake.pp +++ b/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'); diff --git a/packages/libc/fpmake.pp b/packages/libc/fpmake.pp index 1655e2b5e7..b22763dc06 100644 --- a/packages/libc/fpmake.pp +++ b/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; diff --git a/packages/symbolic/fpmake.pp b/packages/symbolic/fpmake.pp index 3fee82d05f..d74f65f1dd 100644 --- a/packages/symbolic/fpmake.pp +++ b/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; diff --git a/packages/users/fpmake.pp b/packages/users/fpmake.pp index b59cdacbc5..0465d1d129 100644 --- a/packages/users/fpmake.pp +++ b/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]); diff --git a/packages/winunits-base/fpmake.pp b/packages/winunits-base/fpmake.pp index 5fc110419b..cd4192913d 100644 --- a/packages/winunits-base/fpmake.pp +++ b/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'); diff --git a/packages/winunits-jedi/fpmake.pp b/packages/winunits-jedi/fpmake.pp index 4ed13ed78f..3f34914442 100644 --- a/packages/winunits-jedi/fpmake.pp +++ b/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'); |