blob: 1b06b0e993a15830b4b3395a0f418d6ab9c58d2a (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/macosd/macosd-0.3.0.ebuild,v 1.1 2006/04/28 20:38:42 corsair Exp $
inherit eutils
DESCRIPTION="On-Screen-Display frontend for pbbuttonsd (only for PPC Laptops)."
HOMEPAGE="http://www.exactcode.de/oss/macosd/"
SRC_URI="http://dl.exactcode.de/oss/macosd/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc"
IUSE=""
DEPEND=">=app-laptop/pbbuttonsd-0.6.8
>=x11-libs/evas-0.9.9
>=x11-libs/xosd-2.2.5
|| (
(
x11-libs/libX11
x11-libs/libXext
)
virtual/x11
)"
RDEPEND="$DEPEND"
src_compile() {
# can't use econf -- this packages uses ROCK Linux style configure
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--with-xosd \
--with-evas || die "./configure failed"
emake || die "emake failed"
}
src_install() {
dodir /usr/share/macosd
dodir /usr/bin
einstall || die
dodoc README
}
pkg_postinst() {
einfo "Make sure that pbbuttons is running (add it to your default runlevel)"
einfo "and then add the following to your ~/.xinitrc to have macosd"
einfo "start whenever you launch X:"
einfo "macosd -t CleanOSX &"
einfo "To see a listing of available themes, run: macosd -l"
}
|