# 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" }