30 lines
720 B
Bash
30 lines
720 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/amtterm/amtterm-1.3.ebuild,v 1.1 2011/12/19 05:47:17 patrick Exp $
|
|
|
|
EAPI="2"
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A nice tool to manage amt-enabled machines"
|
|
HOMEPAGE="http://dl.bytesex.org/releases/amtterm/"
|
|
SRC_URI="http://dl.bytesex.org/releases/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-perl/SOAP-Lite"
|
|
|
|
src_prepare() {
|
|
sed -i -e 's|\(INSTALL_BINARY := \$(INSTALL)\) \$(STRIP)|\1|' mk/Variables.mk || die
|
|
}
|
|
|
|
src_compile() {
|
|
prefix="/usr" emake || die
|
|
}
|
|
|
|
src_install() {
|
|
prefix="/usr" emake DESTDIR=${D} install || die
|
|
}
|