Add qt5 core dependency, remove local meson args

This commit is contained in:
Ben 2023-02-28 14:05:39 +01:00
parent f3e4c506de
commit cf96a49b12
Signed by untrusted user: ben
GPG key ID: 1353F41CF1CFF2D3

View file

@ -7,19 +7,17 @@ inherit meson
DESCRIPTION="Safe, synchronous and asynchronous handling of posix signals for Qt apps/libs" DESCRIPTION="Safe, synchronous and asynchronous handling of posix signals for Qt apps/libs"
HOMEPAGE="https://github.com/textshell/posixsignalmanager" HOMEPAGE="https://github.com/textshell/posixsignalmanager"
SRC_URI="https://github.com/textshell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="https://github.com/textshell/posixsignalmanager/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Boost-1.0" LICENSE="Boost-1.0"
SLOT="0" SLOT="0"
KEYWORDS="~amd64 ~x86" KEYWORDS="~amd64 ~x86"
IUSE=""
BUILD_TARGETS="all" DEPEND="=dev-qt/qtcore-5*"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() { src_configure() {
local emesonargs=(
$(meson_use qt5)
$(meson_feature threads)
$(meson_use bindist official_branding)
)
meson_src_configure meson_src_configure
} }