blob: 0b389963f6f1a4e9b7b54b2ac5f7eef824d6ffe0 (
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
34
35
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/g15macro/g15macro-1.0.3.ebuild,v 1.1 2008/09/13 22:35:35 robbat2 Exp $
inherit subversion autotools
DESCRIPTION="Macro recording plugin to G15daemon"
HOMEPAGE="http://g15daemon.sourceforge.net/"
ESVN_REPO_URI="https://g15daemon.svn.sourceforge.net/svnroot/g15daemon/trunk/g15daemon-clients/g15macro/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=">=app-misc/g15daemon-1.9.0
dev-libs/libg15
dev-libs/libg15render
x11-libs/libX11
x11-proto/xextproto
x11-proto/xproto
x11-libs/libXtst"
RDEPEND="${DEPEND}
sys-libs/zlib"
src_install() {
eautoreconf
econf
emake DESTDIR="${D}" install || die "make install failed"
rm "${D}"/usr/share/doc/${P}/{COPYING,NEWS}
prepalldocs
}
|