blob: 37acb6aa84cf035cac3cbd34851387e082fc021a (
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
32
33
34
35
36
37
38
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/btrfs-progs-0.15.ebuild,v 1.1 2008/05/29 17:00:18 lavajoe Exp $
inherit eutils
DESCRIPTION="Btrfs filesystem utilities"
HOMEPAGE="http://btrfs.wiki.kernel.org/"
SRC_URI="http://www.kernel.org/pub/linux/kernel/people/mason/btrfs/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="~sys-fs/btrfs-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
}
src_install() {
into /
dosbin btrfs-show
dosbin btrfs-vol
dosbin btrfsctl
dosbin btrfsck
dosym btrfsck /sbin/fsck.btrfs
newsbin debug-tree btrfs-debug-tree
newsbin mkfs.btrfs mkbtrfs
dosym mkbtrfs /sbin/mkfs.btrfs
into /usr
dobin bcp
dodoc INSTALL
}
|