blob: b3ef97b8fd8641aa526e2b3d70f8f2205e8e2983 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/powerprefs/powerprefs-0.4.4.ebuild,v 1.1 2004/04/11 14:47:07 pylon Exp $
S=${WORKDIR}/${P}
DESCRIPTION="powerprefs is a program to interface with pbbuttonsd (Powerbook/iBook) keys in Linux"
SRC_URI="http://www.cymes.de/members/joker/projects/pbbuttons/tar/${P}.tar.gz"
HOMEPAGE="http://www.cymes.de/members/joker/projects/pbbuttons/pbbuttons.html"
KEYWORDS="~ppc"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=x11-libs/gtk+-2.0
>=app-laptop/pbbuttonsd-0.5"
src_compile() {
./configure --prefix=/usr || die "sorry, powerprefs configure failed"
make || die "sorry, powerprefs compile failed"
}
src_install() {
make \
prefix=${D}/usr \
mandir={D}/usr/share/man \
infodir={D}/usr/share/info \
install || die "sorry, failed to install powerprefs"
dodoc README COPYING
}
|