blob: 3e24a2870a3d89b8e29ad8772945095e055bda62 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.5.ebuild,v 1.1 2005/04/01 13:11:52 josejx Exp $
inherit eutils
DESCRIPTION="program to monitor special Powerbook/iBook keys"
HOMEPAGE="http://pbbuttons.sf.net"
SRC_URI="mirror://sourceforge/pbbuttons/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~ppc"
IUSE=""
DEPEND=">=x11-libs/gtk+-2.0
>=media-libs/audiofile-0.1.9
>=app-laptop/pbbuttonsd-0.6.8"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/ipc-fix.patch
}
src_compile() {
econf || die
make || die "compile failed"
}
src_install() {
make install DESTDIR=${D} || die
dodoc README
}
|