You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/xssstate/xssstate-1.1.ebuild

35 lines
654 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A simple tool to retrieve the X screensaver state"
HOMEPAGE="https://tools.suckless.org/x/xssstate"
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
x11-libs/libX11
x11-libs/libXScrnSaver
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.20130103-gentoo.patch
tc-export CC
}
src_install() {
emake DESTDIR="${D}" PREFIX='/usr' install
dodoc README xsidle.sh
doman ${PN}.1
}