diff options
author | Sam James <sam@gentoo.org> | 2024-06-09 17:09:10 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-09 17:09:10 +0100 |
commit | 1f7f99372581b7762ae615604d1a92dcb98ebccc (patch) | |
tree | a7da3bd1e02829ff5a3b35ad5219052ad198d7d5 /dev-lang/lazarus | |
parent | dev-libs/libqt6pas: update variable order, tweak description (diff) | |
download | gentoo-1f7f99372581b7762ae615604d1a92dcb98ebccc.tar.gz gentoo-1f7f99372581b7762ae615604d1a92dcb98ebccc.tar.bz2 gentoo-1f7f99372581b7762ae615604d1a92dcb98ebccc.zip |
dev-lang/lazarus: fix variable order, fix indentation
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/lazarus')
-rw-r--r-- | dev-lang/lazarus/lazarus-3.0.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-lang/lazarus/lazarus-3.0.ebuild b/dev-lang/lazarus/lazarus-3.0.ebuild index f1c6a08ef987..e1e4a1f49b4a 100644 --- a/dev-lang/lazarus/lazarus-3.0.ebuild +++ b/dev-lang/lazarus/lazarus-3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,7 +11,8 @@ FPCVER="3.2.2" DESCRIPTION="feature rich visual programming environment emulating Delphi" HOMEPAGE="https://www.lazarus-ide.org/" -SRC_URI="mirror://sourceforge/lazarus/${P}-0.tar.gz" +SRC_URI="https://downloads.sourceforge.net/lazarus/${P}-0.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2 LGPL-2.1-with-linking-exception" SLOT="0/2.2" # Note: Slotting Lazarus needs slotting fpc, see DEPEND. @@ -36,18 +37,17 @@ DEPEND=" >=dev-lang/fpc-${FPCVER}[source] >=sys-devel/binutils-2.19.1-r1:= gui? ( - gtk2? ( x11-libs/gtk+:2 ) - gtk? ( x11-libs/gtk+:3 ) - qt5? ( dev-libs/libqt5pas:0/2.2 ) - qt6? ( dev-libs/libqt6pas:0/2.2 ) -)" + gtk2? ( x11-libs/gtk+:2 ) + gtk? ( x11-libs/gtk+:3 ) + qt5? ( dev-libs/libqt5pas:0/2.2 ) + qt6? ( dev-libs/libqt6pas:0/2.2 ) + ) +" BDEPEND="net-misc/rsync" RDEPEND="${DEPEND}" RESTRICT="strip" #269221 -S="${WORKDIR}/${PN}" - PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) |