| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 2.3 | 8 | ~amd64 ~arm64 ~ppc64 | 0 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Displays a simple digital clock on the terminal"
HOMEPAGE="https://github.com/xorg62/tty-clock"
SRC_URI="https://github.com/xorg62/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
DEPEND="sys-libs/ncurses:=[unicode(+)]"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_compile() {
# makefile does something with ncurses-config and calls old version
# let's just build it manually
$(tc-getCC) -Wall ${CFLAGS} ${PN//-/}.c \
$($(tc-getPKG_CONFIG) --libs ncursesw) \
-o ${PN} ${LDFLAGS} || die "Failed to build ${PN}"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
einstalldocs
}
sys-libs/ncurses:=[unicode(+)]
sys-libs/ncurses:=[unicode(+)]
virtual/pkgconfig
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | tty-clock-2.3.tar.gz | 7764 bytes | https://github.com/xorg62/tty-clock/archive/refs/tags/v2.3.tar.gz |