# HG changeset patch # User Aleksej Bobylev # Date 1458292949 -7200 # Node ID f279f23b1966957bdd0a12ae03efc7063e8f54f8 # Parent bec033058a17486e2b8026cdc7adf18a0727df30 lazarus: fix race condition, tiny edits. diff -r bec033058a17 -r f279f23b1966 lazarus/description.txt --- a/lazarus/description.txt Fri Mar 18 10:58:08 2016 +0200 +++ b/lazarus/description.txt Fri Mar 18 11:22:29 2016 +0200 @@ -1,1 +1,10 @@ -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. +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. diff -r bec033058a17 -r f279f23b1966 lazarus/receipt --- a/lazarus/receipt Fri Mar 18 10:58:08 2016 +0200 +++ b/lazarus/receipt Fri Mar 18 11:22:29 2016 +0200 @@ -8,16 +8,16 @@ LICENSE="GPL LGPL" WEB_SITE="http://www.lazarus-ide.org" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://sourceforge.net/projects/lazarus/files/Lazarus%20Zip%20_%20GZip/Lazarus%201.6/$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/lazarus/$TARBALL" TAGS="lazarus ide pascal" DEPENDS="fpc fpc-src gdb make" -BUILD_DEPENDS="gtk+-dev fpc fpc-src " +BUILD_DEPENDS="gtk+-dev fpc fpc-src" # Rules to configure and make the package. compile_rules() { - cd $src && make clean bigide + make -j 1 clean bigide #&& make INSTALL_PREFIX=/usr install }