blob: 20dc3bb46c3567698d373af7b9d80a9659737ae5 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EGIT_REPO_URI="git://aufs.git.sourceforge.net/gitroot/aufs/aufs-util.git"
EGIT_BRANCH="aufs3.9"
inherit eutils git-r3 linux-info multilib
DESCRIPTION="Userspace tools for aufs"
HOMEPAGE="http://aufs.sourceforge.net/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0/3.9"
# Since this is a live ebuild, we require ACCEPT_KEYWORDS='**'
#KEYWORDS="~amd64 ~x86"
KEYWORDS=""
IUSE=""
PROPERTIES="live"
RDEPEND=""
DEPEND="dev-vcs/git[curl]"
src_prepare() {
epatch_user
}
|