wok rev 18992

lazarus: fix race condition, tiny edits.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 18 11:22:29 2016 +0200 (2016-03-18)
parents bec033058a17
children 2830c76f55be
files lazarus/description.txt lazarus/receipt
line diff
     1.1 --- a/lazarus/description.txt	Fri Mar 18 10:58:08 2016 +0200
     1.2 +++ b/lazarus/description.txt	Fri Mar 18 11:22:29 2016 +0200
     1.3 @@ -1,1 +1,10 @@
     1.4 -Lazarus is a Delphi compatible cross-platform IDE for Free Pascal. It includes LCL which is more or less compatible with Delphi's VCL. Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K and more. Free Pascal is designed to be able to understand and compile Delphi syntax, which is OOP. Lazarus is the part of the missing puzzle that will allow you to develop Delphi like programs in all of the above platforms. Unlike Java which strives to be a write once run anywhere, Lazarus and Free Pascal strives for write once compile anywhere. Since the exact same compiler is available on all of the above platforms it means you don't need to do any recoding to produce identical products for different platforms.
     1.5 +Lazarus is a Delphi compatible cross-platform IDE for Free Pascal. It includes
     1.6 +LCL which is more or less compatible with Delphi's VCL. Free Pascal is a GPL'ed
     1.7 +compiler that runs on Linux, Win32, OS/2, 68K and more. Free Pascal is designed
     1.8 +to be able to understand and compile Delphi syntax, which is OOP. Lazarus is
     1.9 +the part of the missing puzzle that will allow you to develop Delphi like
    1.10 +programs in all of the above platforms. Unlike Java which strives to be a write
    1.11 +once run anywhere, Lazarus and Free Pascal strives for write once compile
    1.12 +anywhere. Since the exact same compiler is available on all of the above
    1.13 +platforms it means you don't need to do any recoding to produce identical
    1.14 +products for different platforms.
     2.1 --- a/lazarus/receipt	Fri Mar 18 10:58:08 2016 +0200
     2.2 +++ b/lazarus/receipt	Fri Mar 18 11:22:29 2016 +0200
     2.3 @@ -8,16 +8,16 @@
     2.4  LICENSE="GPL LGPL"
     2.5  WEB_SITE="http://www.lazarus-ide.org"
     2.6  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.7 -WGET_URL="https://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/Lazarus%201.6/$PACKAGE-$VERSION.tar.gz"
     2.8 +WGET_URL="$SF_MIRROR/lazarus/$TARBALL"
     2.9  TAGS="lazarus ide pascal"
    2.10  
    2.11  DEPENDS="fpc fpc-src gdb make"
    2.12 -BUILD_DEPENDS="gtk+-dev fpc fpc-src "
    2.13 +BUILD_DEPENDS="gtk+-dev fpc fpc-src"
    2.14  
    2.15  # Rules to configure and make the package.
    2.16  compile_rules()
    2.17  {
    2.18 -	cd $src && make clean bigide 
    2.19 +	make -j 1 clean bigide
    2.20  	#&& make INSTALL_PREFIX=/usr install
    2.21  
    2.22  }