mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Signed-off-by: Adrian Schollmeyer <nex+b-g-o@nexadn.de> Part-of: https://codeberg.org/gentoo/gentoo/pulls/1207 Merges: https://codeberg.org/gentoo/gentoo/pulls/1207 Signed-off-by: Sam James <sam@gentoo.org>
23 lines
552 B
Bash
23 lines
552 B
Bash
# Copyright 2020-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="ZNC module which provides client specific buffers"
|
|
HOMEPAGE="https://github.com/CyberShadow/znc-clientbuffer"
|
|
SRC_URI="https://github.com/CyberShadow/znc-clientbuffer/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
|
|
DEPEND="net-irc/znc:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
cp -v "${FILESDIR}/CMakeLists-r1.txt" ./CMakeLists.txt || die
|
|
cmake_src_prepare
|
|
}
|