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

(-)Mk/Uses/gem.mk (+144 lines)
Line 0 Link Here
1
# $FreeBSD$
2
#
3
# Support rubygem packages
4
#
5
# Feature:	gem
6
# Usage:	USES=gem[:autoplist]
7
# Valid args:	autoplist	Automatically generate packing list
8
#
9
# MAINTAINER: portmgr@FreeBSD.org
10
11
.if !defined(_INCLUDE_USES_GEM_MK)
12
13
_INCLUDE_USES_GEM_MK=        yes
14
15
BUILD_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
16
RUN_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
17
18
PKGNAMEPREFIX?=	rubygem-
19
EXTRACT_SUFX=	.gem
20
EXTRACT_ONLY=
21
DIST_SUBDIR=	rubygem
22
23
EXTRACT_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
24
GEMS_BASE_DIR=	lib/ruby/gems/${RUBY_VER}
25
GEMS_DIR=	${GEMS_BASE_DIR}/gems
26
DOC_DIR=	${GEMS_BASE_DIR}/doc
27
CACHE_DIR=	${GEMS_BASE_DIR}/cache
28
SPEC_DIR=	${GEMS_BASE_DIR}/specifications
29
EXT_DIR=	${GEMS_BASE_DIR}/extensions
30
GEM_NAME?=	${PORTNAME}-${PORTVERSION}
31
GEM_LIB_DIR?=	${GEMS_DIR}/${GEM_NAME}
32
GEM_DOC_DIR?=	${DOC_DIR}/${GEM_NAME}
33
GEM_SPEC?=	${SPEC_DIR}/${GEM_NAME}.gemspec
34
GEM_CACHE?=	${CACHE_DIR}/${GEM_NAME}.gem
35
GEMSPEC=	${PORTNAME}.gemspec
36
GEM_ENV+=	RB_USER_INSTALL=yes
37
38
.if defined(LANG) && !empty(LANG)
39
GEM_ENV+=		LANG=${LANG}
40
.else
41
GEM_ENV+=		LANG=en_US.UTF-8
42
.endif
43
44
.if defined(LC_ALL) && !empty(LC_ALL)
45
GEM_ENV+=		LC_ALL=${LC_ALL}
46
.else
47
GEM_ENV+=		LC_ALL=en_US.UTF-8
48
.endif
49
50
.if defined(LC_CTYPE) && !empty(LC_CTYPE)
51
GEM_ENV+=		LC_CTYPE=${LC_CTYPE}
52
.else
53
GEM_ENV+=		LC_CTYPE=UTF-8
54
.endif
55
56
PLIST_SUB+=	PORTVERSION="${PORTVERSION}" \
57
		REV="${RUBY_GEM}" \
58
		GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \
59
		GEMS_DIR="${GEMS_DIR}" \
60
		DOC_DIR="${DOC_DIR}" \
61
		CACHE_DIR="${CACHE_DIR}" \
62
		SPEC_DIR="${SPEC_DIR}" \
63
		EXT_DIR="${EXT_DIR}" \
64
		PORT="${PORTNAME}-${PORTVERSION}" \
65
		GEM_NAME="${GEM_NAME}" \
66
		GEM_LIB_DIR="${GEM_LIB_DIR}" \
67
		GEM_DOC_DIR="${GEM_DOC_DIR}" \
68
		GEM_SPEC="${GEM_SPEC}" \
69
		GEM_CACHE="${GEM_CACHE}" \
70
		EXTRACT_SUFX="${EXTRACT_SUFX}"
71
72
RUBYGEMBIN=	${LOCALBASE}/bin/gem${RUBY_VER:S/.//}
73
74
. if defined(DISTFILES)
75
GEMFILES=	${DISTFILES:C/:[^:]+$//}
76
. else
77
GEMFILES=	${DISTNAME}${EXTRACT_SUFX}
78
. endif
79
80
RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
81
82
.if ${PORT_OPTIONS:MDOCS}
83
RUBYGEM_ARGS+=	--rdoc --ri
84
.else
85
RUBYGEM_ARGS+=	--no-rdoc --no-ri
86
.endif
87
88
.if !target(do-extract)
89
do-extract:
90
	@${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES}
91
	@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \
92
		if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
93
			${ECHO_MSG} "===> Extraction failed unexpectedly."; \
94
			(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
95
			fi; \
96
		${FALSE}; \
97
		fi)
98
.endif
99
100
.if !target(do-build)
101
do-build:
102
	@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \
103
		if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
104
			${ECHO_MSG} "===> Compilation failed unexpectedly."; \
105
			(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
106
			fi; \
107
		${FALSE}; \
108
		fi)
109
.endif
110
111
.if !target(do-install)
112
do-install:
113
	(cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
114
	${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/
115
	${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} +
116
	${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete
117
	${RM} -rf ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \
118
		${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE}
119
	${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE}
120
.if defined(NOPORTDOCS)
121
	-@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR}
122
.endif
123
.endif
124
125
.if ${gem_ARGS} == "autoplist"
126
.if !target(post-install-script)
127
post-install-script:
128
	@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
129
.if !defined(NOPORTDOCS)
130
	@${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \
131
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
132
.endif
133
	@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \
134
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
135
	@if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \
136
		${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \
137
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \
138
	fi
139
.endif
140
.else
141
IGNORE= Incorrect 'USES+=gem:${gem_ARGS}' expecting 'USES+=gem[:autoplist]'
142
.endif
143
144
.endif
(-)Mk/bsd.ruby.mk (-138 / +1 lines)
Lines 57-67 Link Here
57
#			  documents from. If this is defined and not empty,
57
#			  documents from. If this is defined and not empty,
58
#			  USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is
58
#			  USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is
59
#			  defined.
59
#			  defined.
60
# USE_RUBYGEMS		- Says that the port uses rubygems packaging system.
60
# USE_RUBYGEMS		- Do not use this -- instead USES=gem
61
# RUBYGEM_AUTOPLIST	- Generate packing list for rubygems based port
62
#			  automatically.
63
#
61
#
64
#
65
# [variables that each port should not (re)define]
62
# [variables that each port should not (re)define]
66
#
63
#
67
# RUBY_PKGNAMEPREFIX	- Common PKGNAMEPREFIX for ruby ports
64
# RUBY_PKGNAMEPREFIX	- Common PKGNAMEPREFIX for ruby ports
Lines 264-287 Link Here
264
261
265
.if !defined(_INVALID_RUBY_VER)
262
.if !defined(_INVALID_RUBY_VER)
266
263
267
.if defined(LANG) && !empty(LANG)
268
GEM_ENV+=		LANG=${LANG}
269
.else
270
GEM_ENV+=		LANG=en_US.UTF-8
271
.endif
272
273
.if defined(LC_ALL) && !empty(LC_ALL)
274
GEM_ENV+=		LC_ALL=${LC_ALL}
275
.else
276
GEM_ENV+=		LC_ALL=en_US.UTF-8
277
.endif
278
279
.if defined(LC_CTYPE) && !empty(LC_CTYPE)
280
GEM_ENV+=		LC_CTYPE=${LC_CTYPE}
281
.else
282
GEM_ENV+=		LC_CTYPE=UTF-8
283
.endif
284
285
RUBY_DEFAULT_SUFFIX?=	${RUBY_DEFAULT_VER:S/.//}
264
RUBY_DEFAULT_SUFFIX?=	${RUBY_DEFAULT_VER:S/.//}
286
265
287
RUBY_DISTVERSION?=	${RUBY_VERSION}
266
RUBY_DISTVERSION?=	${RUBY_VERSION}
Lines 424-545 Link Here
424
.endif
403
.endif
425
404
426
#
405
#
427
# RubyGems support
428
#
429
.if defined(USE_RUBYGEMS)
430
431
BUILD_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
432
RUN_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
433
434
PKGNAMEPREFIX?=	rubygem-
435
EXTRACT_SUFX=	.gem
436
EXTRACT_ONLY=
437
DIST_SUBDIR=	rubygem
438
439
EXTRACT_DEPENDS+=	${RUBYGEMBIN}:devel/ruby-gems
440
GEMS_BASE_DIR=	lib/ruby/gems/${RUBY_VER}
441
GEMS_DIR=	${GEMS_BASE_DIR}/gems
442
DOC_DIR=	${GEMS_BASE_DIR}/doc
443
CACHE_DIR=	${GEMS_BASE_DIR}/cache
444
SPEC_DIR=	${GEMS_BASE_DIR}/specifications
445
EXT_DIR=	${GEMS_BASE_DIR}/extensions
446
GEM_NAME?=	${PORTNAME}-${PORTVERSION}
447
GEM_LIB_DIR?=	${GEMS_DIR}/${GEM_NAME}
448
GEM_DOC_DIR?=	${DOC_DIR}/${GEM_NAME}
449
GEM_SPEC?=	${SPEC_DIR}/${GEM_NAME}.gemspec
450
GEM_CACHE?=	${CACHE_DIR}/${GEM_NAME}.gem
451
452
PLIST_SUB+=	PORTVERSION="${PORTVERSION}" \
453
		REV="${RUBY_GEM}" \
454
		GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \
455
		GEMS_DIR="${GEMS_DIR}" \
456
		DOC_DIR="${DOC_DIR}" \
457
		CACHE_DIR="${CACHE_DIR}" \
458
		SPEC_DIR="${SPEC_DIR}" \
459
		EXT_DIR="${EXT_DIR}" \
460
		PORT="${PORTNAME}-${PORTVERSION}" \
461
		GEM_NAME="${GEM_NAME}" \
462
		GEM_LIB_DIR="${GEM_LIB_DIR}" \
463
		GEM_DOC_DIR="${GEM_DOC_DIR}" \
464
		GEM_SPEC="${GEM_SPEC}" \
465
		GEM_CACHE="${GEM_CACHE}" \
466
		EXTRACT_SUFX="${EXTRACT_SUFX}"
467
468
RUBYGEMBIN=	${LOCALBASE}/bin/gem${RUBY_VER:S/.//}
469
470
. if defined(DISTFILES)
471
GEMFILES=	${DISTFILES:C/:[^:]+$//}
472
. else
473
GEMFILES=	${DISTNAME}${EXTRACT_SUFX}
474
. endif
475
476
GEMSPEC=	${PORTNAME}.gemspec
477
478
RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
479
GEM_ENV+=	RB_USER_INSTALL=yes
480
.if defined(NOPORTDOCS)
481
RUBYGEM_ARGS+=	--no-rdoc --no-ri
482
.else
483
RUBYGEM_ARGS+=	--rdoc --ri
484
.endif
485
486
.if !target(do-extract)
487
do-extract:
488
	@${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES}
489
	@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \
490
		if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
491
			${ECHO_MSG} "===> Extraction failed unexpectedly."; \
492
			(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
493
			fi; \
494
		${FALSE}; \
495
		fi)
496
.endif
497
498
.if !target(do-build)
499
do-build:
500
	@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \
501
		if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
502
			${ECHO_MSG} "===> Compilation failed unexpectedly."; \
503
			(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
504
			fi; \
505
		${FALSE}; \
506
		fi)
507
.endif
508
509
.if !target(do-install)
510
do-install:
511
	(cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
512
	${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/
513
	${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} +
514
	${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete
515
	${RM} -rf ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \
516
		${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE}
517
	${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE}
518
.if defined(NOPORTDOCS)
519
	-@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR}
520
.endif
521
.endif
522
523
. if defined(RUBYGEM_AUTOPLIST)
524
.  if !target(post-install-script)
525
post-install-script:
526
	@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
527
.if !defined(NOPORTDOCS)
528
	@${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \
529
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
530
.endif
531
	@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \
532
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
533
	@if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \
534
		${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \
535
		's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \
536
	fi
537
.  endif
538
. endif
539
540
.endif # USE_RUBYGEMS
541
542
#
543
# extconf.rb support
406
# extconf.rb support
544
#
407
#
545
.if defined(USE_RUBY_EXTCONF)
408
.if defined(USE_RUBY_EXTCONF)
(-)accessibility/rubygem-atk/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	atk
15
USE_GNOME=	atk
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)archivers/rubygem-archive-tar-minitar/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/minitar
19
PLIST_FILES=	bin/minitar
21
20
(-)archivers/rubygem-archive-zip/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)archivers/rubygem-bzip2-ruby/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
LICENSE_COMB=	dual
14
LICENSE_COMB=	dual
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)archivers/rubygem-libarchive/Makefile (-3 / +1 lines)
Lines 12-21 Link Here
12
12
13
LICENSE=	BSD3CLAUSE
13
LICENSE=	BSD3CLAUSE
14
14
15
USES=		dos2unix libarchive
16
USE_RUBY=	yes
15
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
16
USES=		dos2unix gem:autoplist libarchive
18
RUBYGEM_AUTOPLIST=	yes
19
17
20
DOS2UNIX_FILES=	ext/depend
18
DOS2UNIX_FILES=	ext/depend
21
19
(-)archivers/rubygem-minitar/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/minitar
20
PLIST_FILES=	bin/minitar
22
21
(-)archivers/rubygem-ruby-xz/Makefile (-2 / +1 lines)
Lines 9-15 Link Here
9
COMMENT=	Ruby bindings for the liblzma library
9
COMMENT=	Ruby bindings for the liblzma library
10
10
11
USE_RUBY=	yes
11
USE_RUBY=	yes
12
USE_RUBYGEMS=	yes
12
USES=		gem:autoplist
13
RUBYGEM_AUTOPLIST=	yes
14
13
15
.include <bsd.port.mk>
14
.include <bsd.port.mk>
(-)archivers/rubygem-rubyzip/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)archivers/rubygem-rubyzip2/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)audio/rubygem-librmpd/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)audio/rubygem-ruby-mp3info/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)audio/rubygem-ruby-ogginfo/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)audio/rubygem-ruby-shout/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
CONFIGURE_ARGS=	--with-opt-include="${LOCALBASE}/include"
17
CONFIGURE_ARGS=	--with-opt-include="${LOCALBASE}/include"
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)benchmarks/rubygem-benchmark-ips/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)benchmarks/rubygem-railsbench/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/railsbench
20
PLIST_FILES=	bin/railsbench
22
21
(-)comms/rubygem-callsign/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)comms/rubygem-ruby-termios/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE_COMB=	dual
12
LICENSE_COMB=	dual
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)converters/rubygem-bsdconv/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
GEM_NAME=	${DISTNAME}
19
GEM_NAME=	${DISTNAME}
20
20
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)databases/rubygem-activemodel/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-activemodel4/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)databases/rubygem-activerecord/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
OPTIONS_DEFINE=	MYSQL PGSQL SQLITE3
24
OPTIONS_DEFINE=	MYSQL PGSQL SQLITE3
26
MYSQL_DESC=	Use native MySQL bindings
25
MYSQL_DESC=	Use native MySQL bindings
(-)databases/rubygem-activerecord-jdbc-adapter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-activerecord-jdbcmysql-adapter/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)databases/rubygem-activerecord-mysql-adapter/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
		rubygem-mysql>=2.9.0:databases/rubygem-mysql
16
		rubygem-mysql>=2.9.0:databases/rubygem-mysql
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-activerecord-session_store/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)databases/rubygem-activerecord4/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)databases/rubygem-after_commit_queue/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-amalgalite/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
RUN_DEPENDS=	rubygem-arrayfields>=4.9:devel/rubygem-arrayfields
15
RUN_DEPENDS=	rubygem-arrayfields>=4.9:devel/rubygem-arrayfields
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/amalgalite-pack
20
PLIST_FILES=	bin/amalgalite-pack
22
21
(-)databases/rubygem-arel/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)databases/rubygem-arel-helpers/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)databases/rubygem-arel3/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PORTSCOUT=	ignore
20
PORTSCOUT=	ignore
22
21
(-)databases/rubygem-arel5/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-arel6/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-awesome_nested_set/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-bdb1/Makefile (-3 / +1 lines)
Lines 11-20 Link Here
11
LICENSE=	BSD2CLAUSE RUBY
11
LICENSE=	BSD2CLAUSE RUBY
12
LICENSE_COMB=	dual
12
LICENSE_COMB=	dual
13
13
14
USES=		execinfo
15
USE_RUBY=	yes
14
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
15
USES=		execinfo gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
16
19
.include <bsd.port.pre.mk>
17
.include <bsd.port.pre.mk>
20
18
(-)databases/rubygem-bigrecord/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)databases/rubygem-couchrest/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-data_objects/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-datamapper/Makefile (-2 / +1 lines)
Lines 25-31 Link Here
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
26
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)databases/rubygem-dbd-mysql/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
		rubygem-mysql>=0:databases/rubygem-mysql
