dev-util/redpanda-cpp: add 3.1

This commit is contained in:
Dawn Xu 2024-09-29 10:21:43 +08:00 committed by peeweep
parent 7e133494bf
commit f38f6a30fa
2 changed files with 33 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST redpanda-cpp-2.26.tar.gz 4663344 BLAKE2B bfe71d2e93b3432a6981e3ea6121498c56f3dde4fc9442900eadb76dad35e71c63d51b4f66c9df156389b2dc1c3813b1265cd959a3af0020183d9f6677f3dae5 SHA512 d1b07ae55b7143d9612a18de50e46cb621e0f8ef1093f6bc4b6d0f0b951dcf86a287d907c58b61ff6243cc252609bf9a36f855ee84e17448067e3bceeb0f2163
DIST redpanda-cpp-3.1.tar.gz 4777370 BLAKE2B 082996ece26cddce9bef37aa6aaaf2734796724d99811d7aff96152f186d73fb5f9cd566e59897f9c23c2be48c58ff8551d731faf62309d35a1e71b6b9fc3529 SHA512 4a4dfc8d80eca4cf17e20a3e06e2d6593a4a08db875947cadb224664788118af70c5e6a0c4f7a407c4732caf23848beaffbc9505223589c0305fd85cdfd09e5c

View File

@ -0,0 +1,32 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg qmake-utils
MY_PV=v${PV}
DESCRIPTION="A lightweight yet powerful C/C++/GNU Assembly IDE."
HOMEPAGE="https://royqh.net/redpandacpp"
SRC_URI="https://github.com/royqh1979/RedPanda-CPP/archive/refs/tags/${MY_PV}.tar.gz -> redpanda-cpp-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
dev-qt/qtnetwork:5
dev-qt/qtxml:5
dev-qt/qtprintsupport:5
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/RedPanda-CPP-${PV}"
src_configure(){
OPTIONS="PREFIX=/usr LIBEXECDIR=/usr/libexec XDG_ADAPTIVE_ICON=ON"
eqmake5 ${OPTIONS} Red_Panda_CPP.pro
}
src_install(){
emake INSTALL_ROOT="${ED}" install
}