| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 7 | ~amd64 ~x86 | 0 |
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit savedconfig toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.suckless.org/${PN}"
else
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Simple generic tabbed fronted to xembed aware applications"
HOMEPAGE="https://tools.suckless.org/tabbed/"
LICENSE="MIT"
SLOT="0"
RDEPEND="
media-libs/fontconfig
x11-libs/libX11
x11-libs/libXft
"
DEPEND="
x11-base/xorg-proto
${RDEPEND}
"
src_prepare() {
default
sed Makefile \
-e 's|/usr/local|/usr|g' \
-e 's|/usr/X11R6|/usr|g' \
-e "s|^DOCPREFIX.*|DOCPREFIX = \${PREFIX}/share/doc/${P}|" \
-e 's|{|(|g;s|}|)|g' \
-e '/^[[:space:]]*@echo/d' \
-e 's|^ @| |g' \
-i || die
restore_config config.h
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
save_config config.h
}
x11-base/xorg-proto media-libs/fontconfig x11-libs/libX11 x11-libs/libXft
media-libs/fontconfig x11-libs/libX11 x11-libs/libXft