blob: 5d5b4479cb8329ef122d0409c3a92a7f8d3e4cec (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ben Lutgens <lamer@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/e16keyedit-0.2.ebuild,v 1.1 2001/09/10 23:51:27 lamer Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Key binding editor for enlightenment 16"
SRC_URI="ftp://ftp.enlightenment.org/enlightenment/e16utils/${P}.tar.gz"
HOMEPAGE="http://www.enlightenment.org"
DEPEND="virtual/x11
>=x11-wm/enlightenment-0.16"
#RDEPEND=""
src_compile() {
emake || die
}
src_install () {
dobin e16keyedit
dodoc README COPYING ChangeLog AUTHORS
}
|