blob: e43c1b1d3628121569e4754ae1f2489da2cdfc3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Event Emulation for the uTouch Stack"
SRC_URI="http://launchpad.net/utouch-evemu/trunk/v${PV}/+download/utouch-evemu-${PV}.tar.gz"
HOMEPAGE="https://launchpad.net/utouch-evemu"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="GPL-3"
IUSE=""
src_compile() {
econf
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
}
|