mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00

------------------------------------------------------------------------ r48814 | pierre | 2021-02-26 17:15:30 +0000 (Fri, 26 Feb 2021) | 1 line Do not add libgcc directory to library directories with -Fl option if -Xd option is used ------------------------------------------------------------------------ ------------------------------------------------------------------------ r42843 | pierre | 2019-08-26 21:41:41 +0000 (Mon, 26 Aug 2019) | 1 line Partial update for go32v2 and sources ------------------------------------------------------------------------ --- Merging r44112 into '.': G installer/install.dat --- Recording mergeinfo for merge of r44112 into '.': G . ------------------------------------------------------------------------ r48836 | hajny | 2021-02-28 02:08:17 +0000 (Sun, 28 Feb 2021) | 1 line * package tplylib added, corrections for more than 31 items on a tab ------------------------------------------------------------------------ --- Merging r48836 into '.': G installer/install.dat --- Recording mergeinfo for merge of r48836 into '.': G . ------------------------------------------------------------------------ r49035 | pierre | 2021-03-22 23:26:26 +0000 (Mon, 22 Mar 2021) | 1 line Try to fix short package name issues in install.dat and add missing go32v2 packages ------------------------------------------------------------------------ --- Merging r49035 into '.': G installer/install.dat --- Recording mergeinfo for merge of r49035 into '.': G . git-svn-id: branches/fixes_3_2@49041 -
114 lines
2.8 KiB
ObjectPascal
114 lines
2.8 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$define allpackages}
|
|
{$define no_parent}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
{$IFDEF MORPHOS}
|
|
{$DEFINE NO_UNIT_PROCESS}
|
|
{$DEFINE NO_THREADING}
|
|
{$ENDIF}
|
|
|
|
{$IFDEF OS2}
|
|
{$DEFINE NO_UNIT_PROCESS}
|
|
{$ENDIF OS2}
|
|
|
|
{$IFDEF GO32V2}
|
|
{$DEFINE NO_UNIT_PROCESS}
|
|
{$ENDIF GO32V2}
|
|
|
|
{$ifndef NO_UNIT_PROCESS}
|
|
{$define HAS_UNIT_PROCESS}
|
|
{$endif NO_UNIT_PROCESS}
|
|
|
|
uses
|
|
fpmkunit,
|
|
{$IFDEF HAS_UNIT_PROCESS}
|
|
process,
|
|
{$ENDIF HAS_UNIT_PROCESS}
|
|
sysutils;
|
|
|
|
{$endif ALLPACKAGES}
|
|
|
|
(*
|
|
|
|
The include files are generated with the following commands:
|
|
|
|
rm fpmake_proc.inc fpmake_add.inc ; /bin/ls -1 */fpmake.pp| while read file; do cleanedname=`dirname $file | sed -e 's+-+_+g'` ; if ! `grep -i "^procedure add_$cleanedname" $file >/dev/null` ; then printf 'procedure add_%s(const ADirectory: string);\nbegin\n with Installer do\n{$include %s}\nend;\n\n' $cleanedname $file >> fpmake_proc.inc; else printf '{$include %s}\n\n' $file >> fpmake_proc.inc; fi; echo " add_$cleanedname(ADirectory+IncludeTrailingPathDelimiter('$cleanedname'));" >> fpmake_add.inc; done
|
|
|
|
*)
|
|
|
|
{$include fpmake_proc.inc}
|
|
|
|
procedure add_utils(const ADirectory: string);
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
|
|
begin
|
|
With Installer do
|
|
begin
|
|
P:=AddPackage('utils');
|
|
P.ShortName := 'tils';
|
|
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
|
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
|
if Defaults.CPU=jvm then
|
|
P.OSes := P.OSes - [java,android];
|
|
|
|
P.Author := '<various>';
|
|
P.License := 'LGPL with modification';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'Various Free Pascal utilities.';
|
|
P.NeedLibC:= false;
|
|
{$ifndef NO_PARENT}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
|
|
P.Dependencies.Add('fcl-base');
|
|
P.Dependencies.Add('paszlib');
|
|
P.Dependencies.Add('hash');
|
|
P.Dependencies.Add('univint',[darwin,iphonesim,ios]);
|
|
P.Dependencies.Add('fcl-json');
|
|
|
|
P.Dependencies.Add('rtl-extra');
|
|
P.Dependencies.Add('rtl-objpas');
|
|
|
|
P.Version:='3.2.1';
|
|
|
|
T:=P.Targets.AddProgram('ptop.pp');
|
|
T.Dependencies.AddUnit('ptopu');
|
|
T.ResourceStrings:=true;
|
|
|
|
P.Targets.AddProgram('ppdep.pp');
|
|
T:=P.Targets.AddProgram('rstconv.pp');
|
|
T.ResourceStrings:=true;
|
|
P.Targets.AddProgram('data2inc.pp');
|
|
P.Targets.AddProgram('delp.pp');
|
|
P.Targets.AddProgram('bin2obj.pp');
|
|
P.Targets.AddProgram('mkinsadd.pp');
|
|
P.Targets.AddProgram('postw32.pp');
|
|
P.Targets.AddProgram('rmcvsdir.pp');
|
|
P.Targets.AddProgram('grab_vcsa.pp',[linux]);
|
|
T:=P.Targets.AddProgram('fpcsubst.pp');
|
|
T.Dependencies.AddUnit('usubst');
|
|
T.ResourceStrings:=true;
|
|
P.Targets.AddUnit('usubst.pp').install:=false;
|
|
P.Targets.AddUnit('ptopu.pp').install:=false;
|
|
end;
|
|
|
|
{$include fpmake_add.inc}
|
|
end;
|
|
|
|
{$ifdef NO_PARENT}
|
|
begin
|
|
add_utils('');
|
|
|
|
Installer.Run;
|
|
end.
|
|
{$endif NO_PARENT}
|
|
|
|
|
|
|