commit: 33a251e2414eec93a3738a583f83183a7d03a8b4 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc> AuthorDate: Thu Mar 11 04:17:21 2021 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net> CommitDate: Thu Mar 11 04:37:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33a251e2
gui-libs/libcprime: add live ebuild moves to using cmake Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc> gui-libs/libcprime/libcprime-9999.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gui-libs/libcprime/libcprime-9999.ebuild b/gui-libs/libcprime/libcprime-9999.ebuild new file mode 100644 index 00000000..46af395d --- /dev/null +++ b/gui-libs/libcprime/libcprime-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Library for managing settings of CoreApps" +HOMEPAGE="https://gitlab.com/cubocore/libcprime" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/libcprime.git" +else + SRC_URI="https://gitlab.com/cubocore/libcprime/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +QTMIN="5.15.1" + +DEPEND=" + x11-libs/libnotify + >=dev-qt/qtcore-${QTMIN}:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 +" +RDEPEND=" + ${DEPEND} +"
