blob: 31812e2a616933704e776d2da16fe0ad431c0e2f (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/gdisk-0.6.14.ebuild,v 1.1 2011/01/30 19:27:16 alexxy Exp $
EAPI="4"
inherit eutils toolchain-funcs
DESCRIPTION="gdisk - GPT partition table manipulator for Linux"
HOMEPAGE="http://www.rodsbooks.com/gdisk/"
SRC_URI="mirror://sourceforge/gptfdisk/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=""
src_compile() {
emake CXX="$(tc-getCXX)" || die "emake failed"
}
src_install() {
for x in gdisk sgdisk; do
dosbin "${x}" || die
doman "${x}.8" || die
dohtml "${x}.html" || die
done
dodoc README NEWS
}
|