diff options
author | andy <andy@ndyk.de> | 2013-10-30 12:52:30 +0100 |
---|---|---|
committer | andy <andy@ndyk.de> | 2013-10-30 12:52:30 +0100 |
commit | cb0e24438a16990179e6de5b36790c5c797984ac (patch) | |
tree | 59bbca8f33795568fd787a3eae097dd24ad68795 /app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild | |
parent | pushed dspdfviewer to 1.10.1 (diff) | |
download | andy-cb0e24438a16990179e6de5b36790c5c797984ac.tar.gz andy-cb0e24438a16990179e6de5b36790c5c797984ac.tar.bz2 andy-cb0e24438a16990179e6de5b36790c5c797984ac.zip |
pushed vagrant to 1.3.5, added support for x86
Diffstat (limited to 'app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild')
-rw-r--r-- | app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild b/app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild new file mode 100644 index 0000000..b380a8b --- /dev/null +++ b/app-emulation/vagrant-bin/vagrant-bin-1.3.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit multilib unpacker eutils + +MY_COMMIT="a40522f5fabccb9ddabad03d836e120ff5d14093" +DESCRIPTION="Vagrant is a tool for building complete development environments." +HOMEPAGE="http://www.vagrantup.com/" +SRC_URI_BASE="http://files.vagrantup.com/packages/${MY_COMMIT}" +SRC_URI="x86? ( ${SRC_URI_BASE}/${PN/-bin/}_${PV}_i686.deb ) + amd64? ( ${SRC_URI_BASE}/${PN/-bin/}_${PV}_x86_64.deb )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="test strip" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/opt/vagrant" +QA_PREBUILT="*" + +src_install() { + local version flapper + + dodir /opt/vagrant + cp -r ./* "${ED}opt/vagrant" + + make_wrapper vagrant /opt/vagrant/bin/vagrant +} |