blob: 6924fb26d6268455726907d19309e03046056606 (
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
29
30
31
32
33
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/simpleswitcher/simpleswitcher-9999.ebuild,v 1.2 2012/09/02 10:42:48 xmw Exp $
EAPI=4
inherit git-2 toolchain-funcs
DESCRIPTION="lightweight EWMH window switcher with features and looks of dmenu"
HOMEPAGE="https://github.com/seanpringle/simpleswitcher"
EGIT_REPO_URI="https://github.com/seanpringle/simpleswitcher"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXft
x11-libs/libXinerama"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_compile() {
tc-export CC
default
}
src_install() {
default
doman ${PN}.1
dodoc README.md
}
|