diff options
Diffstat (limited to 'dev-libs/libqt6pas/libqt6pas-1.0.0-r1.ebuild')
-rw-r--r-- | dev-libs/libqt6pas/libqt6pas-1.0.0-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/libqt6pas/libqt6pas-1.0.0-r1.ebuild b/dev-libs/libqt6pas/libqt6pas-1.0.0-r1.ebuild new file mode 100644 index 000000000000..7f46fe8537ee --- /dev/null +++ b/dev-libs/libqt6pas/libqt6pas-1.0.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +MY_P="lazarus-3.0-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 -> ${P}.tar.gz" +S="${WORKDIR}/lazarus/lcl/interfaces/qt6/cbindings" + +LICENSE="LGPL-3" +SLOT="0/3.0" +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 +} |