mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
40 lines
893 B
Bash
40 lines
893 B
Bash
# Copyright 2020-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Get PV from lcl/interfaces/qt6/cbindings/Qt6Pas.pro
|
|
inherit qmake-utils
|
|
|
|
LAZARUS_PV=3.0
|
|
|
|
# We want to keep the version here in correspondence with dev-lang/lazarus
|
|
# so dev-lang/lazarus can use the bindings.
|
|
MY_P="lazarus-${LAZARUS_PV}-0"
|
|
|
|
DESCRIPTION="Free Pascal Qt6 bindings library updated by lazarus IDE"
|
|
HOMEPAGE="https://gitlab.com/freepascal.org/lazarus/lazarus"
|
|
SRC_URI="https://downloads.sourceforge.net/lazarus/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/lazarus/lcl/interfaces/qt6/cbindings"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0/${LAZARUS_PV}"
|
|
KEYWORDS="amd64 ~x86"
|
|
|
|
DEPEND="
|
|
dev-qt/qtbase:6
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-1.0.0-remove-wrapper-of-undefined-method.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
eqmake6 Qt6Pas.pro
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|