summaryrefslogtreecommitdiff
blob: c7a95fa464d38fc8bd3c84e5c6e57de46120f399 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/gdisk-0.6.8.ebuild,v 1.1 2010/06/07 12:59:09 alexxy Exp $

EAPI="3"

inherit eutils

DESCRIPTION="gdisk - GPT partition table manipulator for Linux"
HOMEPAGE="http://www.rodsbooks.com/gdisk/"
SRC_URI="mirror://sourceforge/gptfdisk/${P/_p/-}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=""

S="${WORKDIR}/${P/_p2/}"

src_install()
{
	for x in gdisk sgdisk; do
		dosbin "${x}" || die
		doman "${x}.8" || die
	done
}