net-irc/catgirl: add 2.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2021-12-13 11:17:38 +05:00
parent 58e5941191
commit 0802ee3486
2 changed files with 44 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST catgirl-1.9a.tar.gz 62635 BLAKE2B 9b1d7fb9eb7b8bd5703a2d9ebf354efbc229a85dcca95a3351a88201f426e20a022a8a19e654b9db85d5697b3043a79083d31f1c9d1d9c253f4015a1d81450c0 SHA512 2eed6cc54d19a090345aa719adc256d6c8d4f26a81c7a399c20d3b4cbce336bc94b15c1c4b92a54d7cf8b16eda09e589c931292627234b000e567b2d22742420
DIST catgirl-2.0.tar.gz 63201 BLAKE2B eaa28ba283085b844b7c7e0da11bafe6055ca09ca96955b32c7322ec5308941b9b3cd7fc6d24d853b28d84e63d36f4bc438c5eea76279f0252ac9d7be7014c44 SHA512 bb0b07596edfe9136b38340d2a254a27dc9335225629e23ae05ebb0cd91243d6436d2802e6a914e61f6db1a6d37eec324aff36c8f61c53b987fd82b903e8d836

View File

@@ -0,0 +1,43 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit readme.gentoo-r1 toolchain-funcs
DESCRIPTION="TLS-only terminal IRC client"
HOMEPAGE="https://git.causal.agency/catgirl/about/"
SRC_URI="https://git.causal.agency/${PN}/snapshot/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-libs/libretls:=
sys-libs/ncurses:=
"
BDEPEND="virtual/pkgconfig"
RDEPEND="${DEPEND}"
DOCS=( README.7 scripts/chat.tmux.conf )
src_configure() {
./configure \
--prefix="${EPREFIX}"/usr \
--mandir="${EPREFIX}"/usr/share/man || die
tc-export CC
}
src_compile() {
emake all
}
src_install() {
default
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}