diff options
author | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-10-23 20:15:59 +0000 |
---|---|---|
committer | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-10-23 20:15:59 +0000 |
commit | 915ce9b5bff39724251bf64a508b052cf42db047 (patch) | |
tree | 3cd9063a9125d0757b4b6719df4e9c13cf3a1627 | |
parent | 79b8ee4d4f4cdcdde47bec108d696dab9cd58905 (diff) | |
download | fpc-915ce9b5bff39724251bf64a508b052cf42db047.tar.gz |
* fpmake: Small fixes + first round of manifests
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11958 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r-- | packages/a52/fpmake.pp | 10 | ||||
-rw-r--r-- | packages/amunits/fpmake.pp | 8 | ||||
-rw-r--r-- | packages/aspell/fpmake.pp | 8 | ||||
-rw-r--r-- | packages/bfd/fpmake.pp | 7 | ||||
-rw-r--r-- | packages/bzip2/fpmake.pp | 10 | ||||
-rw-r--r-- | packages/cairo/fpmake.pp | 8 | ||||
-rw-r--r-- | packages/cdrom/fpmake.pp | 7 | ||||
-rw-r--r-- | packages/chm/fpmake.pp | 9 | ||||
-rw-r--r-- | packages/dbus/fpmake.pp | 8 | ||||
-rw-r--r-- | packages/dts/fpmake.pp | 8 | ||||
-rw-r--r-- | packages/fpmake.pp | 4 | ||||
-rw-r--r-- | packages/graph/fpmake.pp | 13 | ||||
-rw-r--r-- | packages/pthreads/fpmake.pp | 1 | ||||
-rw-r--r-- | packages/zlib/fpmake.pp | 4 |
14 files changed, 97 insertions, 8 deletions
diff --git a/packages/a52/fpmake.pp b/packages/a52/fpmake.pp index 30f54f8fdc..26596480d8 100644 --- a/packages/a52/fpmake.pp +++ b/packages/a52/fpmake.pp @@ -8,11 +8,19 @@ Var P : TPackage; T : TTarget; begin + + With Installer do begin {$endif ALLPACKAGES} - P:=AddPackage('a52'); + P.Author := 'Library: Michel Lespinasse and Aaron Holtzman, header: Ivo Steimann'; + P.License := 'Library: GPL2 or later, header: LGPL with modification'; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'A free library for decoding ATSC A/52 streams.'; + P.NeedLibC:= true; + {$ifdef ALLPACKAGES} P.Directory:='a52'; {$endif ALLPACKAGES} diff --git a/packages/amunits/fpmake.pp b/packages/amunits/fpmake.pp index 7fed76f39b..226a9c7e6e 100644 --- a/packages/amunits/fpmake.pp +++ b/packages/amunits/fpmake.pp @@ -17,6 +17,14 @@ begin P.Directory:='amunits'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + + P.Author := 'Nils Sjoholm'; + P.License := 'LGPL with modification'; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'A set of units for Amiga OS. 68k only?'; + P.NeedLibC:= false; + P.CPUs:=[m68k]; P.OSes:=[Amiga]; diff --git a/packages/aspell/fpmake.pp b/packages/aspell/fpmake.pp index 25acb77283..be36de81e7 100644 --- a/packages/aspell/fpmake.pp +++ b/packages/aspell/fpmake.pp @@ -17,6 +17,14 @@ begin P.Directory:='aspell'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + + P.Author := 'header:Aleš Katona, library: Kevin Atkinson'; + P.License := 'header: LGPL with modification, library: LGPL 2.0 or 2.1'; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'The New Aspell, spelling library'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); T:=P.Targets.AddUnit('aspell.pp'); diff --git a/packages/bfd/fpmake.pp b/packages/bfd/fpmake.pp index b40070fa79..7e45d74798 100644 --- a/packages/bfd/fpmake.pp +++ b/packages/bfd/fpmake.pp @@ -17,6 +17,13 @@ begin P.Directory:='bfd'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + P.Author := 'Library: Cygnus Support, header: by Uli Tessel'; + P.License := 'Library: GPL2 or later, header: LGPL with modification, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'Binary File Descriptor library.'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); T:=P.Targets.AddUnit('bfd.pas'); diff --git a/packages/bzip2/fpmake.pp b/packages/bzip2/fpmake.pp index bbef64ba3a..6ff195da19 100644 --- a/packages/bzip2/fpmake.pp +++ b/packages/bzip2/fpmake.pp @@ -17,6 +17,16 @@ begin P.Directory:='bzip2'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + + P.Version:='2.2.2-0'; + P.Author := 'Library: Julian R. Seward, header: Daniel Mantione'; + // 3 clause becaue "prominent notice" is not required. + P.License := 'Library: 3 clause BSD, header: 3 clause BSD, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'BZip2 decompression unit.'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); P.IncludePath.Add('src'); diff --git a/packages/cairo/fpmake.pp b/packages/cairo/fpmake.pp index a9dc0894ba..9d39c70970 100644 --- a/packages/cairo/fpmake.pp +++ b/packages/cairo/fpmake.pp @@ -11,12 +11,18 @@ begin With Installer do begin {$endif ALLPACKAGES} - P:=AddPackage('cairo'); {$ifdef ALLPACKAGES} P.Directory:='cairo'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + P.Author := 'Library: University of Southern California + Red Hat Inc., header: Luiz AmXrico Pereira CXmara'; + P.License := 'Library: MPL 1.1 + LGPL-2.1, header: LGPL with modification, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'a vector graphics library with display and print output'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); P.Dependencies.Add('x11',AllUnixOSes); diff --git a/packages/cdrom/fpmake.pp b/packages/cdrom/fpmake.pp index 188eed4ff4..f3607902c7 100644 --- a/packages/cdrom/fpmake.pp +++ b/packages/cdrom/fpmake.pp @@ -19,6 +19,13 @@ begin P.Version:='2.2.2-0'; P.OSes:=[Win32,Win64,Linux]; + P.Author := 'Michael van Canneyt'; + P.License := 'LGPL with modification'; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'Unit to read a CDROM disc TOC and get a list of CD Rom devices'; + P.NeedLibC:= False; + P.SourcePath.Add('src'); P.IncludePath.Add('src'); diff --git a/packages/chm/fpmake.pp b/packages/chm/fpmake.pp index 18a170a138..c7a0a11d06 100644 --- a/packages/chm/fpmake.pp +++ b/packages/chm/fpmake.pp @@ -19,8 +19,15 @@ begin {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + P.Author := 'Andrew Haines'; + P.License := 'LGPL with modification, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'Standalone CHM reader and writer library'; + P.NeedLibC:= false; + D:=P.Dependencies.Add('fcl-xml'); - D.Version:='2.2.2-0'; + D.Version:='2.2.2-0'; P.SourcePath.Add('src'); diff --git a/packages/dbus/fpmake.pp b/packages/dbus/fpmake.pp index a62a7e858a..6dd1738167 100644 --- a/packages/dbus/fpmake.pp +++ b/packages/dbus/fpmake.pp @@ -17,6 +17,14 @@ begin P.Directory:='dbus'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + + P.Author := 'Library: Red Hat, header: Unknown (but probably Sebastian Guenther)'; + P.License := 'Library: GPL2 or later, header: LGPL with modification, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := D-Bus message bus interface. (Pre 1.0?)'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); P.IncludePath.Add('src'); diff --git a/packages/dts/fpmake.pp b/packages/dts/fpmake.pp index 3f36267663..182b7da3fa 100644 --- a/packages/dts/fpmake.pp +++ b/packages/dts/fpmake.pp @@ -17,6 +17,14 @@ begin P.Directory:='dts'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; + + P.Author := 'Library: Gildas Bazin, header: Ivo Steinmann'; + P.License := 'Library: GPL2 or later, header: LGPL with modification, '; + P.ExternalURL := 'www.freepascal.org'; + P.Email := ''; + P.Description := 'a low-level interface to decoding audio frames encoded using DTS Coherent Acoustics'; + P.NeedLibC:= true; + P.SourcePath.Add('src'); T:=P.Targets.AddUnit('dts.pas'); diff --git a/packages/fpmake.pp b/packages/fpmake.pp index c9a15efcf9..421314d376 100644 --- a/packages/fpmake.pp +++ b/packages/fpmake.pp @@ -20,7 +20,7 @@ The include lines below are generated with the following command: *) {$include a52/fpmake.pp} -{$include amunits/fpmake.pp} + {$include aspell/fpmake.pp} {$include bfd/fpmake.pp} {$include bzip2/fpmake.pp} @@ -114,6 +114,8 @@ The include lines below are generated with the following command: {$include xforms/fpmake.pp} {$include zlib/fpmake.pp} +{$include amunits/fpmake.pp} + // Create fpc-all package PBuild:=AddPackage('fpc-all'); PBuild.Version:='2.2.2-0'; diff --git a/packages/graph/fpmake.pp b/packages/graph/fpmake.pp index bf256cd779..4934030367 100644 --- a/packages/graph/fpmake.pp +++ b/packages/graph/fpmake.pp @@ -18,9 +18,18 @@ begin {$endif ALLPACKAGES} P.Version:='2.2.2-0'; P.SourcePath.Add('src'); + P.SourcePath.Add('src/macosx',[darwin]); + P.SourcePath.Add('src/amiga',[amiga]); + P.SourcePath.Add('src/go32v2',[go32v2]); + P.SourcePath.Add('src/win32',[win32,win64]); + P.SourcePath.Add('src/unix',[freebsd,linux]); // Darwin has own. + P.IncludePath.Add('src/inc'); + P.IncludePath.Add('src/go32v2',[go32v2]); + P.IncludePath.Add('src/unix',[freebsd,linux]); // Darwin has own. + P.IncludePath.Add('src/go32v2',[go32v2]); - T:=P.Targets.AddUnit('ggigraph.pp'); + T:=P.Targets.AddUnit('ggigraph.pp',[linux,freebsd]); with T.Dependencies do begin AddInclude('graphh.inc'); @@ -43,7 +52,7 @@ begin AddInclude('modes.inc'); AddInclude('fills.inc'); AddInclude('gtext.inc'); - AddInclude('graph16.inc'); + AddInclude('graph16.inc',[freebsd,linux]); end; T:=P.Targets.AddUnit('sdlgraph.pp'); with T.Dependencies do diff --git a/packages/pthreads/fpmake.pp b/packages/pthreads/fpmake.pp index e888fffaef..1b8b8623a6 100644 --- a/packages/pthreads/fpmake.pp +++ b/packages/pthreads/fpmake.pp @@ -18,6 +18,7 @@ begin {$endif ALLPACKAGES} P.Version:='2.2.2-0'; P.SourcePath.Add('src'); + P.IncludePath.Add('src'); T:=P.Targets.AddUnit('pthreads.pp'); with T.Dependencies do diff --git a/packages/zlib/fpmake.pp b/packages/zlib/fpmake.pp index b3bf29ff03..34732aba46 100644 --- a/packages/zlib/fpmake.pp +++ b/packages/zlib/fpmake.pp @@ -12,9 +12,9 @@ begin begin {$endif ALLPACKAGES} - P:=AddPackage('ibase'); + P:=AddPackage('zlib'); {$ifdef ALLPACKAGES} - P.Directory:='ibase'; + P.Directory:='zlib'; {$endif ALLPACKAGES} P.Version:='2.2.2-0'; P.SourcePath.Add('src'); |