blob: dff92cee1437a28ade2da0d476d44f13b1a5e059 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gpart/gpart-0.1h.ebuild,v 1.4 2003/06/21 21:19:39 drobbins Exp $
inherit eutils
DESCRIPTION="Partition table rescue/guessing tool"
SRC_URI="http://www.stud.uni-hannover.de/user/76201/gpart/${P}.tar.gz"
HOMEPAGE="http://www.stud.uni-hannover.de/user/76201/gpart/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-errno.diff
}
src_compile() {
emake || die
}
src_install() {
dobin src/gpart
doman man/gpart.8
dodoc README CHANGES COPYING INSTALL LSM
}
|