You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
583 B
31 lines
583 B
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=2
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="utility for preparing a hibernation partition for APM Suspend-To-Disk"
|
|
HOMEPAGE="http://www.procyon.com/~pda/lphdisk/"
|
|
SRC_URI="http://www.procyon.com/~pda/lphdisk/${P}.tar.bz2"
|
|
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
KEYWORDS="x86"
|
|
IUSE=""
|
|
|
|
DEPEND="sys-libs/lrmi"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gentoo.patch
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake || die
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
}
|