1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | #PortGroup ruby 1.0 |
---|
7 | |
---|
8 | name rb-vagrant |
---|
9 | version 1.6.2 |
---|
10 | #ruby.setup vagrant ${version} gem |
---|
11 | #ruby.setup vagrant ${version} |
---|
12 | categories sysutils |
---|
13 | platforms darwin |
---|
14 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
15 | license MIT |
---|
16 | |
---|
17 | description tool for building and distributing working environments |
---|
18 | long_description ${description} |
---|
19 | |
---|
20 | homepage http://www.vagrantup.com/ |
---|
21 | master_sites https://github.com/mitchellh/vagrant/archive/ |
---|
22 | distname v${version} |
---|
23 | checksums rmd160 bf88de3074bbcf65160476f2682e3c57d959bf0c \ |
---|
24 | sha256 6ff8c38d1682578160ae7b6f933cc7074f5a65287b15b738c52e0b261ad25452 |
---|
25 | worksrcdir vagrant-${version} |
---|
26 | #fetch.type git |
---|
27 | #git.url https://github.com/mitchellh/vagrant |
---|
28 | #git.branch 1.5.1 |
---|
29 | |
---|
30 | depends_build port:rb19-rake port:rb19-bundler |
---|
31 | depends_run port:virtualbox |
---|
32 | supported_archs noarch |
---|
33 | |
---|
34 | ## https://github.com/mitchellh/vagrant/wiki/Installing-Vagrant-from-source |
---|
35 | use_configure no |
---|
36 | build.cmd bundle-1.9 |
---|
37 | build.target install |
---|
38 | destroot.cmd rake |
---|
39 | destroot.target install |
---|
40 | |
---|
41 | |
---|
42 | livecheck.type regex |
---|
43 | livecheck.url https://github.com/mitchellh/vagrant/releases |
---|
44 | livecheck.regex "<a href=\"/mitchellh/vagrant/releases/tag/v(\\d+(?:\\.\\d+)*)\">" |
---|
45 | |
---|
46 | |
---|