14
		rubygem-mysql>=0:databases/rubygem-mysql
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-dbd-odbc/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dbd-pg/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dbd-sqlite3/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dbi/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/dbi bin/test_broken_dbi
23
PLIST_FILES=	bin/dbi bin/test_broken_dbi
25
24
(-)databases/rubygem-dm-active_model/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-aggregates/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dm-chunked_query/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-constraints/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dm-core/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-devise/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)databases/rubygem-dm-do-adapter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-migrations/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)databases/rubygem-dm-mysql-adapter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-observer/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dm-pager/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-paperclip/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
20
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)databases/rubygem-dm-postgres-adapter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-dm-rails/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)databases/rubygem-dm-serializer/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)databases/rubygem-dm-timestamps/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-dm-transactions/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)databases/rubygem-dm-types/Makefile (-2 / +1 lines)
Lines 23-29 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)databases/rubygem-dm-validations/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)databases/rubygem-do_mysql/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_MYSQL=	yes
14
USE_MYSQL=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)databases/rubygem-do_postgres/Makefile (-4 / +1 lines)
Lines 11-20 Link Here
11
11
12
RUN_DEPENDS=	rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
12
RUN_DEPENDS=	rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
13
13
14
USES+=		pgsql
15
16
USE_RUBY=	yes
14
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist pgsql
18
RUBYGEM_AUTOPLIST=	yes
19
16
20
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)databases/rubygem-do_sqlite3/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
RUN_DEPENDS=	rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
14
RUN_DEPENDS=	rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
19
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
21
20
(-)databases/rubygem-em-redis-unified/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
RUN_DEPENDS=	rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine
13
RUN_DEPENDS=	rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
NO_ARCH=	yes
17
NO_ARCH=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-familia/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)databases/rubygem-globalid/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-her/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)databases/rubygem-hiredis/Makefile (-3 / +1 lines)
Lines 15-22 Link Here
15
RUN_DEPENDS=	redis>=0:databases/redis
15
RUN_DEPENDS=	redis>=0:databases/redis
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist gmake
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		gmake
21
19
22
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)databases/rubygem-jdbc-mysql/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-leo_manager_client/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-memcache/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
CONFIGURE_ARGS=	--with-opt-dir=${LOCALBASE}
17
CONFIGURE_ARGS=	--with-opt-dir=${LOCALBASE}
18
GEM_ENV=	EXTERNAL_LIB="yes"
18
GEM_ENV=	EXTERNAL_LIB="yes"
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-memcache-client/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/memcached_top
19
PLIST_FILES=	bin/memcached_top
21
20
(-)databases/rubygem-mysql/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_MYSQL=	yes
15
USE_MYSQL=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)databases/rubygem-mysql2/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_MYSQL=	yes
14
USE_MYSQL=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)databases/rubygem-openid-redis-store/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-paranoia/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-pg/Makefile (-3 / +1 lines)
Lines 15-23 Link Here
15
CONFIGURE_ARGS=	--with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
15
CONFIGURE_ARGS=	--with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
16
		--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
16
		--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
17
PG_CONFIG=	${LOCALBASE}/bin/pg_config
17
PG_CONFIG=	${LOCALBASE}/bin/pg_config
18
USES=		pgsql
19
USE_RUBY=	yes
18
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist pgsql
21
RUBYGEM_AUTOPLIST=	yes
22
20
23
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-rbase/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)databases/rubygem-redis/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)databases/rubygem-redis-actionpack/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-redis-namespace/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-rubyrep/Makefile (-3 / +1 lines)
Lines 21-29 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist shebangfix
25
RUBYGEM_AUTOPLIST=	yes
26
USES=		shebangfix
27
SHEBANG_FILES=	bin/rubyrep rubyrep
25
SHEBANG_FILES=	bin/rubyrep rubyrep
28
26
29
USE_RC_SUBR=	rubyrep
27
USE_RC_SUBR=	rubyrep
(-)databases/rubygem-seed-fu/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)databases/rubygem-sqlite3/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
18
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-sqlite3-ruby/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
19
CONFIGURE_ARGS=	--with-sqlite3-dir=${LOCALBASE}
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
PLIST_FILES=	bin/sqlite3_ruby
24
PLIST_FILES=	bin/sqlite3_ruby
26
25
(-)databases/rubygem-state_machines-activemodel/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)databases/rubygem-state_machines-activerecord/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)databases/rubygem-tarantool/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)deskutils/rubygem-shellplay/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
PLIST_FILES=	bin/shellcat bin/shellexport bin/shellplay bin/shellrecord
22
PLIST_FILES=	bin/shellcat bin/shellexport bin/shellplay bin/shellrecord
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)deskutils/rubygem-taskjuggler/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/tj3 \
22
PLIST_FILES=	bin/tj3 \
24
		bin/tj3client \
23
		bin/tj3client \
(-)devel/rubygem-CFPropertyList/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-abstract/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-actionpack-action_caching/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-actionview/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-active_scaffold/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-activejob/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-activemessaging/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-activerecord-deprecated_finders/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-activesupport/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-activesupport4/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)devel/rubygem-akismet/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-algebrick/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-algorithms/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-allison/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
PLIST_FILES=	bin/allison
17
PLIST_FILES=	bin/allison
19
18
(-)devel/rubygem-analogger/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		shebangfix
23
SHEBANG_FILES=	bin/analogger
21
SHEBANG_FILES=	bin/analogger
24
ruby_OLD_CMD=	ruby
22
ruby_OLD_CMD=	ruby
25
23
(-)devel/rubygem-annoy/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-ansi/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-apipie-bindings/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-apipie-params/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
USE_RAKE=	yes
16
USE_RAKE=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-app_config/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-arr-pm/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
10
11
NO_ARCH=	yes
11
NO_ARCH=	yes
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)devel/rubygem-arrayfields/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-ascii85/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/ascii85
21
PLIST_FILES=	bin/ascii85
23
22
(-)devel/rubygem-asetus/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-aspectr/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ast/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-astrolabe/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-atomic/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	APACHE20
12
LICENSE=	APACHE20
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-atoulme-antwrap/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-attic/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-attr_required/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-authlogic/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-awesome_print/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-aws-sdk/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-aws-sdk-core/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/aws.rb
19
PLIST_FILES=	bin/aws.rb
21
20
(-)devel/rubygem-aws-sdk-resources/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-aws-sdk-v1/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/aws-rb
20
PLIST_FILES=	bin/aws-rb
22
21
(-)devel/rubygem-axiom-types/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-backports/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-bacon/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/bacon
19
PLIST_FILES=	bin/bacon
21
20
(-)devel/rubygem-benelux/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-bin_utils/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
COMMENT=	Extracting binary integers from binary string and packing back
10
COMMENT=	Extracting binary integers from binary string and packing back
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)devel/rubygem-bindata/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-binding_of_caller/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
RUN_DEPENDS=	rubygem-debug_inspector>=0.0.1:devel/rubygem-debug_inspector
13
RUN_DEPENDS=	rubygem-debug_inspector>=0.0.1:devel/rubygem-debug_inspector
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-bio/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	sample/biofetch.rb
20
SHEBANG_FILES=	sample/biofetch.rb
23
ruby_OLD_CMD=	/usr/proj/bioruby/bin/ruby
21
ruby_OLD_CMD=	/usr/proj/bioruby/bin/ruby
24
22
(-)devel/rubygem-blankslate/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-blobstore_client/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/blobstore_client_console
22
PLIST_FILES=	bin/blobstore_client_console
24
23
(-)devel/rubygem-blockenspiel/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-bones/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/bones
23
PLIST_FILES=	bin/bones
25
24
(-)devel/rubygem-bosh-template/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/bosh-template
19
PLIST_FILES=	bin/bosh-template
21
20
(-)devel/rubygem-bosh_common/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-bson/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-bson1/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PORTSCOUT=	limit:^1\.
20
PORTSCOUT=	limit:^1\.
22
21
(-)devel/rubygem-buftok/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-bugspots/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/bugspots bin/git-bugspots
21
PLIST_FILES=	bin/bugspots bin/git-bugspots
23
22
(-)devel/rubygem-builder/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-builder32/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-byebug/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/byebug
18
PLIST_FILES=	bin/byebug
20
19
(-)devel/rubygem-cabin/Makefile (-2 / +1 lines)
Lines 10-17 Link Here
10
10
11
NO_ARCH=	yes
11
NO_ARCH=	yes
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
PLIST_FILES=	bin/rubygems-cabin-test
14
PLIST_FILES=	bin/rubygems-cabin-test
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)devel/rubygem-caesars/Makefile (-3 / +1 lines)
Lines 13-21 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist shebangfix
17
RUBYGEM_AUTOPLIST=	yes
18
USES=		shebangfix
19
SHEBANG_FILES=	bin/example
17
SHEBANG_FILES=	bin/example
20
18
21
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-cairo-gobject/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
		rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2
14
		rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-capybara/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)devel/rubygem-celluloid/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-essentials/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-extras/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-fsm/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-io/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-pool/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-celluloid-supervision/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-cf-uaa-lib/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-childprocess/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-chronic/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-clamp/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-classifier/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-classifier-reborn/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-climate_control/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-clio/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-cliprompt/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-cloudfiles/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-cocaine/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-coercible/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-coffee-rails/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PORTSCOUT=	limit:^3\.
23
PORTSCOUT=	limit:^3\.
25
24
(-)devel/rubygem-coffee-rails4/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-coffee-script/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-coffee-script-source/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-colorize/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-columnize/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-commander/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/commander
21
PLIST_FILES=	bin/commander
23
22
(-)devel/rubygem-concurrent-ruby/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-concurrent-ruby-edge/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-configatron/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-configstruct/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-configuration/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-cool.io/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
	rubygem-iobuffer>=1.0.0:devel/rubygem-iobuffer
15
	rubygem-iobuffer>=1.0.0:devel/rubygem-iobuffer
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-corefines/Makefile (-2 / +1 lines)
Lines 9-15 Link Here
9
COMMENT=	Refinements for extending Rubys built-in classes
9
COMMENT=	Refinements for extending Rubys built-in classes
10
10
11
USE_RUBY=	yes
11
USE_RUBY=	yes
12
USE_RUBYGEMS=	yes
12
USES=		gem:autoplist
13
RUBYGEM_AUTOPLIST=	yes
14
13
15
.include <bsd.port.mk>
14
.include <bsd.port.mk>
(-)devel/rubygem-crack/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-cri/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-cucumber/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PLIST_FILES=	bin/cucumber
26
PLIST_FILES=	bin/cucumber
28
27
(-)devel/rubygem-cucumber-core/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-cucumber-wire/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-curses/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE_COMB=	dual
12
LICENSE_COMB=	dual
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-cyoi/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/cyoi
22
PLIST_FILES=	bin/cyoi
24
23
(-)devel/rubygem-daemon_controller/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-daemons/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-debug_inspector/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	MIT
11
LICENSE=	MIT
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)devel/rubygem-debugger-linecache/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-debugger-xml/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/rdebug-ide bin/rdebug-vim
22
PLIST_FILES=	bin/rdebug-ide bin/rdebug-vim
24
23
(-)devel/rubygem-deep_merge/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-deep_test/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/deep_test
19
PLIST_FILES=	bin/deep_test
21
20
(-)devel/rubygem-deface/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
		rubygem-rails4>=3.1:www/rubygem-rails4
16
		rubygem-rails4>=3.1:www/rubygem-rails4
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-default_value_for/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-delayed_job/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-delayer/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-delayer-deferred/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-deprecated/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-deprecated2/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PORTSCOUT=	limit:^2\.[0-9]*
20
PORTSCOUT=	limit:^2\.[0-9]*
22
21
(-)devel/rubygem-descendants_tracker/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-devise/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
BROKEN_RUBY23=	yes
24
BROKEN_RUBY23=	yes
26
25
(-)devel/rubygem-devise-async/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-directory_watcher/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ditz/Makefile (-3 / +1 lines)
Lines 18-26 Link Here
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RAKE=	yes
20
USE_RAKE=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist shebangfix
22
RUBYGEM_AUTOPLIST=	yes
23
USES=		shebangfix
24
SHEBANG_FILES=	bin/ditz
22
SHEBANG_FILES=	bin/ditz
25
ruby_OLD_CMD=	/usr/bin/ruby1.8
23
ruby_OLD_CMD=	/usr/bin/ruby1.8
26
24
(-)devel/rubygem-docile/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-drydock/Makefile (-3 / +1 lines)
Lines 15-23 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist shebangfix
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		shebangfix
21
SHEBANG_FILES=	bin/example
19
SHEBANG_FILES=	bin/example
22
20
23
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-dynflow/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-edavis10-object_daddy/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-elif/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-enumerize/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-equalizer/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-errand/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-event-bus/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-eventmachine/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
LICENSE_FILE_GPLv2=	${WRKSRC}/LICENSE
15
LICENSE_FILE_GPLv2=	${WRKSRC}/LICENSE
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-excon/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-execjs/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-extlib/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-facets/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-faraday_middleware-multi_json/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-fast-stemmer/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	MIT
11
LICENSE=	MIT
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)devel/rubygem-fast_gettext/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-fast_stack/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
13
LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-fast_xor/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
		rubygem-rake-compiler>=0:devel/rubygem-rake-compiler
16
		rubygem-rake-compiler>=0:devel/rubygem-rake-compiler
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-fastercsv/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-fastri/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/fastri-server bin/fri bin/qri bin/ri-emacs
20
PLIST_FILES=	bin/fastri-server bin/fri bin/qri bin/ri-emacs
22
21
(-)devel/rubygem-fastthread/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	LGPL21
12
LICENSE=	LGPL21
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-fattr/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ffi/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
LIB_DEPENDS=	libffi.so:devel/libffi
14
LIB_DEPENDS=	libffi.so:devel/libffi
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ffi-compiler/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-ffi-yajl/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
		rubygem-libyajl2>=1.0.0:devel/rubygem-libyajl2
15
		rubygem-libyajl2>=1.0.0:devel/rubygem-libyajl2
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/ffi-yajl-bench
20
PLIST_FILES=	bin/ffi-yajl-bench
22
21
(-)devel/rubygem-file-tail/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-flexmock/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-fluent-logger/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/fluent-post
20
PLIST_FILES=	bin/fluent-post
22
21
(-)devel/rubygem-fog/Makefile (-2 / +1 lines)
Lines 43-50 Link Here
43
43
44
NO_ARCH=	yes
44
NO_ARCH=	yes
45
USE_RUBY=	yes
45
USE_RUBY=	yes
46
USE_RUBYGEMS=	yes
46
USES=		gem:autoplist
47
RUBYGEM_AUTOPLIST=	yes
48
47
49
PLIST_FILES=	bin/fog
48
PLIST_FILES=	bin/fog
50
49
(-)devel/rubygem-fog-core/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-fog-json/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-font-awesome-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-font-awesome-rails-rails4/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-foreigner/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-foreman/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	spec/resources/bin/env
20
SHEBANG_FILES=	spec/resources/bin/env
23
21
24
PLIST_FILES=	bin/foreman
22
PLIST_FILES=	bin/foreman
(-)devel/rubygem-formatador/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-gdata/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-gem_plugin/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/gpgen
22
PLIST_FILES=	bin/gpgen
24
23
(-)devel/rubygem-gemcutter/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-gemnasium-gitlab-service/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-gems/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-generator_spec/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-generator_spec-rails4/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-georuby/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-get_process_mem/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-getopt/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RAKE=	yes
15
USE_RAKE=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-gettext/Makefile (-3 / +1 lines)
Lines 15-26 Link Here
15
RUN_DEPENDS=	rubygem-locale>=2.0.5:devel/rubygem-locale \
15
RUN_DEPENDS=	rubygem-locale>=2.0.5:devel/rubygem-locale \
16
		rubygem-text>=1.3.0:textproc/rubygem-text
16
		rubygem-text>=1.3.0:textproc/rubygem-text
