View | Details | Raw Unified | Return to bug 175256
Collapse All | Expand All

(-)pkg-descr (-3 / +3 lines)
Lines 1-5 Link Here
1
rbenv lets you easily switch between multiple versions of Ruby.
1
Use rbenv to pick a Ruby version for your application and guarantee
2
It's simple, unobtrusive, and follows the UNIX tradition of
2
that your development environment matches production. Put rbenv to work
3
single-purpose tools that do one thing well.
3
with Bundler for painless Ruby upgrades and bulletproof deployments.
4
4
5
WWW: https://github.com/sstephenson/rbenv
5
WWW: https://github.com/sstephenson/rbenv
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (rbenv-0.3.0.tar.gz) = 445b8d742bbb72a4e65280e655122914d13954566fe7f46c7706f7730bbeaa35
1
SHA256 (rbenv-0.4.0.tar.gz) = e9b54d2d3669e52aed439094fa92aab36d826573e1a4f8dd65241406204a3e23
2
SIZE (rbenv-0.3.0.tar.gz) = 13703
2
SIZE (rbenv-0.4.0.tar.gz) = 16029
(-)pkg-plist (+3 lines)
Lines 1-6 Link Here
1
bin/rbenv
1
bin/rbenv
2
bin/ruby-local-exec
2
bin/ruby-local-exec
3
libexec/rbenv
3
libexec/rbenv
4
libexec/rbenv---version
4
libexec/rbenv-commands
5
libexec/rbenv-commands
5
libexec/rbenv-completions
6
libexec/rbenv-completions
6
libexec/rbenv-exec
7
libexec/rbenv-exec
Lines 12-17 Link Here
12
libexec/rbenv-prefix
13
libexec/rbenv-prefix
13
libexec/rbenv-rehash
14
libexec/rbenv-rehash
14
libexec/rbenv-root
15
libexec/rbenv-root
16
libexec/rbenv-sh-rehash
15
libexec/rbenv-sh-shell
17
libexec/rbenv-sh-shell
16
libexec/rbenv-shims
18
libexec/rbenv-shims
17
libexec/rbenv-version
19
libexec/rbenv-version
Lines 23-25 Link Here
23
libexec/rbenv-versions
25
libexec/rbenv-versions
24
libexec/rbenv-whence
26
libexec/rbenv-whence
25
libexec/rbenv-which
27
libexec/rbenv-which
28
@unexec rm -fr %D/share/rbenv
(-)Makefile (-4 / +6 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	rbenv
3
PORTNAME=	rbenv
4
PORTVERSION=	0.3.0
4
PORTVERSION=	0.4.0
5
CATEGORIES=	devel ruby
5
CATEGORIES=	devel ruby
6
MASTER_SITES=	GH
6
MASTER_SITES=	GH
7
7
Lines 18-31 Link Here
18
USE_GITHUB=	yes
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	sstephenson
19
GH_ACCOUNT=	sstephenson
20
GH_PROJECT=	rbenv
20
GH_PROJECT=	rbenv
21
GH_COMMIT=	b10bdb1
21
GH_COMMIT=	9375e99
22
GH_TAGNAME=	v${PORTVERSION}
22
GH_TAGNAME=	v${PORTVERSION}
23
23
24
NO_BUILD=	yes
24
NO_BUILD=	yes
25
25
26
do-install:
26
do-install:
27
	${INSTALL_SCRIPT} ${WRKSRC}/bin/ruby-local-exec ${PREFIX}/bin
27
	@${INSTALL_SCRIPT} ${WRKSRC}/bin/ruby-local-exec ${PREFIX}/bin
28
	( cd ${WRKSRC}/libexec && ${COPYTREE_BIN} \* ${PREFIX}/libexec )
28
	@( cd ${WRKSRC}/libexec && ${COPYTREE_BIN} \* ${PREFIX}/libexec )
29
	@${LN} -sf ${PREFIX}/libexec/rbenv ${PREFIX}/bin/rbenv
29
	@${LN} -sf ${PREFIX}/libexec/rbenv ${PREFIX}/bin/rbenv
30
	@${MKDIR} ${PREFIX}/share/rbenv/completions
31
	@( cd ${WRKSRC}/completions && ${COPYTREE_BIN} \* ${PREFIX}/share/rbenv/completions )
30
32
31
.include <bsd.port.mk>
33
.include <bsd.port.mk>

Return to bug 175256