summaryrefslogtreecommitdiff
blob: b7b40ea474ab8ff4bfbeadf6af179c76da49f9d7 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

DESCRIPTION="Move the X mouse cursor to a given point on a given screen"
HOMEPAGE="http://sampo.kapsi.fi/switchscreen/"
SRC_URI="http://sampo.kapsi.fi/switchscreen/${P}.tar.gz"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="x11-base/xorg-server"
DEPEND=${RDEPEND}

src_prepare() {
	sed -i -e '/CC=/d' -e '/CFLAGS=/d' -e '/LDFLAGS=/d' Makefile
	sed -i -e 's/gcc/${CC} ${CFLAGS}/g' Makefile
}

src_install() {
	dobin switchscreen togglescreen.sh
	dodoc README
}