blob: 22ff68d957554c6c4d560f314c0facef326ada68 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmacpi/wmacpi-1.34.ebuild,v 1.1 2003/02/23 21:39:37 vapier Exp $
DESCRIPTION="WMaker DockApp: ACPI status monitor for laptops"
SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz"
HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
DEPEND="virtual/x11"
src_compile() {
use apm && use acpi && eerror "APM and ACPI is in USE ... defaulting to ACPI"
use apm || use acpi || eerror "Neither APM or ACPI is in USE ... defaulting to ACPI"
if [ `use acpi` ] ; then
export CFLAGS="${CFLAGS} -DACPI"
else
export CFLAGS="${CFLAGS} -DAPM"
fi
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dobin wmacpi
dodoc AUTHORS ChangeLog README
}
|