diff options
author | Johannes Huber <johu@gentoo.org> | 2014-09-18 20:00:03 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2014-09-18 20:00:03 +0200 |
commit | 823ef1b9125d7ea462bde15b4dcf82d4cd1c2704 (patch) | |
tree | 44f0d6bfeb96f83fc656cf44b264c8fb04bf4f80 /app-emulation | |
parent | [net-irc/quassel] Use SLOT 4 on dev-qt/qtgui for !qt5 build (diff) | |
download | johu-823ef1b9125d7ea462bde15b4dcf82d4cd1c2704.tar.gz johu-823ef1b9125d7ea462bde15b4dcf82d4cd1c2704.tar.bz2 johu-823ef1b9125d7ea462bde15b4dcf82d4cd1c2704.zip |
[app-emulation/vagrant-bin] New package
Package-Manager: portage-2.2.13
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vagrant-bin/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/vagrant-bin/metadata.xml | 9 | ||||
-rw-r--r-- | app-emulation/vagrant-bin/vagrant-bin-1.6.3.ebuild | 39 |
3 files changed, 49 insertions, 0 deletions
diff --git a/app-emulation/vagrant-bin/Manifest b/app-emulation/vagrant-bin/Manifest new file mode 100644 index 0000000..ebb5418 --- /dev/null +++ b/app-emulation/vagrant-bin/Manifest @@ -0,0 +1 @@ +DIST vagrant_1.6.3_x86_64.deb 68256352 SHA256 0fc3259cf08b693e3383636256734513ee93bf258f8328efb64e1dde447aadbe SHA512 c24cafff895f9206583cf732321641f5aed2e2641890048cdbf287ff25ead4f9811ac5d1aae794abbcc9d45b6cc68f915723d014bb49e98c04aa12f09c61510d WHIRLPOOL c6643fda2c6abb9157ec244d41dad4b7d7487503dff166857a6bb12023d841979155f0c01dc141f394d444f05c20c6b7ad203b788b86568bc99e4161cb2a9a42 diff --git a/app-emulation/vagrant-bin/metadata.xml b/app-emulation/vagrant-bin/metadata.xml new file mode 100644 index 0000000..b7fc580 --- /dev/null +++ b/app-emulation/vagrant-bin/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>johu@gentoo.org</email> + <name>Johannes Huber</name> + </maintainer> +</pkgmetadata> + diff --git a/app-emulation/vagrant-bin/vagrant-bin-1.6.3.ebuild b/app-emulation/vagrant-bin/vagrant-bin-1.6.3.ebuild new file mode 100644 index 0000000..f554d00 --- /dev/null +++ b/app-emulation/vagrant-bin/vagrant-bin-1.6.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +MY_PN=${PN/-bin/} +inherit unpacker eutils + +DESCRIPTION="Tool for building and distributing virtual machines" +HOMEPAGE="http://vagrantup.com/" +SRC_URI="https://dl.bintray.com/mitchellh/${MY_PN}/${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 +" + +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}" +} |