blob: 63ada53bf283212cf0f6e361053d918a7170189f (
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
39
40
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
MY_PN=${PN/-bin/}
inherit unpacker eutils
DESCRIPTION="Tool for building and distributing virtual machines"
HOMEPAGE="http://vagrantup.com/"
SRC_URI="https://releases.hashicorp.com/${MY_PN}/${PV}/${MY_PN}_${PV}_x86_64.deb"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S="${WORKDIR}/opt/${MY_PN}"
DEPEND=""
RDEPEND="${DEPEND}
app-arch/libarchive
net-misc/curl
!app-emulation/vagrant
"
RESTRICT="mirror"
src_unpack() {
unpack_deb ${A}
}
src_install() {
local dir="/opt/${MY_PN}"
dodir ${dir}
cp -ar ./* "${ED}${dir}" || die "copy files failed"
make_wrapper "${MY_PN}" "${dir}/bin/${MY_PN}"
}
|