catpoint-9999.ebuild - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
catpoint-9999.ebuild (579B)
---
1 # Copyright 1999-2025 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 EAPI=8
5
6 inherit git-r3
7
8 DESCRIPTION="curses presentation tool"
9 HOMEPAGE="http://bitreich.org"
10 EGIT_REPO_URI="git://bitreich.org/catpoint"
11
12 LICENSE="GPL-3"
13 SLOT="0"
14 KEYWORDS=""
15 IUSE="static"
16
17 DEPEND="sys-libs/ncurses:0"
18
19 src_prepare() {
20 default
21
22 sed 's/^CATPOINT_LDFLAGS = .*/& -ltinfow/' -i Makefile || die
23 }
24
25 src_compile() {
26 emake catpoint
27 }
28
29 src_install() {
30 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
31 dodoc README.md PATH-MAX-LIMIT.md TOOLS showoff/*.txt
32 }