blob: 7757b54676f9073210d9f0a83db5dd5d4f577fd8 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/suspend/suspend-0.8.ebuild,v 1.2 2008/01/01 14:23:44 alonbl Exp $
DESCRIPTION="Userspace Software Suspend and S2Ram"
HOMEPAGE="http://suspend.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="fbsplash"
X86_RDEPEND="dev-libs/libx86"
X86_DEPEND="
${X86_RDEPEND}
>=sys-apps/pciutils-2.2.4"
RDEPEND=">=dev-libs/lzo-2
fbsplash? ( >=media-gfx/splashutils-1.5.2 )
x86? ( ${X86_RDEPEND} )
amd64? ( ${X86_RDEPEND} )"
DEPEND="${DEPEND}
x86? ( ${X86_DEPEND} )
amd64? ( ${X86_DEPEND} )
dev-util/pkgconfig"
src_compile() {
econf \
--docdir="/usr/share/doc/${PF}" \
--enable-compress \
$(use_enable fbsplash) \
|| die
emake || die
}
src_install() {
emake install DESTDIR="${D}" || die
prepalldocs
}
pkg_postinst() {
elog "In order to make this package work with genkernel see:"
elog "http://bugs.gentoo.org/show_bug.cgi?id=156445"
}
|