blob: 8bb4b9b350f86c6c8114c5350cfca4bc62be8954 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gtkpbbuttons/gtkpbbuttons-0.6.1.ebuild,v 1.2 2003/11/26 16:32:57 lu_zero Exp $
DESCRIPTION="PPC-only program to monitor special Powerbook/iBook keys in Linux"
HOMEPAGE="http://www.cymes.de/members/joker/projects/pbbuttons/pbbuttons.html"
SRC_URI="http://www.cymes.de/members/joker/projects/pbbuttons/tar/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~ppc"
DEPEND=">=x11-libs/gtk+-2.0
>=media-libs/audiofile-0.1.9
>=sys-apps/pbbuttonsd-0.5.6"
src_compile() {
econf || die
make || die "compile failed"
}
src_install() {
make install DESTDIR=${D} || die
dodoc README COPYING
}
|