blob: 55a1303cfbfd96034f4814238528684383a79a88 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/macosd/macosd-0.1.9.ebuild,v 1.3 2005/04/13 21:25:21 josejx 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.rocklinux-consulting.de/oss/macosd/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc"
IUSE=""
DEPEND="virtual/x11
>=app-laptop/pbbuttonsd-0.6.8
>=x11-libs/evas-0.9.9
>=x11-libs/xosd-2.2.5"
RDEPEND="$DEPEND"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-evas-pbbuttonsd.patch
}
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"
}
|