diff options
| author | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-02-04 20:43:54 +0000 |
|---|---|---|
| committer | marco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-02-04 20:43:54 +0000 |
| commit | 27e052d2e5a20fd2c56a07969bc5ce08acc596d2 (patch) | |
| tree | e94a2b00e32647f02b7af56d10ca52cd64c138fa | |
| parent | dc45a93c0324a1dded12e83c4a95d04bc59ba007 (diff) | |
| download | fpc-27e052d2e5a20fd2c56a07969bc5ce08acc596d2.tar.gz | |
* first batch
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@10209 3ad0048d-3df7-0310-abae-a5850022a9f2
| -rw-r--r-- | packages/cairo/fpmake.pp | 35 | ||||
| -rw-r--r-- | packages/graph/fpmake.pp | 68 | ||||
| -rw-r--r-- | packages/hermes/fpmake.pp | 62 | ||||
| -rw-r--r-- | packages/openal/fpmake.pp | 34 | ||||
| -rw-r--r-- | packages/ptc/fpmake.pp | 95 |
5 files changed, 294 insertions, 0 deletions
diff --git a/packages/cairo/fpmake.pp b/packages/cairo/fpmake.pp new file mode 100644 index 0000000000..2929aad264 --- /dev/null +++ b/packages/cairo/fpmake.pp @@ -0,0 +1,35 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('cairo'); +{$ifdef ALLPACKAGES} + P.Directory:='cairo'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + +T:=P.Targets.AddUnit('cairo.pp'); + with T.Dependencies do + begin + AddUnit('xlib'); + AddUnit('xrender'); + AddUnit('freetypeh'); + end; + + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} diff --git a/packages/graph/fpmake.pp b/packages/graph/fpmake.pp new file mode 100644 index 0000000000..95221ba165 --- /dev/null +++ b/packages/graph/fpmake.pp @@ -0,0 +1,68 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('graph'); +{$ifdef ALLPACKAGES} + P.Directory:='graph'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + + T:=P.Targets.AddUnit('ggigraph.pp'); + with T.Dependencies do + begin + AddInclude('graphh.inc'); + AddInclude('graph.inc'); + AddInclude('fontdata.inc'); + AddInclude('clip.inc'); + AddInclude('palette.inc'); + AddInclude('modes.inc'); + AddInclude('fills.inc'); + AddInclude('gtext.inc'); + end; + T:=P.Targets.AddUnit('graph.pp'); + with T.Dependencies do + begin + AddInclude('graphh.inc'); + AddInclude('graph.inc'); + AddInclude('fontdata.inc'); + AddInclude('clip.inc'); + AddInclude('palette.inc'); + AddInclude('modes.inc'); + AddInclude('fills.inc'); + AddInclude('gtext.inc'); + AddInclude('graph16.inc'); + end; + T:=P.Targets.AddUnit('sdlgraph.pp'); + with T.Dependencies do + begin + AddInclude('graphh.inc'); + AddInclude('graph.inc'); + AddInclude('fontdata.inc'); + AddInclude('clip.inc'); + AddInclude('palette.inc'); + AddInclude('modes.inc'); + AddInclude('fills.inc'); + AddInclude('gtext.inc'); + AddUnit('sdl'); + AddUnit('sdlutils'); + AddUnit('logger'); + end; + + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} diff --git a/packages/hermes/fpmake.pp b/packages/hermes/fpmake.pp new file mode 100644 index 0000000000..eb098e7468 --- /dev/null +++ b/packages/hermes/fpmake.pp @@ -0,0 +1,62 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('hermes'); +{$ifdef ALLPACKAGES} + P.Directory:='hermes'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + +T:=P.Targets.AddUnit('hermes.pp'); + with T.Dependencies do + begin + AddInclude('hermdef.inc'); + AddInclude('hermconf.inc'); + AddInclude('malloc.inc'); + AddInclude('debug.inc'); + AddInclude('dither.inc'); + AddInclude('headp.inc'); + AddInclude('p_16.inc'); + AddInclude('p_24.inc'); + AddInclude('p_32.inc'); + AddInclude('p_clr.inc'); + AddInclude('p_cnv.inc'); + AddInclude('p_cpy.inc'); + AddInclude('p_g.inc'); + AddInclude('p_ga.inc'); + AddInclude('p_gac.inc'); + AddInclude('p_gca.inc'); + AddInclude('p_gcc.inc'); + AddInclude('p_i8.inc'); + AddInclude('p_muhmu.inc'); + AddInclude('d_32.inc'); + AddInclude('headi386.inc'); + AddInclude('headmmx.inc'); + AddInclude('factconv.inc'); + AddInclude('list.inc'); + AddInclude('utility.inc'); + AddInclude('format.inc'); + AddInclude('palette.inc'); + AddInclude('convert.inc'); + AddInclude('clear.inc'); + AddInclude('factory.inc'); + end; + + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} diff --git a/packages/openal/fpmake.pp b/packages/openal/fpmake.pp new file mode 100644 index 0000000000..3d5a9205d6 --- /dev/null +++ b/packages/openal/fpmake.pp @@ -0,0 +1,34 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('openal'); +{$ifdef ALLPACKAGES} + P.Directory:='openal'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + + T:=P.Targets.AddUnit('openal.pas'); + with T.Dependencies do + begin + AddInclude('alh.inc'); + AddInclude('alch.inc'); + AddInclude('alexth.inc'); + end; + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} diff --git a/packages/ptc/fpmake.pp b/packages/ptc/fpmake.pp new file mode 100644 index 0000000000..1c1df9116d --- /dev/null +++ b/packages/ptc/fpmake.pp @@ -0,0 +1,95 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('ptc'); +{$ifdef ALLPACKAGES} + P.Directory:='ptc'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + +T:=P.Targets.AddUnit('ptc.pp'); + with T.Dependencies do + begin + AddInclude('extensions.inc'); + AddInclude('coreinterface.inc'); + AddInclude('aread.inc'); + AddInclude('colord.inc'); + AddInclude('formatd.inc'); + AddInclude('eventd.inc'); + AddInclude('keyeventd.inc'); + AddInclude('mouseeventd.inc'); + AddInclude('moded.inc'); + AddInclude('paletted.inc'); + AddInclude('cleard.inc'); + AddInclude('copyd.inc'); + AddInclude('clipperd.inc'); + AddInclude('basesurfaced.inc'); + AddInclude('surfaced.inc'); + AddInclude('baseconsoled.inc'); + AddInclude('consoled.inc'); + AddInclude('errord.inc'); + AddInclude('timerd.inc'); + AddInclude('log.inc'); + AddInclude('coreimplementation.inc'); + AddInclude('errori.inc'); + AddInclude('areai.inc'); + AddInclude('colori.inc'); + AddInclude('formati.inc'); + AddInclude('eventi.inc'); + AddInclude('keyeventi.inc'); + AddInclude('mouseeventi.inc'); + AddInclude('modei.inc'); + AddInclude('palettei.inc'); + AddInclude('cleari.inc'); + AddInclude('copyi.inc'); + AddInclude('clipperi.inc'); + AddInclude('basesurfacei.inc'); + AddInclude('baseconsolei.inc'); + AddInclude('surfacei.inc'); + AddInclude('timeri.inc'); + AddInclude('includes.inc'); + AddInclude('x11modesd.inc'); + AddInclude('x11imaged.inc'); + AddInclude('x11displayd.inc'); + AddInclude('x11windowdisplayd.inc'); + AddInclude('x11dga1displayd.inc'); + AddInclude('x11dga2displayd.inc'); + AddInclude('x11consoled.inc'); + AddInclude('check.inc'); + AddInclude('x11modesi.inc'); + AddInclude('x11imagei.inc'); + AddInclude('x11displayi.inc'); + AddInclude('xunikey.inc'); + AddInclude('x11windowdisplayi.inc'); + AddInclude('x11dga1displayi.inc'); + AddInclude('x11dga2displayi.inc'); + AddInclude('x11consolei.inc'); + AddInclude('consolei.inc'); + AddUnit('hermes'); + AddUnit('xlib'); + AddUnit('xatom'); + AddUnit('keysym'); + AddUnit('xrandr'); + AddUnit('xf86vmode'); + AddUnit('xf86dga'); + AddUnit('xshm'); + end; + + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} |
