blob: 5ee5e2f5cdf6817aebf9103a8d63beb509ecbe12 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild,v 1.3 2008/06/28 06:36:16 maekke Exp $
inherit eutils toolchain-funcs
DESCRIPTION="WMaker DockApp: ACPI status monitor for laptops"
HOMEPAGE="http://himi.org/wmacpi/"
MY_PV="${PV/_}"
MY_P="${PN}-${MY_PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="http://himi.org/wmacpi/download/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 -ppc -sparc x86"
IUSE=""
DEPEND="x11-libs/libdockapp
x11-libs/libX11"
src_unpack() {
unpack ${A}
cd "${S}"
# acpi and acpi.1 conflict with sys-power/acpi - Bug #60685
mv acpi.c acpi-batt-status.c
mv acpi.1 acpi-batt-status.1
epatch "${FILESDIR}"/${P}-makefile.patch
}
src_compile() {
emake CC="$(tc-getCC)" OPT="${CFLAGS}" || die "compile failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog README TODO
}
pkg_postinst() {
elog "The command-line utility are corresponding manpage are installed"
elog "as acpi-batt-status to prevent collisions with sys-power/acpi"
}
|