blob: 5beaf9edeacf756499008df083e3f23c1511fecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils vcs-snapshot
DESCRIPTION="Use external locker as X screen saver"
HOMEPAGE="https://bitbucket.org/raymonad/xss-lock"
SRC_URI="https://bitbucket.org/raymonad/xss-lock/get/1e158fb20108058dbd62bd51d8e8c003c0a48717.tar.bz2 -> ${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="+man"
RDEPEND="dev-libs/glib:2
x11-libs/libxcb
x11-libs/xcb-util"
DEPEND="${RDEPEND}
man? ( dev-python/docutils )"
src_install() {
cmake-utils_src_install
dodoc -r "${ED%/}/usr/share/doc/${PN}/."
rm -r "${ED%/}/usr/share/doc/${PN}" || die
}
|