blob: aad529f2a77e427b22a6d23fed43d6f068fb6211 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/amtterm/amtterm-1.2.ebuild,v 1.1 2009/09/01 11:54:52 patrick Exp $
EAPI="2"
inherit eutils
SLOT="0"
IUSE=""
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
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"
src_compile() {
prefix="/usr" emake
}
src_install() {
prefix="/usr" emake DESTDIR=${D} install
}
|