17
17
18
USES=	shebangfix
19
NO_ARCH=	yes
18
NO_ARCH=	yes
20
19
21
USE_RUBY=	yes
20
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist shebangfix
23
RUBYGEM_AUTOPLIST=	yes
24
SHEBANG_FILES=	samples/*.rb samples/cgi/*.rb
22
SHEBANG_FILES=	samples/*.rb samples/cgi/*.rb
25
PLIST_FILES=	bin/rmsgcat bin/rmsgfmt bin/rmsginit bin/rmsgmerge bin/rxgettext
23
PLIST_FILES=	bin/rmsgcat bin/rmsgfmt bin/rmsginit bin/rmsgmerge bin/rxgettext
26
24
(-)devel/rubygem-gh/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)devel/rubygem-gibbler/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-gio2/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
		rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
14
		rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-git/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-git-version-bump/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/git-version-bump
18
PLIST_FILES=	bin/git-version-bump
20
19
(-)devel/rubygem-github_api/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)devel/rubygem-gitlab-pygments.rb/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-gitlab_git/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-gitlab_meta/Makefile (-3 / +1 lines)
Lines 13-21 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		cpe gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
USES=		cpe
19
17
20
CPE_PRODUCT=	gitlab
18
CPE_PRODUCT=	gitlab
21
CPE_VENDOR=	gitlab
19
CPE_VENDOR=	gitlab
(-)devel/rubygem-glib2/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	glib20
15
USE_GNOME=	glib20
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-gobject-introspection/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	introspection
15
USE_GNOME=	introspection
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-graf/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
PLIST_FILES=	bin/graf
18
PLIST_FILES=	bin/graf
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-grape/Makefile (-2 / +1 lines)
Lines 23-29 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)devel/rubygem-grape-entity/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-grape-swagger/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-grit/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-guess_html_encoding/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-gyoku/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-hashdiff/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-hashery/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-hashie/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-hashie2/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=yes
19
18
20
PORTSCOUT=	limit:^2\.
19
PORTSCOUT=	limit:^2\.
21
20
(-)devel/rubygem-highline/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-hike/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-hitimes/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	ISCL
12
LICENSE=	ISCL
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-hoe/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/sow
20
PLIST_FILES=	bin/sow
22
21
(-)devel/rubygem-holidays/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-i18n/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-icalendar/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ice_cube/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-ice_nine/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-inflecto/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-instance_storage/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-interact/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-iobuffer/Makefile (-2 / +1 lines)
Lines 9-15 Link Here
9
COMMENT=	Gems for iobuffer
9
COMMENT=	Gems for iobuffer
10
10
11
USE_RUBY=	yes
11
USE_RUBY=	yes
12
USE_RUBYGEMS=	yes
12
USES=		gem:autoplist
13
RUBYGEM_AUTOPLIST=	yes
14
13
15
.include <bsd.port.mk>
14
.include <bsd.port.mk>
(-)devel/rubygem-jammit/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/jammit
22
PLIST_FILES=	bin/jammit
24
23
(-)devel/rubygem-jbuilder/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-jekyll-coffeescript/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-jeweler/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES=	bin/jeweler
27
PLIST_FILES=	bin/jeweler
29
28
(-)devel/rubygem-jmespath/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-jquery-ui-themes/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-jruby-jars/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-json/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
LICENSE_FILE_RUBY=	${WRKSRC}/COPYING
15
LICENSE_FILE_RUBY=	${WRKSRC}/COPYING
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-json_pure/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_COMB=	dual
13
LICENSE_COMB=	dual
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-kafo/Makefile (-3 / +1 lines)
Lines 23-31 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		cpe gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
USES=		cpe
29
27
30
CPE_VENDOR=	theforeman
28
CPE_VENDOR=	theforeman
31
29
(-)devel/rubygem-kafo_parsers/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-kafo_wizards/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-kgio/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_COMB=	dual
13
LICENSE_COMB=	dual
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-launchy/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/launchy
21
PLIST_FILES=	bin/launchy
23
22
(-)devel/rubygem-launchy22/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PORTSCOUT=	limit:^2\.2
21
PORTSCOUT=	limit:^2\.2
23
22
(-)devel/rubygem-librarian/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-librarianp/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-libyajl2/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	APACHE20
11
LICENSE=	APACHE20
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)devel/rubygem-licensee/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/licensee
21
PLIST_FILES=	bin/licensee
23
22
(-)devel/rubygem-listen/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/listen
23
PLIST_FILES=	bin/listen
25
24
(-)devel/rubygem-little-plugger/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-locale/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-lockfile/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/rlock
18
PLIST_FILES=	bin/rlock
20
19
(-)devel/rubygem-logging/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-logster/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-loquacious/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-lru_redux/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-lumberjack/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-main/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)devel/rubygem-map/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-memoist/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCHI=	yes
15
NO_ARCHI=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-memoizable/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-memoize/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-mercenary/Makefile (-3 / +1 lines)
Lines 13-21 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist shebangfix
17
RUBYGEM_AUTOPLIST=	yes
18
USES=		shebangfix
19
SHEBANG_FILES=	script/console script/examples
17
SHEBANG_FILES=	script/console script/examples
20
18
21
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-message_bus/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-metaclass/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-metaid/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
11
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)devel/rubygem-method_source/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-minitest/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-minitest4/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=		yes
17
USE_RUBY=		yes
18
USE_RUBYGEMS=		yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-mixlib-authentication/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-mixlib-cli/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-mixlib-config/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-mixlib-log/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-mixlib-shellout/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-mkrf/Makefile (-3 / +1 lines)
Lines 11-20 Link Here
11
11
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USES=		python
15
USE_RUBY=	yes
14
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
17
USE_RAKE=	yes
15
USE_RAKE=	yes
18
RUBYGEM_AUTOPLIST=	yes
16
USES=		gem:autoplist python
19
17
20
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-mocha/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-moneta/Makefile (-4 / +2 lines)
Lines 12-25 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USES=		shebangfix
15
USE_RUBY=	yes
16
USES=		gem:autoplist shebangfix
16
SHEBANG_FILES=	script/install-kyotocabinet \
17
SHEBANG_FILES=	script/install-kyotocabinet \
17
		script/kill-travis \
18
		script/kill-travis \
18
		script/start-services \
19
		script/start-services \
19
		script/upload-bundle \
20
		script/upload-bundle \
20
		script/wait-services
21
		script/wait-services
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
23
RUBYGEM_AUTOPLIST=	yes
24
22
25
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-moneta06/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-mongo/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/mongo_console
21
PLIST_FILES=	bin/mongo_console
23
22
(-)devel/rubygem-msgpack/Makefile (-2 / +1 lines)
Lines 11-18 Link Here
11
LICENSE=	APACHE20
11
LICENSE=	APACHE20
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
STRIPDIR=	${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}
15
STRIPDIR=	${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}
17
16
18
post-install:
17
post-install:
(-)devel/rubygem-mspec/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/mkspec bin/mspec bin/mspec-ci bin/mspec-run bin/mspec-tag
19
PLIST_FILES=	bin/mkspec bin/mspec bin/mspec-ci bin/mspec-run bin/mspec-tag
21
20
(-)devel/rubygem-multi_json/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
JSON_RUN_DEPENDS=	rubygem-json>=0:devel/rubygem-json
25
JSON_RUN_DEPENDS=	rubygem-json>=0:devel/rubygem-json
27
JSON_PURE_RUN_DEPENDS=	rubygem-json_pure>=0:devel/rubygem-json_pure
26
JSON_PURE_RUN_DEPENDS=	rubygem-json_pure>=0:devel/rubygem-json_pure
(-)devel/rubygem-multi_test/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=	yes
19
USES=		shebangfix
20
SHEBANG_FILES=	test/all test/run
18
SHEBANG_FILES=	test/all test/run
21
19
22
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-murmurhash3/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
COMMENT=	Implementation of murmur3 hashing function
10
COMMENT=	Implementation of murmur3 hashing function
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)devel/rubygem-mustache/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/mustache
18
PLIST_FILES=	bin/mustache
20
19
(-)devel/rubygem-mutter/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-naught/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-needle/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-nenv/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-nesty/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-netaddr/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-newrelic-grape/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-newrelic_rpm/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		shebangfix
23
SHEBANG_FILES=	test/script/*.sh
21
SHEBANG_FILES=	test/script/*.sh
24
22
25
PLIST_FILES=	bin/mongrel_rpm bin/newrelic bin/newrelic_cmd bin/nrdebug
23
PLIST_FILES=	bin/mongrel_rpm bin/newrelic bin/newrelic_cmd bin/nrdebug
(-)devel/rubygem-nice-ffi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-nio4r/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-nori/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-notiffany/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-notify/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/notify
19
PLIST_FILES=	bin/notify
21
20
(-)devel/rubygem-nprogress-rails/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-octopress-hooks/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-oj/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-omniauth_crowd/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-open3_backport/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-open4/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-orm_adapter/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-p4ruby/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
RUN_DEPENDS:=	${BUILD_DEPENDS}
14
RUN_DEPENDS:=	${BUILD_DEPENDS}
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
CONFIGURE_ARGS=	--with-p4api-dir=${LOCALBASE} --with-p4api-lib=${LOCALBASE}/lib/perforce
19
CONFIGURE_ARGS=	--with-p4api-dir=${LOCALBASE} --with-p4api-lib=${LOCALBASE}/lib/perforce
21
20
(-)devel/rubygem-paint/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-paperclip/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-parser/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/ruby-parse bin/ruby-rewrite
20
PLIST_FILES=	bin/ruby-parse bin/ruby-rewrite
22
21
(-)devel/rubygem-piston/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
PLIST_FILES=	bin/piston
16
PLIST_FILES=	bin/piston
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-pkg-config/Makefile (-3 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist pkgconfig
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		pkgconfig
21
19
22
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-platform/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-plist/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-pluggaloid/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-polyamorous/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-polyglot/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-popen4/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
20
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
GEM_NAME=	POpen4-${PORTVERSION}
23
GEM_NAME=	POpen4-${PORTVERSION}
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-posix-spawn/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
PLIST_FILES=	bin/posix-spawn-benchmark
17
PLIST_FILES=	bin/posix-spawn-benchmark
19
18
(-)devel/rubygem-power_assert/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-powerbar/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/powerbar-demo
20
PLIST_FILES=	bin/powerbar-demo
22
21
(-)devel/rubygem-powerpack/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-progressbar/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-protected_attributes/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-prototype-rails/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-pry/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
PLIST_FILES=	bin/pry
24
PLIST_FILES=	bin/pry
26
25
(-)devel/rubygem-pry-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-pry-remote-em/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/pry-remote-em
23
PLIST_FILES=	bin/pry-remote-em
25
24
(-)devel/rubygem-ptreloaded/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
20
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)devel/rubygem-pygments.rb/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-r18n-core/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-racc/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LICENSE=	LGPL21
12
LICENSE=	LGPL21
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
PLIST_FILES=	bin/racc bin/racc2y bin/y2racc
16
PLIST_FILES=	bin/racc bin/racc2y bin/y2racc
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-rack-mini-profiler/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-rack-raw-upload/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-rails-deprecated_sanitizer/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-rails-observers/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-rainbow/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-rake/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/rake
19
PLIST_FILES=	bin/rake
21
20
(-)devel/rubygem-rake-compiler/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/rake-compiler
20
PLIST_FILES=	bin/rake-compiler
22
21
(-)devel/rubygem-ransack/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-rapt/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/rapt
19
PLIST_FILES=	bin/rapt
21
20
(-)devel/rubygem-rash/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rb-fsevent/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-rb-inotify/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rb-kqueue/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-rbtrace/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
		rubygem-trollop>=1.16.2:devel/rubygem-trollop
18
		rubygem-trollop>=1.16.2:devel/rubygem-trollop
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/rbtrace
23
PLIST_FILES=	bin/rbtrace
25
24
(-)devel/rubygem-rdoc/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
post-install:
21
post-install:
23
	${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
22
	${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
(-)devel/rubygem-rdoc3/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
post-install:
22
post-install:
24
	${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
23
	${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
(-)devel/rubygem-readwritesettings/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-recaptcha/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-redis-activesupport/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-redis-store/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-redmine_plugin_support/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ref/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-request_store/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-require_all/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-retryable/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-rgl/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-rodzilla/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-rotp/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/rotp
18
PLIST_FILES=	bin/rotp
20
19
(-)devel/rubygem-rr/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-rrd-ffi/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rscm/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-rspec/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-rspec-core/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/rspec
21
PLIST_FILES=	bin/rspec
23
22
(-)devel/rubygem-rspec-expectations/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rspec-logsplit/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-rspec-mocks/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rspec-rails/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)devel/rubygem-rspec-support/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-rubigen/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/install_rubigen_scripts \
21
PLIST_FILES=	bin/install_rubigen_scripts \
23
		bin/ruby_app \
22
		bin/ruby_app \
(-)devel/rubygem-rubocop/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
PLIST_FILES=	bin/rubocop
24
PLIST_FILES=	bin/rubocop
26
25
(-)devel/rubygem-ruby-atmos-pure/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-ruby-bugzilla/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/bzconsole
22
PLIST_FILES=	bin/bzconsole
24
23
(-)devel/rubygem-ruby-filemagic/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_COMB=	dual
13
LICENSE_COMB=	dual
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-ruby-fogbugz/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ruby-libvirt/Makefile (-4 / +1 lines)
Lines 13-22 Link Here
13
13
14
LIB_DEPENDS=	libvirt.so:devel/libvirt
14
LIB_DEPENDS=	libvirt.so:devel/libvirt
15
15
16
USES=		pkgconfig
17
18
USE_RUBY=	yes
16
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist pkgconfig
20
RUBYGEM_AUTOPLIST=	yes
21
18
22
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-ruby-ole/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	bin/oletool \
20
SHEBANG_FILES=	bin/oletool \
23
		test/*.rb
21
		test/*.rb
24
22
(-)devel/rubygem-ruby-prof/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/ruby-prof bin/ruby-prof-check-trace
18
PLIST_FILES=	bin/ruby-prof bin/ruby-prof-check-trace
20
19
(-)devel/rubygem-ruby-progressbar/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-ruby-sdl-ffi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-ruby2ruby/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
20
23
PLIST_FILES=	bin/r2r_show
21
PLIST_FILES=	bin/r2r_show
24
22
(-)devel/rubygem-ruby_parser/Makefile (-4 / +2 lines)
Lines 13-25 Link Here
13
13
14
RUN_DEPENDS=	rubygem-sexp_processor>=4.1:devel/rubygem-sexp_processor
14
RUN_DEPENDS=	rubygem-sexp_processor>=4.1:devel/rubygem-sexp_processor
15
15
16
USES=		shebangfix
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist shebangfix
19
NO_ARCH=	yes
20
SHEBANG_FILES=	bin/ruby_parse*
19
SHEBANG_FILES=	bin/ruby_parse*
21
20
22
RUBYGEM_AUTOPLIST=	yes
23
PLIST_FILES=	bin/ruby_parse \
21
PLIST_FILES=	bin/ruby_parse \
24
		bin/ruby_parse_extract_error
22
		bin/ruby_parse_extract_error
25
23
(-)devel/rubygem-rubygame/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
USE_SDL=	gfx image mixer ttf
21
USE_SDL=	gfx image mixer ttf
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-rubygems-mirror/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-rubygems-tasks/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-rubygems-test/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-rubyinline/Makefile (-3 / +1 lines)
Lines 20-28 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist shebangfix
24
RUBYGEM_AUTOPLIST=	yes
25
USES=		shebangfix
26
SHEBANG_FILES=	tutorial/example1.rb \
24
SHEBANG_FILES=	tutorial/example1.rb \
27
		tutorial/example2.rb
25
		tutorial/example2.rb
28
26
(-)devel/rubygem-rubyinlineaccel/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)devel/rubygem-rubytree/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
21
USE_RUBY_RDOC=	yes
20
USE_RUBY_RDOC=	yes
22
RUBYGEM_AUTOPLIST=	yes
21
USES=		gem:autoplist
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-rufus-scheduler/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-rugged/Makefile (-3 / +1 lines)
Lines 18-25 Link Here
18
18
19
CONFIGURE_ARGS=	--use-system-libraries
19
CONFIGURE_ARGS=	--use-system-libraries
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist pkgconfig
22
RUBYGEM_AUTOPLIST=	yes
23
USES=		pkgconfig
24
22
25
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-runt/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-ruport/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-safe_yaml/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	bundle_install_all_ruby_versions.sh \
20
SHEBANG_FILES=	bundle_install_all_ruby_versions.sh \
23
		run_specs_all_ruby_versions.sh
21
		run_specs_all_ruby_versions.sh
24
PLIST_FILES=	bin/safe_yaml
22
PLIST_FILES=	bin/safe_yaml
(-)devel/rubygem-sdoc/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/sdoc bin/sdoc-merge
21
PLIST_FILES=	bin/sdoc bin/sdoc-merge
23
22
(-)devel/rubygem-semantic_puppet/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-semi_semantic/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-sentry-raven/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-sequel/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/sequel
19
PLIST_FILES=	bin/sequel
21
20
(-)devel/rubygem-sequel3/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/sequel
23
PLIST_FILES=	bin/sequel
25
24
(-)devel/rubygem-settingslogic/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-sexp_processor/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-shoulda/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-shoulda-context/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/convert_to_should_syntax
19
PLIST_FILES=	bin/convert_to_should_syntax
21
20
(-)devel/rubygem-shoulda-matchers/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
20
23
SHEBANG_FILES=	script/*
21
SHEBANG_FILES=	script/*
24
22
(-)devel/rubygem-sidekiq/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/sidekiq bin/sidekiqctl
23
PLIST_FILES=	bin/sidekiq bin/sidekiqctl
25
24
(-)devel/rubygem-sidekiq-cron/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-sidetiq/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)devel/rubygem-sigdump/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-simple_form/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-simplecov/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-slack-notifier/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-slim/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/slimrb
21
PLIST_FILES=	bin/slimrb
23
22
(-)devel/rubygem-slop/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-slop3/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-soap4r/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/wsdl2ruby.rb bin/xsd2ruby.rb
21
PLIST_FILES=	bin/wsdl2ruby.rb bin/xsd2ruby.rb
23
22
(-)devel/rubygem-spring/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/spring
19
PLIST_FILES=	bin/spring
21
20
(-)devel/rubygem-sprockets/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PLIST_FILES=	bin/sprockets
25
PLIST_FILES=	bin/sprockets
27
26
(-)devel/rubygem-sprockets-helpers/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-sprockets-rails/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-sprockets-sass/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-sprockets211/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES=	bin/sprockets
27
PLIST_FILES=	bin/sprockets
29
28
(-)devel/rubygem-sprockets22/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PORTSCOUT=	limit:^2\.2
25
PORTSCOUT=	limit:^2\.2
27
26
(-)devel/rubygem-sprockets3/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
post-install:
23
post-install:
25
	@${RM} ${STAGEDIR}${PREFIX}/bin/sprockets
24
	@${RM} ${STAGEDIR}${PREFIX}/bin/sprockets
(-)devel/rubygem-spruz/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/enum
19
PLIST_FILES=	bin/enum
21
20
(-)devel/rubygem-state_machine/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-state_machines/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-statsd/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/statsd
21
PLIST_FILES=	bin/statsd
23
22
(-)devel/rubygem-stella/Makefile (-3 / +1 lines)
Lines 26-34 Link Here
26
26
27
NO_ARCH=	yes
27
NO_ARCH=	yes
28
USE_RUBY=	yes
28
USE_RUBY=	yes
29
USE_RUBYGEMS=	yes
29
USES=		gem:autoplist shebangfix
30
RUBYGEM_AUTOPLIST=	yes
31
USES=		shebangfix
32
30
33
PLIST_FILES=	bin/stella
31
PLIST_FILES=	bin/stella
34
32
(-)devel/rubygem-stemmer/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-stomp/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/catstomp bin/stompcat
18
PLIST_FILES=	bin/catstomp bin/stompcat
20
19
(-)devel/rubygem-storable/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-stream/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-streetaddress/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-stringex/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-structured_warnings/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-subexec/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-sugar-high/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-sumbur/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
COMMENT=	Consistent spreading for server balancing
10
COMMENT=	Consistent spreading for server balancing
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)devel/rubygem-sundawg_country_codes/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-svn2git/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
PLIST_FILES=	bin/svn2git
21
PLIST_FILES=	bin/svn2git
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-sysinfo/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		shebangfix
23
SHEBANG_FILES=	bin/sysinfo
21
SHEBANG_FILES=	bin/sysinfo
24
22
25
PLIST_FILES=	bin/sysinfo
23
PLIST_FILES=	bin/sysinfo
(-)devel/rubygem-systemu/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-table_print/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-tdiff/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-templater/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-temple/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-term-ansicolor/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/colortab bin/term_display bin/term_cdiff bin/term_decolor bin/term_mandel
21
PLIST_FILES=	bin/colortab bin/term_display bin/term_cdiff bin/term_decolor bin/term_mandel
23
22
(-)devel/rubygem-test-unit/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)devel/rubygem-thor/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/thor
18
PLIST_FILES=	bin/thor
20
19
(-)devel/rubygem-thread_safe/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-thread_safe1/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PORTSCOUT=	limit:^0\.1
21
PORTSCOUT=	limit:^0\.1
23
22
(-)devel/rubygem-thrift/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE=	APACHE20
13
LICENSE=	APACHE20
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
# Workaround for stage-qa:
18
# Workaround for stage-qa:
20
post-install:
19
post-install:
(-)devel/rubygem-tilt/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/tilt
18
PLIST_FILES=	bin/tilt
20
19
(-)devel/rubygem-tilt1/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PORTSCOUT=	limit:^1\.
19
PORTSCOUT=	limit:^1\.
21
20
(-)devel/rubygem-timers/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-tins/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-titlecase/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-toml/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-transaction-simple/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-travis/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
PLIST_FILES=	bin/travis
28
PLIST_FILES=	bin/travis
30
29
(-)devel/rubygem-treetop/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/tt
21
PLIST_FILES=	bin/tt
23
22
(-)devel/rubygem-trollop/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-trollop1/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-turn/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/turn
22
PLIST_FILES=	bin/turn
24
23
(-)devel/rubygem-typed-array/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-tzinfo/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)devel/rubygem-tzinfo03/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-unicode/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
COMMENT=	Unicode string manipulation library for Ruby
10
COMMENT=	Unicode string manipulation library for Ruby
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=	yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)devel/rubygem-unicode-display_width/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-uuid/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/uuid
20
PLIST_FILES=	bin/uuid
22
21
(-)devel/rubygem-uuidtools/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)devel/rubygem-validatable/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)devel/rubygem-versionomy/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-virtus/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-warbler/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PLIST_FILES=	bin/warble
26
PLIST_FILES=	bin/warble
28
27
(-)devel/rubygem-warden/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)devel/rubygem-wdm/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-web-console/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/rubygem-webby/Makefile (-2 / +1 lines)
Lines 22-30 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
26
USE_RAKE=	yes
25
USE_RAKE=	yes
27
RUBYGEM_AUTOPLIST=	yes
26
USES=		gem:autoplist
28
PLIST_FILES=	bin/webby bin/webby-gen
27
PLIST_FILES=	bin/webby bin/webby-gen
29
28
30
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)devel/rubygem-wmi-lite/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-xpath/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-yajl-ruby/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)devel/rubygem-yui-compressor/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/rubygem-zentest/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/autotest \
22
PLIST_FILES=	bin/autotest \
24
		bin/multigem \
23
		bin/multigem \
(-)dns/rubygem-dnsruby/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)dns/rubygem-net-dns/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)dns/rubygem-public_suffix/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
post-patch:
22
post-patch:
24
	@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/data/definitions.txt
23
	@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/data/definitions.txt
(-)dns/rubygem-public_suffix_service/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
post-patch:
22
post-patch:
24
	@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/lib/public_suffix/definitions.txt
23
	@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/lib/public_suffix/definitions.txt
(-)emulators/rubygem-fission/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/fission
21
PLIST_FILES=	bin/fission
23
22
(-)finance/rubygem-money/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)ftp/rubygem-curb/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
LIB_DEPENDS=	libcurl.so:ftp/curl
15
LIB_DEPENDS=	libcurl.so:ftp/curl
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)games/lolcat/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/lolcat
20
PLIST_FILES=	bin/lolcat
22
21
(-)games/rubygem-fortune_gem/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
PLIST_FILES=	bin/fortune_gem
16
PLIST_FILES=	bin/fortune_gem
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)graphics/rubygem-cairo/Makefile (-3 / +1 lines)
Lines 14-23 Link Here
14
14
15
RUN_DEPENDS=	rubygem-pkg-config>=1.1.5:devel/rubygem-pkg-config
15
RUN_DEPENDS=	rubygem-pkg-config>=1.1.5:devel/rubygem-pkg-config
16
16
17
USES=		pkgconfig
18
USE_GNOME=	cairo
17
USE_GNOME=	cairo
19
USE_RUBY=	yes
18
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist pkgconfig
21
RUBYGEM_AUTOPLIST=	yes
22
20
23
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-captcha/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-chunky_png/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-clutter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)graphics/rubygem-clutter-gtk/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-dragonfly/Makefile (-3 / +1 lines)
Lines 19-27 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist shebangfix
23
RUBYGEM_AUTOPLIST=	yes
24
USES=		shebangfix
25
23
26
SHEBANG_FILES=	dev/test_rails
24
SHEBANG_FILES=	dev/test_rails
27
ruby_OLD_CMD=	"env ruby"
25
ruby_OLD_CMD=	"env ruby"
(-)graphics/rubygem-emoji/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-exifr/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/exifr
18
PLIST_FILES=	bin/exifr
20
19
(-)graphics/rubygem-ezprint/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)graphics/rubygem-fastimage/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-flamegraph/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-gd2/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
post-patch:
22
post-patch:
24
	@${REINPLACE_CMD} 's|libgd.so.2|libgd.so.5|' ${WRKSRC}/lib/gd2.rb
23
	@${REINPLACE_CMD} 's|libgd.so.2|libgd.so.5|' ${WRKSRC}/lib/gd2.rb
(-)graphics/rubygem-gdk_pixbuf2/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	gdkpixbuf2
15
USE_GNOME=	gdkpixbuf2
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)graphics/rubygem-gemojione/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-geokit/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)graphics/rubygem-gitlab_emoji/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-goocanvas/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
		rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3
16
		rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-gruff/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		shebangfix
23
SHEBANG_FILES=	test/image_compare.rb
21
SHEBANG_FILES=	test/image_compare.rb
24
ruby_OLD_CMD=	ruby
22
ruby_OLD_CMD=	ruby
25
23
(-)graphics/rubygem-image_science/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/image_science_thumb
22
PLIST_FILES=	bin/image_science_thumb
24
23
(-)graphics/rubygem-imagesize/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-mini_magick/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
X11_RUN_DEPENDS=	convert:graphics/ImageMagick
21
X11_RUN_DEPENDS=	convert:graphics/ImageMagick
23
X11_RUN_DEPENDS_OFF=	convert:graphics/ImageMagick-nox11
22
X11_RUN_DEPENDS_OFF=	convert:graphics/ImageMagick-nox11
(-)graphics/rubygem-objectdetect/Makefile (-3 / +1 lines)
Lines 14-23 Link Here
14
14
15
LIB_DEPENDS=	libopencv_legacy.so:graphics/opencv
15
LIB_DEPENDS=	libopencv_legacy.so:graphics/opencv
16
16
17
USES=		pkgconfig
18
USE_RUBY=	yes
17
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist pkgconfig
20
RUBYGEM_AUTOPLIST=	yes
21
19
22
post-patch:
20
post-patch:
23
	${REINPLACE_CMD} -E 's|(objectdetect)|\1/version|' ${WRKSRC}/test/test_helper.rb
21
	${REINPLACE_CMD} -E 's|(objectdetect)|\1/version|' ${WRKSRC}/test/test_helper.rb
(-)graphics/rubygem-opengl/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
USE_GL=		glut
16
USE_GL=		glut
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-pdfkit/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)graphics/rubygem-png/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-railroad/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/railroad
20
PLIST_FILES=	bin/railroad
22
21
(-)graphics/rubygem-rmagick/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
OPTIONS_DEFAULT=X11
14
OPTIONS_DEFAULT=X11
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist pkgconfig
18
RUBYGEM_AUTOPLIST=	yes
19
USES=		pkgconfig
20
18
21
X11_LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick
19
X11_LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick
22
X11_LIB_DEPENDS_OFF=	libMagickWand-6.so:graphics/ImageMagick-nox11
20
X11_LIB_DEPENDS_OFF=	libMagickWand-6.so:graphics/ImageMagick-nox11
(-)graphics/rubygem-rsvg2/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
USE_GNOME=	librsvg2
16
USE_GNOME=	librsvg2
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)graphics/rubygem-ruby-graphviz/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/dot2ruby bin/gem2gv bin/git2gv bin/ruby2gv bin/xml2gv
21
PLIST_FILES=	bin/dot2ruby bin/gem2gv bin/git2gv bin/ruby2gv bin/xml2gv
23
22
(-)graphics/rubygem-scruffy/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
post-patch:
20
post-patch:
22
	@${REINPLACE_CMD} -e 's|#{options|0 0 #{options|' ${WRKSRC}/lib/scruffy/renderers/base.rb
21
	@${REINPLACE_CMD} -e 's|#{options|0 0 #{options|' ${WRKSRC}/lib/scruffy/renderers/base.rb
(-)irc/rubygem-cinch/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)irc/rubygem-cogbot/Makefile (-2 / +1 lines)
Lines 24-31 Link Here
24
24
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
USE_RUBY=	yes
26
USE_RUBY=	yes
27
USE_RUBYGEMS=	yes
27
USES=		gem:autoplist
28
RUBYGEM_AUTOPLIST=	yes
29
28
30
PLIST_FILES=	bin/cogbot
29
PLIST_FILES=	bin/cogbot
31
30
(-)irc/rubygem-lita-irc/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)irc/rubygem-net-irc/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)japanese/rubygem-jpmobile/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
BROKEN_RUBY23=	yes
22
BROKEN_RUBY23=	yes
24
23
(-)japanese/rubygem-jpmobile-ipaddresses/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.pre.mk>
19
.include <bsd.port.pre.mk>
21
20
(-)japanese/rubygem-jpmobile-terminfo/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.pre.mk>
19
.include <bsd.port.pre.mk>
21
20
(-)japanese/rubygem-jpmobile4/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
OPTIONS_DEFINE=		GEOKIT IPADDRESSES TERMINFO
22
OPTIONS_DEFINE=		GEOKIT IPADDRESSES TERMINFO
24
GEOKIT_DESC=		Run with geokit
23
GEOKIT_DESC=		Run with geokit
(-)japanese/rubygem-mail-iso-2022-jp/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.pre.mk>
19
.include <bsd.port.pre.mk>
21
20
(-)japanese/rubygem-myrurema/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/rurema
18
PLIST_FILES=	bin/rurema
20
19
(-)java/rubygem-rjb/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=yes
18
USE_JAVA=	yes
17
USE_JAVA=	yes
19
GEM_ENV=	JAVA_HOME=${JAVA_HOME}
18
GEM_ENV=	JAVA_HOME=${JAVA_HOME}
20
19
(-)mail/rubygem-actionmailer/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-actionmailer4/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)mail/rubygem-email_reply_parser/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)mail/rubygem-email_reply_parser-discourse/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)mail/rubygem-exception_notification/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-larch/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PLIST_FILES=	bin/larch
25
PLIST_FILES=	bin/larch
27
26
(-)mail/rubygem-mail/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-mail25/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PORTSCOUT=      limit:^2\.5
25
PORTSCOUT=      limit:^2\.5
27
26
(-)mail/rubygem-mail_room/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/mail_room
18
PLIST_FILES=	bin/mail_room
20
19
(-)mail/rubygem-mailboxer/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)mail/rubygem-mailfactory/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-pony/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)mail/rubygem-premailer/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/premailer
22
PLIST_FILES=	bin/premailer
24
23
(-)mail/rubygem-premailer-rails/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-rmail/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)mail/rubygem-roadie/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)mail/rubygem-roadie-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)mail/rubygem-ruby-qmail/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)mail/rubygem-tmail/Makefile (-2 / +1 lines)
Lines 10-16 Link Here
10
COMMENT=	RFC2822/MIME compliant mail manipulating library for Ruby
10
COMMENT=	RFC2822/MIME compliant mail manipulating library for Ruby
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RUBYGEMS=	yes
13
USES=		gem:autoplist
14
RUBYGEM_AUTOPLIST=  yes
15
14
16
.include <bsd.port.mk>
15
.include <bsd.port.mk>
(-)mail/rubygem-vmail/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES=	bin/vmail bin/vmail_client bin/vmailsend
27
PLIST_FILES=	bin/vmail bin/vmail_client bin/vmailsend
29
28
(-)math/rubygem-expression_parser/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
NO_ARCH=	yes
11
NO_ARCH=	yes
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)math/rubygem-fftw3/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RAKE=	yes
16
USE_RAKE=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)math/rubygem-narray/Makefile (-2 / +1 lines)
Lines 11-18 Link Here
11
11
12
USE_RUBY=	yes
12
USE_RUBY=	yes
13
USE_RAKE=	yes
13
USE_RAKE=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include "${.CURDIR}/Makefile.version"
16
.include "${.CURDIR}/Makefile.version"
18
17
(-)math/rubygem-narray_miss/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RAKE=	yes
15
USE_RAKE=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)math/rubygem-numru-misc/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RAKE=	yes
16
USE_RAKE=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)math/rubygem-numru-units/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RAKE=	yes
15
USE_RAKE=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)math/rubygem-rb-gsl/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
RUN_DEPENDS=	rubygem-narray>=0.5.9:math/rubygem-narray
15
RUN_DEPENDS=	rubygem-narray>=0.5.9:math/rubygem-narray
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)misc/rubygem-dotenv/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/dotenv
18
PLIST_FILES=	bin/dotenv
20
19
(-)misc/rubygem-iesd/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/iesd
18
PLIST_FILES=	bin/iesd
20
19
(-)misc/rubygem-mime-types/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)misc/rubygem-mime-types-data/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)misc/rubygem-mime-types1/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PORTSCOUT=	limit:^1\.
20
PORTSCOUT=	limit:^1\.
22
21
(-)misc/rubygem-mimemagic/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)misc/rubygem-rabbit/Makefile (-3 / +1 lines)
Lines 26-35 Link Here
26
		rubygem-rttool>0:textproc/rubygem-rttool
26
		rubygem-rttool>0:textproc/rubygem-rttool
27
27
28
NO_ARCH=	yes
28
NO_ARCH=	yes
29
USES=		gettext
30
USE_RUBY=	yes
29
USE_RUBY=	yes
31
USE_RUBYGEMS=	yes
30
USES=		gem:autoplist gettext
32
RUBYGEM_AUTOPLIST=	yes
33
PLIST_FILES=	bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \
31
PLIST_FILES=	bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \
34
		bin/rabbit-theme
32
		bin/rabbit-theme
35
33
(-)misc/rubygem-vpim/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/reminder bin/rrule
20
PLIST_FILES=	bin/reminder bin/rrule
22
21
(-)multimedia/rubygem-clutter-gstreamer/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)multimedia/rubygem-flvtool2/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/flvtool2
19
PLIST_FILES=	bin/flvtool2
21
20
(-)multimedia/rubygem-gstreamer/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
		rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
15
		rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-amazon-ec2/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
PLIST_FILES=	bin/awshell bin/ec2-gem-example.rb bin/ec2-gem-profile.rb bin/ec2sh bin/setup.rb
18
PLIST_FILES=	bin/awshell bin/ec2-gem-example.rb bin/ec2-gem-profile.rb bin/ec2sh bin/setup.rb
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-amq-protocol/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-amqp/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-amqp-utils/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=		yes
23
NO_ARCH=		yes
24
USE_RUBY=		yes
24
USE_RUBY=		yes
25
USE_RUBYGEMS=		yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES+=	bin/amqp-deleteq bin/amqp-dequeue bin/amqp-enqueue bin/amqp-peek bin/amqp-pop \
27
PLIST_FILES+=	bin/amqp-deleteq bin/amqp-dequeue bin/amqp-enqueue bin/amqp-peek bin/amqp-pop \
29
		bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \
28
		bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \
(-)net/rubygem-aws-s3/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
PLIST_FILES=	bin/s3sh
20
PLIST_FILES=	bin/s3sh
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-aws-ses/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-bunny/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-connection_pool/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-dogapi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-domain_name/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-dropbox-sdk/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-epp-client-afnic/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
		rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
18
		rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-epp-client-base/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-epp-client-rgp/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-epp-client-secdns/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
15
		rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-epp-client-smallregistry/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
		rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
17
		rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-aliyun/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-fog-atmos/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-aws/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-fog-brightbox/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-cloudatcost/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-fog-dynect/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-ecloud/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-google/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-local/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-fog-openstack/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-fog-powerdns/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-profitbricks/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-rackspace/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-fog-radosgw/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-riakcs/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-fog-sakuracloud/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-serverlove/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-softlayer/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-storm_on_demand/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-terremark/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-vmfusion/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-voxel/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-vsphere/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-fog-xenserver/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-geoip/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/geoip
21
PLIST_FILES=	bin/geoip
23
22
(-)net/rubygem-gitlab_omniauth-ldap/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-http_parser.rb/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)net/rubygem-httpauth/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-ipaddress/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-iproto/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-lita-gems/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-macaddr/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-net-ldap/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-net-netrc/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-net-ping/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	APACHE20
11
LICENSE=	APACHE20
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)net/rubygem-netrc/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-network_interface/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	MIT
11
LICENSE=	MIT
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)net/rubygem-oauth/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/oauth
19
PLIST_FILES=	bin/oauth
21
20
(-)net/rubygem-oauth2/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)net/rubygem-octokit/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-octopress-deploy/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-omniauth-auth0/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-omniauth-azure-oauth2/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-omniauth-facebook/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-omniauth-github/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-omniauth-github-discourse/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-omniauth-google-oauth2/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-omniauth-oauth/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-omniauth-oauth2/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-omniauth-openid/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-omniauth-twitter/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-open-uri-cached/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-opennebula/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)net/rubygem-packetfu/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=yes
19
USES=		shebangfix
20
SHEBANG_FILES=	test/func_lldp.rb
18
SHEBANG_FILES=	test/func_lldp.rb
21
19
22
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-pcaprub/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
LICENSE=	LGPL21
11
LICENSE=	LGPL21
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)net/rubygem-rabbiter/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
PLIST_FILES=	bin/rabbiter
22
PLIST_FILES=	bin/rabbiter
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-rbvmomi/Makefile (-3 / +1 lines)
Lines 19-27 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist shebangfix
23
RUBYGEM_AUTOPLIST=	yes
24
USES=		shebangfix
25
SHEBANG_FILES=	examples/run.sh
23
SHEBANG_FILES=	examples/run.sh
26
24
27
PLIST_FILES=	bin/rbvmomish
25
PLIST_FILES=	bin/rbvmomish
(-)net/rubygem-right_aws/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
OPTIONS_DEFINE=	LIBXML
22
OPTIONS_DEFINE=	LIBXML
24
LIBXML_DESC=	Use libxml instead of REXML
23
LIBXML_DESC=	Use libxml instead of REXML
(-)net/rubygem-right_flexiscale/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-right_gogrid/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net/rubygem-right_http_connection/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-right_slicehost/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-rsync/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-ruby-growl/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/growl
22
PLIST_FILES=	bin/growl
24
23
(-)net/rubygem-ruby-openid/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)net/rubygem-ruby-yadis/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)net/rubygem-rubyntlm/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-rubytter/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)net/rubygem-rudy/Makefile (-3 / +1 lines)
Lines 26-35 Link Here
26
		rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo
26
		rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo
27
27
28
USE_RUBY=	yes
28
USE_RUBY=	yes
29
USE_RUBYGEMS=	yes
29
USES=		gem:autoplist shebangfix
30
RUBYGEM_AUTOPLIST=	yes
31
PLIST_FILES=	bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb
30
PLIST_FILES=	bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb
32
USES=		shebangfix
33
SHEBANG_FILES=	bin/* tryouts/exploration/machine.rb
31
SHEBANG_FILES=	bin/* tryouts/exploration/machine.rb
34
NO_ARCH=	yes
32
NO_ARCH=	yes
35
33
(-)net/rubygem-rye/Makefile (-3 / +1 lines)
Lines 22-30 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist shebangfix
26
RUBYGEM_AUTOPLIST=	yes
27
USES=		shebangfix
28
SHEBANG_FILES=	try/*.rb tst/*.rb
26
SHEBANG_FILES=	try/*.rb tst/*.rb
29
27
30
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)net/rubygem-simple_oauth/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-stompserver/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/stompserver
22
PLIST_FILES=	bin/stompserver
24
23
(-)net/rubygem-t/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
PLIST_FILES=	bin/t
28
PLIST_FILES=	bin/t
30
29
(-)net/rubygem-tweetstream/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)net/rubygem-twitter/Makefile (-2 / +1 lines)
Lines 25-31 Link Here
25
25
26
NO_ARCH=	yes
26
NO_ARCH=	yes
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)net/rubygem-twitter-stream/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)net/rubygem-twitter4r/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/t4r-oauth-access bin/t4rsh
22
PLIST_FILES=	bin/t4r-oauth-access bin/t4rsh
24
23
(-)net/rubygem-uri-redis/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)net/rubygem-whois/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/whoisrb
21
PLIST_FILES=	bin/whoisrb
23
22
(-)net-im/rubygem-earthquake/Makefile (-2 / +1 lines)
Lines 25-32 Link Here
25
25
26
NO_ARCH=	yes
26
NO_ARCH=	yes
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
PLIST_FILES=	bin/earthquake
30
PLIST_FILES=	bin/earthquake
32
31
(-)net-im/rubygem-hipchat/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)net-im/rubygem-lita/Makefile (-2 / +1 lines)
Lines 26-33 Link Here
26
26
27
NO_ARCH=	yes
27
NO_ARCH=	yes
28
USE_RUBY=	yes
28
USE_RUBY=	yes
29
USE_RUBYGEMS=	yes
29
USES=		gem:autoplist
30
RUBYGEM_AUTOPLIST=	yes
31
30
32
PLIST_FILES=	bin/lita
31
PLIST_FILES=	bin/lita
33
32
(-)net-im/rubygem-termtter/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
PLIST_FILES=	bin/termtter bin/termtter_frame
28
PLIST_FILES=	bin/termtter bin/termtter_frame
30
29
(-)net-im/rubygem-tinder/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)net-mgmt/rubygem-blimpy/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/blimpy
23
PLIST_FILES=	bin/blimpy
25
24
(-)net-mgmt/rubygem-snmp/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
NO_ARCH=	yes
11
NO_ARCH=	yes
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)net-mgmt/rubygem-visage-app/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PLIST_FILES=	bin/visage-app
25
PLIST_FILES=	bin/visage-app
27
26
(-)print/rubygem-afm/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)print/rubygem-color/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)print/rubygem-color-tools/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)print/rubygem-pdf-core/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)print/rubygem-pdf-reader/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
PLIST_FILES+=	bin/pdf_callbacks bin/pdf_list_callbacks bin/pdf_object bin/pdf_text
25
PLIST_FILES+=	bin/pdf_callbacks bin/pdf_list_callbacks bin/pdf_object bin/pdf_text
27
26
(-)print/rubygem-pdf-writer/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/techbook
21
PLIST_FILES=	bin/techbook
23
22
(-)print/rubygem-prawn/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)print/rubygem-prawn-core/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)print/rubygem-prawn-flexible-table/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)print/rubygem-prawn-format/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)print/rubygem-prawn-graph/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)print/rubygem-prawn-js/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)print/rubygem-prawn-layout/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)print/rubygem-prawn-security/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)print/rubygem-prawn-svg/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)print/rubygem-rbpdf/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)print/rubygem-rbpdf-font/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)print/rubygem-ttfunk/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)russian/rubygem-russian/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
RUN_DEPENDS=	rubygem-i18n>=0.5.0:devel/rubygem-i18n
14
RUN_DEPENDS=	rubygem-i18n>=0.5.0:devel/rubygem-i18n
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)science/rubygem-ai4r/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)science/rubygem-cdo/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)science/rubygem-ruby-dcl/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBY_EXTCONF=	yes
21
USE_RUBY_EXTCONF=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)science/rubygem-ruby-netcdf/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
		rubygem-narray_miss>=0:math/rubygem-narray_miss
14
		rubygem-narray_miss>=0:math/rubygem-narray_miss
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/ruby-hmac/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
COMMENT=	Ruby library which implements the HMAC algorithm
12
COMMENT=	Ruby library which implements the HMAC algorithm
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
GEM_NAME=	${DISTNAME}
16
GEM_NAME=	${DISTNAME}
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)security/rubygem-attr_encrypted/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-bcrypt/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)security/rubygem-bcrypt-ruby/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-devise-two-factor/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)security/rubygem-doorkeeper/Makefile (-2 / +1 lines)
Lines 24-30 Link Here
24
24
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
USE_RUBY=	yes
26
USE_RUBY=	yes
27
USE_RUBYGEMS=	yes
27
USES=		gem:autoplist
28
RUBYGEM_AUTOPLIST=	yes
29
28
30
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)security/rubygem-encryptor/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-ezcrypto/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)security/rubygem-gpgr/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)security/rubygem-gssapi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-jugyo-twitter_oauth/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
22
GEM_NAME=	${PORTNAME}-${DISTVERSION}
21
GEM_NAME=	${PORTNAME}-${DISTVERSION}
23
RUBYGEM_AUTOPLIST=	yes
22
USES=		gem:autoplist
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)security/rubygem-metasploit-concern/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PORTSCOUT=	ignore:1
22
PORTSCOUT=	ignore:1
24
23
(-)security/rubygem-metasploit-credential/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PORTSCOUT=	ignore:1
26
PORTSCOUT=	ignore:1
28
27
(-)security/rubygem-metasploit-model/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PORTSCOUT=	ignore:1
22
PORTSCOUT=	ignore:1
24
23
(-)security/rubygem-metasploit-payloads/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LICENSE_FILE=	${WRKSRC}/LICENSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
PORTSCOUT=	ignore:1
17
PORTSCOUT=	ignore:1
19
18
(-)security/rubygem-metasploit_data_models/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
PLIST_FILES=	bin/mdm_console
27
PLIST_FILES=	bin/mdm_console
29
28
30
PORTSCOUT=	ignore:1
29
PORTSCOUT=	ignore:1
(-)security/rubygem-net-scp/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-net-sftp/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)security/rubygem-net-ssh/Makefile (-3 / +1 lines)
Lines 19-27 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist shebangfix
23
RUBYGEM_AUTOPLIST=	yes
24
USES=		shebangfix
25
SHEBANG_FILES=	support/ssh_tunnel_bug.rb
23
SHEBANG_FILES=	support/ssh_tunnel_bug.rb
26
24
27
PROMPT_PASSPHRASES_RUN_DEPENDS=	rubygem-ruby-termios>=0:comms/rubygem-ruby-termios
25
PROMPT_PASSPHRASES_RUN_DEPENDS=	rubygem-ruby-termios>=0:comms/rubygem-ruby-termios
(-)security/rubygem-net-ssh-gateway/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-net-ssh-multi/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)security/rubygem-nmap-parser/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-omniauth/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-omniauth-bitbucket/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-omniauth-cas3/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)security/rubygem-omniauth-gitlab/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-omniauth-multipassword/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-omniauth-saml/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)security/rubygem-omniauth-shibboleth/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-origami/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=yes
19
USES=		shebangfix
20
SHEBANG_FILES=	samples/actions/launch/calc.rb \
18
SHEBANG_FILES=	samples/actions/launch/calc.rb \
21
		samples/actions/launch/winparams.rb \
19
		samples/actions/launch/winparams.rb \
22
		samples/actions/named/named.rb \
20
		samples/actions/named/named.rb \
(-)security/rubygem-pyu-ruby-sasl/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)security/rubygem-rack-oauth2/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)security/rubygem-razorback-scriptNugget/Makefile (-3 / +1 lines)
Lines 15-23 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=		yes
17
USE_RUBY=		yes
18
USE_RUBYGEMS=		yes
18
USES=		gem:autoplist shebangfix
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		shebangfix
21
SHEBANG_FILES=	lib/razorback.rb
19
SHEBANG_FILES=	lib/razorback.rb
22
20
23
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)security/rubygem-recog/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
14
RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
PLIST_FILES=	bin/recog_export \
18
PLIST_FILES=	bin/recog_export \
20
		bin/recog_match \
19
		bin/recog_match \
21
		bin/recog_verify
20
		bin/recog_verify
(-)security/rubygem-roauth/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)security/rubygem-ruby-hmac/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)security/rubygem-ruby-rc4/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-ruby-saml/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)security/rubygem-scrypt/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
ONLY_FOR_ARCHS=	amd64 i386 ia64
22
ONLY_FOR_ARCHS=	amd64 i386 ia64
24
ONLY_FOR_ARCHS_REASON=	invokes SSE compiler flags
23
ONLY_FOR_ARCHS_REASON=	invokes SSE compiler flags
(-)security/rubygem-six/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)security/rubygem-sshkey/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)security/rubygem-sshkit/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)security/rubygem-twitter_oauth/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)sysutils/puppet-lint/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
PLIST_FILES=	bin/puppet-lint
17
PLIST_FILES=	bin/puppet-lint
19
NO_ARCH=	yes
18
NO_ARCH=	yes
20
19
(-)sysutils/rhc/Makefile (-2 / +1 lines)
Lines 24-31 Link Here
24
24
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
USE_RUBY=	yes
26
USE_RUBY=	yes
27
USE_RUBYGEMS=	yes
27
USES=		gem:autoplist
28
RUBYGEM_AUTOPLIST=	yes
29
28
30
PLIST_FILES=	bin/rhc
29
PLIST_FILES=	bin/rhc
31
30
(-)sysutils/rubygem-SyslogLogger/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)sysutils/rubygem-backup/Makefile (-2 / +1 lines)
Lines 76-83 Link Here
76
76
77
NO_ARCH=	yes
77
NO_ARCH=	yes
78
USE_RUBY=	yes
78
USE_RUBY=	yes
79
USE_RUBYGEMS=	yes
79
USES=		gem:autoplist
80
RUBYGEM_AUTOPLIST=	yes
81
80
82
PLIST_FILES=	bin/backup
81
PLIST_FILES=	bin/backup
83
82
(-)sysutils/rubygem-bosh-gen/Makefile (-3 / +1 lines)
Lines 23-31 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist shebangfix
27
RUBYGEM_AUTOPLIST=	yes
28
USES=		shebangfix
29
SHEBANG_FILES=	lib/bosh/gen/generators/new_release_generator/templates/templates/make_manifest.tt \
27
SHEBANG_FILES=	lib/bosh/gen/generators/new_release_generator/templates/templates/make_manifest.tt \
30
		spec/fixtures/releases/s3test-boshrelease/templates/make_manifest
28
		spec/fixtures/releases/s3test-boshrelease/templates/make_manifest
31
29
(-)sysutils/rubygem-bosh_cli/Makefile (-2 / +1 lines)
Lines 29-36 Link Here
29
29
30
NO_ARCH=	yes
30
NO_ARCH=	yes
31
USE_RUBY=	yes
31
USE_RUBY=	yes
32
USE_RUBYGEMS=	yes
32
USES=		gem:autoplist
33
RUBYGEM_AUTOPLIST=	yes
34
33
35
PLIST_FILES=	bin/bosh
34
PLIST_FILES=	bin/bosh
36
35
(-)sysutils/rubygem-bundler/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/bundle bin/bundler
18
PLIST_FILES=	bin/bundle bin/bundler
20
19
(-)sysutils/rubygem-bundler_ext/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)sysutils/rubygem-capistrano/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/cap bin/capify
23
PLIST_FILES=	bin/cap bin/capify
25
24
(-)sysutils/rubygem-capistrano-ext/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)sysutils/rubygem-chef/Makefile (-2 / +1 lines)
Lines 33-40 Link Here
33
33
34
NO_ARCH=		yes
34
NO_ARCH=		yes
35
USE_RUBY=		yes
35
USE_RUBY=		yes
36
USE_RUBYGEMS=		yes
36
USES=		gem:autoplist
37
RUBYGEM_AUTOPLIST=	yes
38
37
39
SUB_LIST=	RUBY=${RUBY}
38
SUB_LIST=	RUBY=${RUBY}
40
USE_RC_SUBR=	chef_client
39
USE_RC_SUBR=	chef_client
(-)sysutils/rubygem-chef-api/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)sysutils/rubygem-chef-zero/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
22
USE_RUBY=		yes
22
USE_RUBY=		yes
23
USE_RUBYGEMS=		yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
PLIST_FILES=		bin/chef-zero
24
PLIST_FILES=		bin/chef-zero
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)sysutils/rubygem-facter/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
LICENSE_FILE=	${WRKSRC}/LICENSE
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/facter
19
PLIST_FILES=	bin/facter
21
20
(-)sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
	rubygem-ltsv>0:textproc/rubygem-ltsv
15
	rubygem-ltsv>0:textproc/rubygem-ltsv
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-fluent-plugin-config-expander/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
	rubygem-fluentd>0:sysutils/rubygem-fluentd
12
	rubygem-fluentd>0:sysutils/rubygem-fluentd
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)sysutils/rubygem-fluent-plugin-file-alternative/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
	rubygem-fluent-mixin-plaintextformatter>0:sysutils/rubygem-fluent-mixin-plaintextformatter
13
	rubygem-fluent-mixin-plaintextformatter>0:sysutils/rubygem-fluent-mixin-plaintextformatter
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)sysutils/rubygem-fluent-plugin-tail-asis/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
	rubygem-fluentd>0:sysutils/rubygem-fluentd
12
	rubygem-fluentd>0:sysutils/rubygem-fluentd
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)sysutils/rubygem-fluentd/Makefile (-2 / +1 lines)
Lines 20-30 Link Here
20
	rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo
20
	rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
24
PLIST_FILES=	bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
23
PLIST_FILES=	bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
25
		"@sample etc/fluentd/fluent.conf.sample"
24
		"@sample etc/fluentd/fluent.conf.sample"
26
PLIST_DIRS=	etc/fluentd/plugin
25
PLIST_DIRS=	etc/fluentd/plugin
27
RUBYGEM_AUTOPLIST=	yes
26
USES=		gem:autoplist
28
USE_RC_SUBR=	fluentd
27
USE_RC_SUBR=	fluentd
29
USERS=		fluentd
28
USERS=		fluentd
30
GROUPS=		fluentd
29
GROUPS=		fluentd
(-)sysutils/rubygem-fluentd010/Makefile (-2 / +1 lines)
Lines 20-30 Link Here
20
	rubygem-yajl-ruby>=1.0:devel/rubygem-yajl-ruby
20
	rubygem-yajl-ruby>=1.0:devel/rubygem-yajl-ruby
21
21
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
24
PLIST_FILES=	bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
23
PLIST_FILES=	bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
25
		"@sample etc/fluentd/fluent.conf.sample"
24
		"@sample etc/fluentd/fluent.conf.sample"
26
PLIST_DIRS=	etc/fluentd/plugin
25
PLIST_DIRS=	etc/fluentd/plugin
27
RUBYGEM_AUTOPLIST=	yes
26
USES=		gem:autoplist
28
USE_RC_SUBR=	fluentd
27
USE_RC_SUBR=	fluentd
29
USERS=		fluentd
28
USERS=		fluentd
30
GROUPS=		fluentd
29
GROUPS=		fluentd
(-)sysutils/rubygem-fssm/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)sysutils/rubygem-god/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/god
18
PLIST_FILES=	bin/god
20
19
(-)sysutils/rubygem-guard/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
PLIST_FILES=	bin/guard \
28
PLIST_FILES=	bin/guard \
30
		bin/_guard-core
29
		bin/_guard-core
(-)sysutils/rubygem-guard-compat/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)sysutils/rubygem-guard-livereload/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)sysutils/rubygem-guard-minitest/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)sysutils/rubygem-guard-rspec/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)sysutils/rubygem-hammer_cli/Makefile (-2 / +1 lines)
Lines 23-30 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
post-install:
28
post-install:
30
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
29
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
(-)sysutils/rubygem-hammer_cli_foreman/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
post-install:
21
post-install:
23
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
22
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
(-)sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
post-install:
20
post-install:
22
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
21
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
(-)sysutils/rubygem-hammer_cli_foreman_salt/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	"@sample etc/hammer/cli.modules.d/foreman_salt.yml.sample"
20
PLIST_FILES=	"@sample etc/hammer/cli.modules.d/foreman_salt.yml.sample"
22
21
(-)sysutils/rubygem-hammer_cli_foreman_ssh/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	"@sample etc/hammer/cli.modules.d/foreman_ssh.yml.sample"
23
PLIST_FILES=	"@sample etc/hammer/cli.modules.d/foreman_ssh.yml.sample"
25
24
(-)sysutils/rubygem-hiera/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
HIERA_DBDIR=	/var/db/hiera
23
HIERA_DBDIR=	/var/db/hiera
25
PLIST_FILES=	bin/hiera
24
PLIST_FILES=	bin/hiera
(-)sysutils/rubygem-hiera-file/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
RUN_DEPENDS=	${PKGNAMEPREFIX}hiera1>=0:sysutils/rubygem-hiera1
18
RUN_DEPENDS=	${PKGNAMEPREFIX}hiera1>=0:sysutils/rubygem-hiera1
20
19
(-)sysutils/rubygem-hiera1/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
22
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
HIERA_DBDIR=	/var/db/hiera
25
HIERA_DBDIR=	/var/db/hiera
27
PLIST_FILES=	bin/hiera
26
PLIST_FILES=	bin/hiera
28
PLIST_DIRS=	${HIERA_DBDIR}
27
PLIST_DIRS=	${HIERA_DBDIR}
(-)sysutils/rubygem-hieracles/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
PLIST_FILES=	bin/hc man/man1/hc.1.gz \
21
PLIST_FILES=	bin/hc man/man1/hc.1.gz \
23
		bin/ppdb man/man1/ppdb.1.gz
22
		bin/ppdb man/man1/ppdb.1.gz
24
23
(-)sysutils/rubygem-librarian-puppet/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
PLIST_FILES=	bin/librarian-puppet
22
PLIST_FILES=	bin/librarian-puppet
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)sysutils/rubygem-log4r/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-logify/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)sysutils/rubygem-mogilefs-client/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/mog
19
PLIST_FILES=	bin/mog
21
20
(-)sysutils/rubygem-mothra/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
PLIST_FILES=	bin/mothra
22
PLIST_FILES=	bin/mothra
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)sysutils/rubygem-murder/Makefile (-3 / +1 lines)
Lines 11-21 Link Here
11
11
12
LICENSE=	APACHE20
12
LICENSE=	APACHE20
13
13
14
USES=		python
15
NO_ARCH=	yes
14
NO_ARCH=	yes
16
15
17
USE_RUBY=	yes
16
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist python
19
RUBYGEM_AUTOPLIST=	yes
20
18
21
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)sysutils/rubygem-ohai/Makefile (-2 / +1 lines)
Lines 25-32 Link Here
25
25
26
NO_ARCH=	yes
26
NO_ARCH=	yes
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
PLIST_FILES=	bin/ohai
30
PLIST_FILES=	bin/ohai
32
31
(-)sysutils/rubygem-parallel/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)sysutils/rubygem-puppet_forge/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)sysutils/rubygem-puppet_forge1/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)sysutils/rubygem-r10k/Makefile (-3 / +1 lines)
Lines 21-29 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist shebangfix
25
RUBYGEM_AUTOPLIST=	yes
26
USES=		shebangfix
27
25
28
PLIST_FILES=	bin/r10k
26
PLIST_FILES=	bin/r10k
29
27
(-)sysutils/rubygem-rubyipmi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)sysutils/rubygem-shellany/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)sysutils/rubygem-smart_proxy_chef/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
post-install:
22
post-install:
24
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d
23
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d
(-)sysutils/rubygem-smart_proxy_dynflow/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	"@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" \
23
PLIST_FILES=	"@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" \
25
		share/foreman-proxy/bundler.d/dynflow.rb
24
		share/foreman-proxy/bundler.d/dynflow.rb
(-)sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	"@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" \
23
PLIST_FILES=	"@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" \
25
		share/foreman-proxy/bundler.d/remote_execution_ssh.rb
24
		share/foreman-proxy/bundler.d/remote_execution_ssh.rb
(-)sysutils/rubygem-smart_proxy_salt/Makefile (-3 / +1 lines)
Lines 15-26 Link Here
15
RUN_DEPENDS=	foreman-proxy>=1.8.0:net/foreman-proxy \
15
RUN_DEPENDS=	foreman-proxy>=1.8.0:net/foreman-proxy \
16
		${PYTHON_PKGNAMEPREFIX}salt>0:sysutils/py-salt
16
		${PYTHON_PKGNAMEPREFIX}salt>0:sysutils/py-salt
17
17
18
USES=		python
19
NO_ARCH=	yes
18
NO_ARCH=	yes
20
19
21
USE_RUBY=	yes
20
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist python
23
RUBYGEM_AUTOPLIST=	yes
24
22
25
post-patch:
23
post-patch:
26
		@${REINPLACE_CMD} \
24
		@${REINPLACE_CMD} \
(-)sysutils/rubygem-sys-admin/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-cpu/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-filesystem/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-host/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	ART20
12
LICENSE=	ART20
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-proctable/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
GEM_NAME=	${PORTNAME}-${DISTVERSIONFULL}
17
GEM_NAME=	${PORTNAME}-${DISTVERSIONFULL}
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-uname/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-sys-uptime/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)sysutils/rubygem-teamocil/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/teamocil
19
PLIST_FILES=	bin/teamocil
21
20
(-)sysutils/rubygem-winrm/Makefile (-2 / +1 lines)
Lines 25-32 Link Here
25
25
26
NO_ARCH=	yes
26
NO_ARCH=	yes
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
PLIST_FILES=	bin/rwinrm
30
PLIST_FILES=	bin/rwinrm
32
31
(-)sysutils/rubygem-winrm-fs/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/rwinrmcp
23
PLIST_FILES=	bin/rwinrmcp
25
24
(-)sysutils/rubygem-yell/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-actionpack-xml_parser/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-albino/Makefile (-3 / +1 lines)
Lines 14-24 Link Here
14
RUN_DEPENDS=	rubygem-posix-spawn>=0.3.6:devel/rubygem-posix-spawn \
14
RUN_DEPENDS=	rubygem-posix-spawn>=0.3.6:devel/rubygem-posix-spawn \
15
		${PYTHON_PKGNAMEPREFIX}pygments>=0.8:textproc/py-pygments
15
		${PYTHON_PKGNAMEPREFIX}pygments>=0.8:textproc/py-pygments
16
16
17
USES=		python
18
NO_ARCH=	yes
17
NO_ARCH=	yes
19
18
20
USE_RUBY=	yes
19
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist python
22
RUBYGEM_AUTOPLIST=	yes
23
21
24
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-amatch/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
RUN_DEPENDS=	rubygem-tins>=1.0:devel/rubygem-tins
15
RUN_DEPENDS=	rubygem-tins>=1.0:devel/rubygem-tins
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/agrep.rb
20
PLIST_FILES=	bin/agrep.rb
22
21
(-)textproc/rubygem-asciidoctor/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES+=	bin/asciidoctor bin/asciidoctor-safe
18
PLIST_FILES+=	bin/asciidoctor bin/asciidoctor-safe
20
19
(-)textproc/rubygem-autoprefixer-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-babosa/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
13
LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-charlock_holmes/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LIB_DEPENDS=	libicui18n.so:devel/icu
12
LIB_DEPENDS=	libicui18n.so:devel/icu
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
CONFIGURE_ARGS=	--with-icu-include=${LOCALBASE}/include
16
CONFIGURE_ARGS=	--with-icu-include=${LOCALBASE}/include
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-coderay/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/coderay
18
PLIST_FILES=	bin/coderay
20
19
(-)textproc/rubygem-colorator/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-colored/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-compass/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PLIST_FILES=	bin/compass
26
PLIST_FILES=	bin/compass
28
27
(-)textproc/rubygem-compass-core/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-compass-import-once/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-compass-rails/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-creole/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-css_parser/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-cssmin/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-diff-lcs/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
ruby_OLD_CMD=	ruby
20
ruby_OLD_CMD=	ruby
23
SHEBANG_FILES=	bin/htmldiff bin/ldiff
21
SHEBANG_FILES=	bin/htmldiff bin/ldiff
24
22
(-)textproc/rubygem-diffy/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-elasticsearch/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-elasticsearch-api/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-elasticsearch-transport/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-emot/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/emot
21
PLIST_FILES=	bin/emot
23
22
(-)textproc/rubygem-escape_utils/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-escape_utils-rails4/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
LICENSE_FILE=	${WRKSRC}/LICENSE
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-ezamar/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-fast_xs/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
LICENSE=	MIT
14
LICENSE=	MIT
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-fast_xs073/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
PORTSCOUT=	limit:^0.7
18
PORTSCOUT=	limit:^0.7
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)textproc/rubygem-ferret/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
PLIST_FILES=	bin/ferret-browser
17
PLIST_FILES=	bin/ferret-browser
19
18
(-)textproc/rubygem-fog-xml/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-gemoji/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-gherkin/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-gherkin3/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-github-linguist/Makefile (-2 / +1 lines)
Lines 18-25 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
PLIST_FILES=	bin/git-linguist bin/linguist
23
PLIST_FILES=	bin/git-linguist bin/linguist
25
24
(-)textproc/rubygem-github-markdown/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
DEPRECATED=	This gem is not maintained and not supported by upstream
11
DEPRECATED=	This gem is not maintained and not supported by upstream
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)textproc/rubygem-github-markup/Makefile (-3 / +1 lines)
Lines 15-23 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist shebangfix
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		shebangfix
21
SHEBANG_FILES=	script/bootstrap \
19
SHEBANG_FILES=	script/bootstrap \
22
		script/cibuild
20
		script/cibuild
23
21
(-)textproc/rubygem-gitlab-grit/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)textproc/rubygem-gitlab-linguist/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/linguist
21
PLIST_FILES=	bin/linguist
23
22
(-)textproc/rubygem-heredoc_unindent/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-hikidoc/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/hikidoc
18
PLIST_FILES=	bin/hikidoc
20
19
(-)textproc/rubygem-html-pipeline/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-html-pipeline-gitlab/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)textproc/rubygem-html-pipeline1/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-htmlentities/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-ini/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-itextomml/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_COMB=	dual
13
LICENSE_COMB=	dual
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-assets/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-feed/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-gist/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-mentions/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-paginate/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	script/bootstrap \
20
SHEBANG_FILES=	script/bootstrap \
23
		script/cibuild \
21
		script/cibuild \
24
		script/unbundle
22
		script/unbundle
(-)textproc/rubygem-jekyll-redirect-from/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-sass-converter/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-jekyll-sitemap/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-jemoji/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-jsmin/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-kramdown/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=	yes
19
USES=		shebangfix
20
18
21
PLIST_FILES=	bin/kramdown
19
PLIST_FILES=	bin/kramdown
22
20
(-)textproc/rubygem-kwalify/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/kwalify
19
PLIST_FILES=	bin/kwalify
21
20
(-)textproc/rubygem-libxml-ruby/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_GNOME=	libxml2
14
USE_GNOME=	libxml2
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-linguistics/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		shebangfix
23
SHEBANG_FILES=	lib/linguistics.rb \
21
SHEBANG_FILES=	lib/linguistics.rb \
24
		lib/linguistics/en/linkparser.rb
22
		lib/linguistics/en/linkparser.rb
25
23
(-)textproc/rubygem-liquid/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-liquid2/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-loggability/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-loofah/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-ltsv/Makefile (-2 / +1 lines)
Lines 11-17 Link Here
11
NO_ARCH=	yes
11
NO_ARCH=	yes
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist
15
RUBYGEM_AUTOPLIST=	yes
16
15
17
.include <bsd.port.mk>
16
.include <bsd.port.mk>
(-)textproc/rubygem-markaby/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-multi_xml/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
NOKOGIRI_RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
21
NOKOGIRI_RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
23
22
(-)textproc/rubygem-nokogiri/Makefile (-3 / +1 lines)
Lines 11-20 Link Here
11
LICENSE=	MIT
11
LICENSE=	MIT
12
12
13
USE_RUBY=	yes
13
USE_RUBY=	yes
14
USE_RUBYGEMS=	yes
14
USES=		gem:autoplist pkgconfig
15
RUBYGEM_AUTOPLIST=	yes
16
USE_GNOME=	libxml2 libxslt
15
USE_GNOME=	libxml2 libxslt
17
USES=		pkgconfig
18
CONFIGURE_ARGS=	--use-system-libraries
16
CONFIGURE_ARGS=	--use-system-libraries
19
17
20
PLIST_FILES=	bin/nokogiri
18
PLIST_FILES=	bin/nokogiri
(-)textproc/rubygem-nokogiri-diff/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-nokogiri14/Makefile (-3 / +1 lines)
Lines 12-21 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist pkgconfig
16
RUBYGEM_AUTOPLIST=	yes
17
USE_GNOME=	libxml2 libxslt
16
USE_GNOME=	libxml2 libxslt
18
USES=		pkgconfig
19
CONFIGURE_ARGS=	--use-system-libraries
17
CONFIGURE_ARGS=	--use-system-libraries
20
18
21
PLIST_FILES=	bin/nokogiri14
19
PLIST_FILES=	bin/nokogiri14
(-)textproc/rubygem-nokogumbo/Makefile (-3 / +1 lines)
Lines 15-22 Link Here
15
RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
15
RUN_DEPENDS=	rubygem-nokogiri>=0:textproc/rubygem-nokogiri
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist pkgconfig
19
RUBYGEM_AUTOPLIST=	yes
20
USES=		pkgconfig
21
19
22
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-octopress-escape-code/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-opml/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)textproc/rubygem-org-ruby/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/org-ruby
21
PLIST_FILES=	bin/org-ruby
23
22
(-)textproc/rubygem-parslet/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-phone/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-rails-dom-testing/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)textproc/rubygem-rails-html-sanitizer/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-rak/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/rak
20
PLIST_FILES=	bin/rak
22
21
(-)textproc/rubygem-rchardet/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-rdiscount/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
PLIST_FILES=	bin/rdiscount
17
PLIST_FILES=	bin/rdiscount
19
18
(-)textproc/rubygem-rdtool/Makefile (-4 / +2 lines)
Lines 14-25 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USES=		shebangfix
17
USE_RUBY=	yes
18
USES=		gem:autoplist shebangfix
18
SHEBANG_FILES=	bin/rd2 bin/rdswap.rb
19
SHEBANG_FILES=	bin/rd2 bin/rdswap.rb
19
ruby_OLD_CMD=	/usr/bin/ruby1.9.1
20
ruby_OLD_CMD=	/usr/bin/ruby1.9.1
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
22
RUBYGEM_AUTOPLIST=	yes
23
21
24
PLIST_FILES=	bin/rd2 bin/rdswap.rb
22
PLIST_FILES=	bin/rd2 bin/rdswap.rb
25
23
(-)textproc/rubygem-redcarpet/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/redcarpet
18
PLIST_FILES=	bin/redcarpet
20
19
(-)textproc/rubygem-reverse_markdown/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
PLIST_FILES=	bin/reverse_markdown
18
PLIST_FILES=	bin/reverse_markdown
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-ri_cal/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/ri_cal
18
PLIST_FILES=	bin/ri_cal
20
19
(-)textproc/rubygem-rich/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)textproc/rubygem-rmmseg-cpp/Makefile (-3 / +1 lines)
Lines 13-21 Link Here
13
LICENSE=	MIT
13
LICENSE=	MIT
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist shebangfix
17
RUBYGEM_AUTOPLIST=	yes
18
USES=		shebangfix
19
SHEBANG_FILES=	misc/convert.rb
17
SHEBANG_FILES=	misc/convert.rb
20
18
21
PLIST_FILES=	bin/rmmseg
19
PLIST_FILES=	bin/rmmseg
(-)textproc/rubygem-rouge/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
PLIST_FILES=	bin/rougify
18
PLIST_FILES=	bin/rougify
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-rttool/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/rdrt2 bin/rt2
19
PLIST_FILES=	bin/rdrt2 bin/rt2
21
20
(-)textproc/rubygem-ruby-augeas/Makefile (-3 / +1 lines)
Lines 17-24 Link Here
17
CONFIGURE_ARGS=	--with-opt-include="${LOCALBASE}/include/libxml2"
17
CONFIGURE_ARGS=	--with-opt-include="${LOCALBASE}/include/libxml2"
18
USE_GNOME=	libxml2
18
USE_GNOME=	libxml2
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist pkgconfig
21
RUBYGEM_AUTOPLIST=	yes
22
USES=		pkgconfig
23
21
24
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-ruby-xslt/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
USE_GNOME=	libxslt
14
USE_GNOME=	libxslt
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-rubypants/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-rugments/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/rugmentize
20
PLIST_FILES=	bin/rugmentize
22
21
(-)textproc/rubygem-sanitize/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)textproc/rubygem-sass/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/sass bin/sass-convert bin/scss
19
PLIST_FILES=	bin/sass bin/sass-convert bin/scss
21
20
(-)textproc/rubygem-sass-rails/Makefile (-2 / +1 lines)
Lines 19-26 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
PORTSCOUT=	limit:^3\.
24
PORTSCOUT=	limit:^3\.
26
25
(-)textproc/rubygem-sass-rails4/Makefile (-2 / +1 lines)
Lines 23-29 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)textproc/rubygem-sass-rails5/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)textproc/rubygem-sass32/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)textproc/rubygem-sax-machine/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-scss_lint/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/scss-lint
21
PLIST_FILES=	bin/scss-lint
23
22
(-)textproc/rubygem-shell2html/Makefile (-2 / +1 lines)
Lines 12-19 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
PLIST_FILES=	bin/shell2css bin/shell2html
16
PLIST_FILES=	bin/shell2css bin/shell2html
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-simplecov-html/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)textproc/rubygem-spreadsheet/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/xlsopcodes
21
PLIST_FILES=	bin/xlsopcodes
23
22
(-)textproc/rubygem-stamp/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-string-scrub/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.pre.mk>
18
.include <bsd.port.pre.mk>
20
19
(-)textproc/rubygem-syntax/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-termcolor/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-terminal-table/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-text/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-tidy/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=  yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)textproc/rubygem-twitter-text/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)textproc/rubygem-unf/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-unf_ext/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-version_sorter/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)textproc/rubygem-wikicloth/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)textproc/rubygem-xml-simple/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-ya2yaml/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)textproc/rubygem-yard/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/yard \
18
PLIST_FILES=	bin/yard \
20
		bin/yardoc \
19
		bin/yardoc \
(-)textproc/rubygem-yard-chef/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)textproc/rubygem-zmq/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
LIB_DEPENDS=	libzmq.so:net/libzmq2
14
LIB_DEPENDS=	libzmq.so:net/libzmq2
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-ace-rails-ap/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=	yes
19
USES=		shebangfix
20
18
21
SHEBANG_FILES=	update.sh
19
SHEBANG_FILES=	update.sh
22
20
(-)www/rubygem-actionpack/Makefile (-2 / +1 lines)
Lines 24-30 Link Here
24
24
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
USE_RUBY=	yes
26
USE_RUBY=	yes
27
USE_RUBYGEMS=	yes
27
USES=		gem:autoplist
28
RUBYGEM_AUTOPLIST=	yes
29
28
30
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)www/rubygem-actionpack4/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)www/rubygem-activeresource/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-activeresource4/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-acts-as-taggable-on/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	YES
17
USE_RUBY=	YES
18
USE_RUBYGEMS=	YES
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	YES
20
19
21
BROKEN_RUBY23=	yes
20
BROKEN_RUBY23=	yes
22
21
(-)www/rubygem-acts-as-taggable-on3/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-acts_as_taggable/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-addressable/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-akami/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-amazon-ecs/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-anemone/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/anemone
22
PLIST_FILES=	bin/anemone
24
23
(-)www/rubygem-asana/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-async_sinatra/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-bluecloth/Makefile (-3 / +1 lines)
Lines 12-20 Link Here
12
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist shebangfix
16
RUBYGEM_AUTOPLIST=	yes
17
USES=		shebangfix
18
SHEBANG_FILES=	bin/bluecloth
16
SHEBANG_FILES=	bin/bluecloth
19
17
20
PLIST_FILES=	bin/bluecloth
18
PLIST_FILES=	bin/bluecloth
(-)www/rubygem-bootstrap-sass/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-browser/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-cal-heatmap-rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-cal-heatmap-rails-rails4/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-carrierwave/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-cgi_multipart_eof_fix/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-chosen-rails/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-cookiejar/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-crass/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-cuba/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-d3_rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-d3_rails-rails4/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-dashing/Makefile (-2 / +1 lines)
Lines 28-35 Link Here
28
NO_ARCH=	yes
28
NO_ARCH=	yes
29
29
30
USE_RUBY=	yes
30
USE_RUBY=	yes
31
USE_RUBYGEMS=	yes
31
USES=		gem:autoplist
32
RUBYGEM_AUTOPLIST=	yes
33
32
34
PLIST_FILES=	bin/dashing
33
PLIST_FILES=	bin/dashing
35
34
(-)www/rubygem-davclient/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/dav
19
PLIST_FILES=	bin/dav
21
20
(-)www/rubygem-domainatrix/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-dropzonejs-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-em-http-request/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-em-socksify/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-em-twitter/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-em-websocket/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-emk-sinatra-url-for/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-erubis/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/erubis
20
PLIST_FILES=	bin/erubis
22
21
(-)www/rubygem-ethon/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-eventmachine_httpserver/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	GPLv2
12
LICENSE=	GPLv2
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-faraday/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-faraday_middleware/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-fcgi/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
LIB_DEPENDS=	libfcgi.so:www/fcgi
13
LIB_DEPENDS=	libfcgi.so:www/fcgi
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-feed-normalizer/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-feedjira/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-flowdock/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-geminabox/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)www/rubygem-gitlab-flowdock-git-hook/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-gitlab-gollum-lib/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)www/rubygem-gitlab-grack/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-gollum-grit_adapter/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-gollum-lib/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)www/rubygem-gollum-rugged_adapter/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-gon/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-gon-rails4/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-hackpad-cli/Makefile (-2 / +1 lines)
Lines 20-27 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
PLIST_FILES=	bin/hpcli
24
PLIST_FILES=	bin/hpcli
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)www/rubygem-haml/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/haml
21
PLIST_FILES=	bin/haml
23
22
(-)www/rubygem-haml-coderay/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-haml-contrib/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-haml-rails/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)www/rubygem-haml-rails-rails4/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)www/rubygem-hashicorp-checkpoint/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-heroku/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST= yes
19
18
20
PLIST_FILES=	bin/heroku
19
PLIST_FILES=	bin/heroku
21
20
(-)www/rubygem-heroku-api/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST= yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-heroku-nav/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST= yes
18
17
19
RUN_DEPENDS+=	rubygem-sinatra>=0:www/rubygem-sinatra
18
RUN_DEPENDS+=	rubygem-sinatra>=0:www/rubygem-sinatra
20
19
(-)www/rubygem-hpricot/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-html2haml/Makefile (-2 / +1 lines)
Lines 18-27 Link Here
18
		rubygem-ruby_parser>=3.5:devel/rubygem-ruby_parser
18
		rubygem-ruby_parser>=3.5:devel/rubygem-ruby_parser
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
22
NO_ARCH=	yes
21
NO_ARCH=	yes
23
22
24
RUBYGEM_AUTOPLIST=	yes
23
USES=		gem:autoplist
25
PLIST_FILES=	bin/html2haml
24
PLIST_FILES=	bin/html2haml
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)www/rubygem-http/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-http-cookie/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-http-form_data/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-http_router/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-httparty/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/httparty
22
PLIST_FILES=	bin/httparty
24
23
(-)www/rubygem-httpclient/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
PLIST_FILES=	bin/httpclient
18
PLIST_FILES=	bin/httpclient
20
19
(-)www/rubygem-httpi/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PORTSCOUT=	limit:^0\.9\.
21
PORTSCOUT=	limit:^0\.9\.
23
22
(-)www/rubygem-innate/Makefile (-3 / +1 lines)
Lines 17-25 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist shebangfix
21
RUBYGEM_AUTOPLIST=	yes
22
SHEBANG_FILES=	.load_gemset
21
SHEBANG_FILES=	.load_gemset
23
USES=		shebangfix
24
22
25
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-jekyll/Makefile (-2 / +1 lines)
Lines 25-32 Link Here
25
25
26
NO_ARCH=	yes
26
NO_ARCH=	yes
27
USE_RUBY=	yes
27
USE_RUBY=	yes
28
USE_RUBYGEMS=	yes
28
USES=		gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
29
31
PLIST_FILES=	bin/jekyll
30
PLIST_FILES=	bin/jekyll
32
31
(-)www/rubygem-jekyll-watch/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-jekyll2/Makefile (-2 / +1 lines)
Lines 35-42 Link Here
35
35
36
NO_ARCH=	yes
36
NO_ARCH=	yes
37
USE_RUBY=	yes
37
USE_RUBY=	yes
38
USE_RUBYGEMS=	yes
38
USES=		gem:autoplist
39
RUBYGEM_AUTOPLIST=	yes
40
39
41
PLIST_FILES=	bin/jekyll
40
PLIST_FILES=	bin/jekyll
42
41
(-)www/rubygem-journey/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-jquery-atwho-rails/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-jquery-atwho-rails-rails4/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-jquery-rails/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-jquery-rails4/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-jquery-scrollto-rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-jquery-turbolinks/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-jquery-ui-rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-jquery-ui-rails-rails4/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-jruby-rack/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-jsobfu/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
PLIST_FILES=	bin/jsobfu
19
PLIST_FILES=	bin/jsobfu
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-jwt/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-kaminari/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-kaminari-rails4/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-kensa/Makefile (-2 / +1 lines)
Lines 13-20 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST= yes
18
17
19
PLIST_FILES=	bin/kensa
18
PLIST_FILES=	bin/kensa
20
19
(-)www/rubygem-layout_yullio_generator/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-less/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/lessc
21
PLIST_FILES=	bin/lessc
23
22
(-)www/rubygem-lighthouse-api/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-maruku/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=  yes
19
18
20
PLIST_FILES=	bin/maruku bin/marutex
19
PLIST_FILES=	bin/maruku bin/marutex
21
20
(-)www/rubygem-mechanize/Makefile (-2 / +1 lines)
Lines 23-29 Link Here
23
23
24
NO_ARCH=	yes
24
NO_ARCH=	yes
25
USE_RUBY=	yes
25
USE_RUBY=	yes
26
USE_RUBYGEMS=	yes
26
USES=		gem:autoplist
27
RUBYGEM_AUTOPLIST=	yes
28
27
29
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)www/rubygem-mechanize26/Makefile (-2 / +1 lines)
Lines 24-31 Link Here
24
24
25
NO_ARCH=	yes
25
NO_ARCH=	yes
26
USE_RUBY=	yes
26
USE_RUBY=	yes
27
USE_RUBYGEMS=	yes
27
USES=		gem:autoplist
28
RUBYGEM_AUTOPLIST=	yes
29
28
30
PORTSCOUT=	limit:^2\.6
29
PORTSCOUT=	limit:^2\.6
31
30
(-)www/rubygem-merb-assets/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-merb-core/Makefile (-3 / +1 lines)
Lines 21-29 Link Here
21
		rubygem-rake>=0:devel/rubygem-rake
21
		rubygem-rake>=0:devel/rubygem-rake
22
22
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist shebangfix
25
RUBYGEM_AUTOPLIST=	yes
26
USES=		shebangfix
27
SHEBANG_FILES=	spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis \
25
SHEBANG_FILES=	spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis \
28
		spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis
26
		spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis
29
27
(-)www/rubygem-merb-haml/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-merb-helpers/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-merb-param-protection/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-mousetrap-rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-multipart-post/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-nanoc/Makefile (-2 / +1 lines)
Lines 16-24 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
20
USE_RAKE=	yes
19
USE_RAKE=	yes
21
RUBYGEM_AUTOPLIST=	yes
20
USES=		gem:autoplist
22
21
23
PLIST_FILES=	bin/nanoc
22
PLIST_FILES=	bin/nanoc
24
23
(-)www/rubygem-nested_form/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-net-http-digest_auth/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-net-http-digest_auth11/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PORTSCOUT=	limit:^1\.1
19
PORTSCOUT=	limit:^1\.1
21
20
(-)www/rubygem-net-http-persistent/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-net-http-persistent25/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PORTSCOUT=	limit:^2\.5
19
PORTSCOUT=	limit:^2\.5
21
20
(-)www/rubygem-net-http-pipeline/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-nicovideo/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-ntlm-http/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-octopress/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES=	bin/octopress
27
PLIST_FILES=	bin/octopress
29
28
(-)www/rubygem-pagerduty/Makefile (-3 / +1 lines)
Lines 16-24 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist shebangfix
20
RUBYGEM_AUTOPLIST=	yes
21
USES=		shebangfix
22
SHEBANG_FILES=	script/setup.sh
20
SHEBANG_FILES=	script/setup.sh
23
21
24
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-passenger/Makefile (-4 / +1 lines)
Lines 10-17 Link Here
10
MAINTAINER=	osa@FreeBSD.org
10
MAINTAINER=	osa@FreeBSD.org
11
COMMENT=	Modules for running Ruby on Rails and Rack applications
11
COMMENT=	Modules for running Ruby on Rails and Rack applications
12
12
13
USES+=		cpe
14
15
CPE_VENDOR=	phusion
13
CPE_VENDOR=	phusion
16
CPE_PRODUCT=	passenger
14
CPE_PRODUCT=	passenger
17
15
Lines 25-32 Link Here
25
23
26
USE_RUBY=	yes
24
USE_RUBY=	yes
27
USE_RAKE=	yes
25
USE_RAKE=	yes
28
USE_RUBYGEMS=	yes
26
USES=		cpe gem:autoplist
29
RUBYGEM_AUTOPLIST=	yes
30
27
31
.include <bsd.port.options.mk>
28
.include <bsd.port.options.mk>
32
29
(-)www/rubygem-puma/Makefile (-3 / +1 lines)
Lines 13-21 Link Here
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist shebangfix
17
RUBYGEM_AUTOPLIST=	yes
18
USES=		shebangfix
19
17
20
PLIST_FILES=	bin/puma bin/pumactl
18
PLIST_FILES=	bin/puma bin/pumactl
21
19
(-)www/rubygem-pusher-client/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-rabbirack/Makefile (-3 / +1 lines)
Lines 18-27 Link Here
18
		rubygem-sinatra>0:www/rubygem-sinatra
18
		rubygem-sinatra>0:www/rubygem-sinatra
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USES=		gettext
22
USE_RUBY=	yes
21
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist gettext
24
RUBYGEM_AUTOPLIST=	yes
25
PLIST_FILES=	bin/rabbirack
23
PLIST_FILES=	bin/rabbirack
26
24
27
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)www/rubygem-rack/Makefile (-3 / +1 lines)
Lines 20-28 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist shebangfix
24
RUBYGEM_AUTOPLIST=	yes
25
USES=		shebangfix
26
24
27
SHEBANG_FILES=	test/cgi/test.ru
25
SHEBANG_FILES=	test/cgi/test.ru
28
SHEBANG_LANG=	rackup
26
SHEBANG_LANG=	rackup
(-)www/rubygem-rack-accept/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-rack-attack/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-rack-cache/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-rack-contrib/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-rack-cors/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-rack-mount/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-rack-openid/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-rack-protection/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-rack-ssl/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-rack-test/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-rack15/Makefile (-3 / +1 lines)
Lines 21-29 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist shebangfix
25
RUBYGEM_AUTOPLIST=	yes
26
USES=		shebangfix
27
25
28
SHEBANG_FILES=	test/cgi/test.ru
26
SHEBANG_FILES=	test/cgi/test.ru
29
SHEBANG_LANG=	rackup
27
SHEBANG_LANG=	rackup
(-)www/rubygem-rack16/Makefile (-3 / +1 lines)
Lines 20-28 Link Here
20
20
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist shebangfix
24
RUBYGEM_AUTOPLIST=	yes
25
USES=		shebangfix
26
24
27
SHEBANG_FILES=	test/cgi/test.ru
25
SHEBANG_FILES=	test/cgi/test.ru
28
SHEBANG_LANG=	rackup
26
SHEBANG_LANG=	rackup
(-)www/rubygem-rails/Makefile (-4 / +1 lines)
Lines 43-55 Link Here
43
NO_ARCH=	yes
43
NO_ARCH=	yes
44
USE_RUBY=	yes
44
USE_RUBY=	yes
45
USE_RUBY_RDOC=	yes
45
USE_RUBY_RDOC=	yes
46
USE_RUBYGEMS=	yes
46
USES=		cpe gem:autoplist
47
RUBYGEM_AUTOPLIST=	yes
48
47
49
PLIST_DIRS=	${GEM_LIB_DIR}
48
PLIST_DIRS=	${GEM_LIB_DIR}
50
49
51
USES=		cpe
52
53
CPE_VENDOR=	rubyonrails
50
CPE_VENDOR=	rubyonrails
54
CPE_PRODUCT=	ruby_on_rails
51
CPE_PRODUCT=	ruby_on_rails
55
52
(-)www/rubygem-rails4/Makefile (-3 / +1 lines)
Lines 44-52 Link Here
44
44
45
NO_ARCH=	yes
45
NO_ARCH=	yes
46
USE_RUBY=	yes
46
USE_RUBY=	yes
47
USE_RUBYGEMS=	yes
47
USES=		cpe gem:autoplist
48
RUBYGEM_AUTOPLIST=	yes
49
USES=		cpe
50
48
51
CPE_VENDOR=	rubyonrails
49
CPE_VENDOR=	rubyonrails
52
CPE_PRODUCT=	ruby_on_rails
50
CPE_PRODUCT=	ruby_on_rails
(-)www/rubygem-rails_autolink/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-railties/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PLIST_FILES=	bin/rails
26
PLIST_FILES=	bin/rails
28
27
(-)www/rubygem-railties4/Makefile (-2 / +1 lines)
Lines 21-28 Link Here
21
21
22
NO_ARCH=	yes
22
NO_ARCH=	yes
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
PLIST_FILES=	bin/rails
26
PLIST_FILES=	bin/rails
28
27
(-)www/rubygem-raindrops/Makefile (-3 / +1 lines)
Lines 14-22 Link Here
14
LICENSE_FILE_LGPL3=	${WRKSRC}/COPYING
14
LICENSE_FILE_LGPL3=	${WRKSRC}/COPYING
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist shebangfix
18
RUBYGEM_AUTOPLIST=	yes
19
USES=		shebangfix
20
18
21
SHEBANG_FILES=	examples/linux-listener-stats.rb
19
SHEBANG_FILES=	examples/linux-listener-stats.rb
22
20
(-)www/rubygem-ramaze/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
PLIST_FILES=	bin/ramaze
21
PLIST_FILES=	bin/ramaze
23
22
(-)www/rubygem-raphael-rails/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-redcloth/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
GEM_NAME=	${DISTNAME}
15
GEM_NAME=	${DISTNAME}
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/redcloth
19
PLIST_FILES=	bin/redcloth
21
20
(-)www/rubygem-redis-rack/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-redis-rails/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-redmine_acts_as_taggable_on/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-responders/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-responders-rails3/Makefile (-2 / +1 lines)
Lines 19-25 Link Here
19
19
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
USE_RUBY=	yes
21
USE_RUBY=	yes
22
USE_RUBYGEMS=	yes
22
USES=		gem:autoplist
23
RUBYGEM_AUTOPLIST=	yes
24
23
25
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)www/rubygem-rest-client/Makefile (-2 / +1 lines)
Lines 16-23 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=		yes
18
USE_RUBY=		yes
19
USE_RUBYGEMS=		yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
PLIST_FILES=	bin/restclient
20
PLIST_FILES=	bin/restclient
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-rfacebook/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-rfeedfinder/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-rinku/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	ISCL
12
LICENSE=	ISCL
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-rkelly-remix/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-robotex/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-robots/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
post-extract:
19
post-extract:
21
	${CHMOD} -R a+r ${WRKSRC}
20
	${CHMOD} -R a+r ${WRKSRC}
(-)www/rubygem-rqrcode/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
14
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-rqrcode-rails3/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-rtlit/Makefile (-2 / +1 lines)
Lines 14-21 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
PLIST_FILES=	bin/rtlit
19
PLIST_FILES=	bin/rtlit
21
20
(-)www/rubygem-ruby-readability/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/readability
22
PLIST_FILES=	bin/readability
24
23
(-)www/rubygem-savon/Makefile (-2 / +1 lines)
Lines 22-28 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)www/rubygem-sawyer/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-scrapi/Makefile (-2 / +1 lines)
Lines 15-23 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
19
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
20
RUBYGEM_AUTOPLIST=	yes
19
USES=		gem:autoplist
21
PLIST_FILES=	${GEM_LIB_DIR}/lib/tidy/libtidy.so
20
PLIST_FILES=	${GEM_LIB_DIR}/lib/tidy/libtidy.so
22
21
23
.include <bsd.port.pre.mk>
22
.include <bsd.port.pre.mk>
(-)www/rubygem-select2-rails/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-selenium-webdriver/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
		rubygem-websocket>=1.0:www/rubygem-websocket
17
		rubygem-websocket>=1.0:www/rubygem-websocket
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-semantic-ui-sass/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-simple-rss/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
NO_ARCH=	yes
12
NO_ARCH=	yes
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-sinatra/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-sinatra-contrib/Makefile (-2 / +1 lines)
Lines 21-27 Link Here
21
NO_ARCH=	yes
21
NO_ARCH=	yes
22
22
23
USE_RUBY=	yes
23
USE_RUBY=	yes
24
USE_RUBYGEMS=	yes
24
USES=		gem:autoplist
25
RUBYGEM_AUTOPLIST=	yes
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)www/rubygem-sinatra-r18n/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-sinatra-respond_to/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-task_list/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-thin/Makefile (-2 / +1 lines)
Lines 17-24 Link Here
17
		rubygem-rack16>=1.0:www/rubygem-rack16
17
		rubygem-rack16>=1.0:www/rubygem-rack16
18
18
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
PLIST_FILES=	bin/thin
22
PLIST_FILES=	bin/thin
24
23
(-)www/rubygem-tinyatom/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
18
19
NO_ARCH=	yes
19
NO_ARCH=	yes
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)www/rubygem-tinymce-rails/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
17
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-totoridipjp/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-tumblr_client/Makefile (-2 / +1 lines)
Lines 22-29 Link Here
22
22
23
NO_ARCH=	yes
23
NO_ARCH=	yes
24
USE_RUBY=	yes
24
USE_RUBY=	yes
25
USE_RUBYGEMS=	yes
25
USES=		gem:autoplist
26
RUBYGEM_AUTOPLIST=	yes
27
26
28
PLIST_FILES=	bin/tumblr
27
PLIST_FILES=	bin/tumblr
29
28
(-)www/rubygem-turbolinks/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)www/rubygem-typhoeus/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-uglifier/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-underscore-rails/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
12
13
NO_ARCH=	yes
13
NO_ARCH=	yes
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-unicorn/Makefile (-3 / +1 lines)
Lines 18-26 Link Here
18
		rubygem-raindrops>=0.7:www/rubygem-raindrops
18
		rubygem-raindrops>=0.7:www/rubygem-raindrops
19
19
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist shebangfix
22
RUBYGEM_AUTOPLIST=	yes
23
USES=		shebangfix
24
22
25
PLIST_FILES=	bin/unicorn bin/unicorn_rails
23
PLIST_FILES=	bin/unicorn bin/unicorn_rails
26
24
(-)www/rubygem-unicorn-worker-killer/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-url-mount/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
15
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-url_escape/Makefile (-2 / +1 lines)
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
USE_RUBY=	yes
14
USE_RUBY=	yes
15
USE_RUBYGEMS=	yes
15
USES=		gem:autoplist
16
RUBYGEM_AUTOPLIST=	yes
17
16
18
.include <bsd.port.mk>
17
.include <bsd.port.mk>
(-)www/rubygem-wasabi/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-webkit-gtk/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-webkit-gtk2/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)www/rubygem-webmock/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)www/rubygem-webrobots/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
NO_ARCH=	yes
15
NO_ARCH=	yes
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)www/rubygem-websocket/Makefile (-2 / +1 lines)
Lines 13-19 Link Here
13
13
14
NO_ARCH=	yes
14
NO_ARCH=	yes
15
USE_RUBY=	yes
15
USE_RUBY=	yes
16
USE_RUBYGEMS=	yes
16
USES=		gem:autoplist
17
RUBYGEM_AUTOPLIST=	yes
18
17
19
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)www/rubygem-yapra/Makefile (-2 / +1 lines)
Lines 15-22 Link Here
15
15
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
PLIST_FILES=	bin/yapra
20
PLIST_FILES=	bin/yapra
22
21
(-)x11-toolkits/rubygem-gdk3/Makefile (-2 / +1 lines)
Lines 18-24 Link Here
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
USE_GNOME=	gtk30
19
USE_GNOME=	gtk30
20
USE_RUBY=	yes
20
USE_RUBY=	yes
21
USE_RUBYGEMS=	yes
21
USES=		gem:autoplist
22
RUBYGEM_AUTOPLIST=	yes
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-gtk2/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
16
17
USE_GNOME=	gtk20
17
USE_GNOME=	gtk20
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-gtk3/Makefile (-2 / +1 lines)
Lines 20-26 Link Here
20
20
21
USE_GNOME=	gtk30
21
USE_GNOME=	gtk30
22
USE_RUBY=	yes
22
USE_RUBY=	yes
23
USE_RUBYGEMS=	yes
23
USES=		gem:autoplist
24
RUBYGEM_AUTOPLIST=	yes
25
24
26
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-gtksourceview2/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	gtksourceview2
15
USE_GNOME=	gtksourceview2
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-gtksourceview3/Makefile (-2 / +1 lines)
Lines 16-22 Link Here
16
NO_ARCH=	yes
16
NO_ARCH=	yes
17
USE_GNOME=	gtksourceview3
17
USE_GNOME=	gtksourceview3
18
USE_RUBY=	yes
18
USE_RUBY=	yes
19
USE_RUBYGEMS=	yes
19
USES=		gem:autoplist
20
RUBYGEM_AUTOPLIST=	yes
21
20
22
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-pango/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
15
16
USE_GNOME=	pango
16
USE_GNOME=	pango
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-poppler/Makefile (-2 / +1 lines)
Lines 15-21 Link Here
15
		rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2
15
		rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2
16
16
17
USE_RUBY=	yes
17
USE_RUBY=	yes
18
USE_RUBYGEMS=	yes
18
USES=		gem:autoplist
19
RUBYGEM_AUTOPLIST=	yes
20
19
21
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-vte/Makefile (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
USE_GNOME=	vte
15
USE_GNOME=	vte
16
USE_RUBY=	yes
16
USE_RUBY=	yes
17
USE_RUBYGEMS=	yes
17
USES=		gem:autoplist
18
RUBYGEM_AUTOPLIST=	yes
19
18
20
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)x11-toolkits/rubygem-vte3/Makefile (-2 / +1 lines)
Lines 17-23 Link Here
17
NO_ARCH=	yes
17
NO_ARCH=	yes
18
USE_GNOME=	vte3
18
USE_GNOME=	vte3
19
USE_RUBY=	yes
19
USE_RUBY=	yes
20
USE_RUBYGEMS=	yes
20
USES=		gem:autoplist
21
RUBYGEM_AUTOPLIST=	yes
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>

Return to bug 209041