Page MenuHomeFreeBSD

D6070.id15587.diff
No OneTemporary

D6070.id15587.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
Index: Mk/Uses/gem.mk
===================================================================
--- Mk/Uses/gem.mk
+++ Mk/Uses/gem.mk
@@ -0,0 +1,144 @@
+# $FreeBSD$
+#
+# Support rubygem packages
+#
+# Feature: gem
+# Usage: USES=gem[:autoplist]
+# Valid args: autoplist Automatically generate packing list
+#
+# MAINTAINER: portmgr@FreeBSD.org
+
+.if !defined(_INCLUDE_USES_GEM_MK)
+
+_INCLUDE_USES_GEM_MK= yes
+
+BUILD_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
+RUN_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
+
+PKGNAMEPREFIX?= rubygem-
+EXTRACT_SUFX= .gem
+EXTRACT_ONLY=
+DIST_SUBDIR= rubygem
+
+EXTRACT_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
+GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER}
+GEMS_DIR= ${GEMS_BASE_DIR}/gems
+DOC_DIR= ${GEMS_BASE_DIR}/doc
+CACHE_DIR= ${GEMS_BASE_DIR}/cache
+SPEC_DIR= ${GEMS_BASE_DIR}/specifications
+EXT_DIR= ${GEMS_BASE_DIR}/extensions
+GEM_NAME?= ${PORTNAME}-${PORTVERSION}
+GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME}
+GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME}
+GEM_SPEC?= ${SPEC_DIR}/${GEM_NAME}.gemspec
+GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem
+GEMSPEC= ${PORTNAME}.gemspec
+GEM_ENV+= RB_USER_INSTALL=yes
+
+.if defined(LANG) && !empty(LANG)
+GEM_ENV+= LANG=${LANG}
+.else
+GEM_ENV+= LANG=en_US.UTF-8
+.endif
+
+.if defined(LC_ALL) && !empty(LC_ALL)
+GEM_ENV+= LC_ALL=${LC_ALL}
+.else
+GEM_ENV+= LC_ALL=en_US.UTF-8
+.endif
+
+.if defined(LC_CTYPE) && !empty(LC_CTYPE)
+GEM_ENV+= LC_CTYPE=${LC_CTYPE}
+.else
+GEM_ENV+= LC_CTYPE=UTF-8
+.endif
+
+PLIST_SUB+= PORTVERSION="${PORTVERSION}" \
+ REV="${RUBY_GEM}" \
+ GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \
+ GEMS_DIR="${GEMS_DIR}" \
+ DOC_DIR="${DOC_DIR}" \
+ CACHE_DIR="${CACHE_DIR}" \
+ SPEC_DIR="${SPEC_DIR}" \
+ EXT_DIR="${EXT_DIR}" \
+ PORT="${PORTNAME}-${PORTVERSION}" \
+ GEM_NAME="${GEM_NAME}" \
+ GEM_LIB_DIR="${GEM_LIB_DIR}" \
+ GEM_DOC_DIR="${GEM_DOC_DIR}" \
+ GEM_SPEC="${GEM_SPEC}" \
+ GEM_CACHE="${GEM_CACHE}" \
+ EXTRACT_SUFX="${EXTRACT_SUFX}"
+
+RUBYGEMBIN= ${LOCALBASE}/bin/gem${RUBY_VER:S/.//}
+
+. if defined(DISTFILES)
+GEMFILES= ${DISTFILES:C/:[^:]+$//}
+. else
+GEMFILES= ${DISTNAME}${EXTRACT_SUFX}
+. endif
+
+RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
+
+.if ${PORT_OPTIONS:MDOCS}
+RUBYGEM_ARGS+= --rdoc --ri
+.else
+RUBYGEM_ARGS+= --no-rdoc --no-ri
+.endif
+
+.if !target(do-extract)
+do-extract:
+ @${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES}
+ @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \
+ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
+ ${ECHO_MSG} "===> Extraction failed unexpectedly."; \
+ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
+ fi; \
+ ${FALSE}; \
+ fi)
+.endif
+
+.if !target(do-build)
+do-build:
+ @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \
+ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
+ ${ECHO_MSG} "===> Compilation failed unexpectedly."; \
+ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
+ fi; \
+ ${FALSE}; \
+ fi)
+.endif
+
+.if !target(do-install)
+do-install:
+ (cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
+ ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/
+ ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} +
+ ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete
+ ${RM} -rf ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \
+ ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE}
+ ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE}
+.if defined(NOPORTDOCS)
+ -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR}
+.endif
+.endif
+
+.if ${gem_ARGS} == "autoplist"
+.if !target(post-install-script)
+post-install-script:
+ @${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
+.if !defined(NOPORTDOCS)
+ @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \
+ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
+.endif
+ @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \
+ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
+ @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \
+ ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \
+ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \
+ fi
+.endif
+.else
+IGNORE= Incorrect 'USES+=gem:${gem_ARGS}' expecting 'USES+=gem[:autoplist]'
+.endif
+
+.endif
Index: Mk/bsd.ruby.mk
===================================================================
--- Mk/bsd.ruby.mk
+++ Mk/bsd.ruby.mk
@@ -57,11 +57,8 @@
# documents from. If this is defined and not empty,
# USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is
# defined.
-# USE_RUBYGEMS - Says that the port uses rubygems packaging system.
-# RUBYGEM_AUTOPLIST - Generate packing list for rubygems based port
-# automatically.
+# USE_RUBYGEMS - Do not use this -- instead USES=gem
#
-#
# [variables that each port should not (re)define]
#
# RUBY_PKGNAMEPREFIX - Common PKGNAMEPREFIX for ruby ports
@@ -264,24 +261,6 @@
.if !defined(_INVALID_RUBY_VER)
-.if defined(LANG) && !empty(LANG)
-GEM_ENV+= LANG=${LANG}
-.else
-GEM_ENV+= LANG=en_US.UTF-8
-.endif
-
-.if defined(LC_ALL) && !empty(LC_ALL)
-GEM_ENV+= LC_ALL=${LC_ALL}
-.else
-GEM_ENV+= LC_ALL=en_US.UTF-8
-.endif
-
-.if defined(LC_CTYPE) && !empty(LC_CTYPE)
-GEM_ENV+= LC_CTYPE=${LC_CTYPE}
-.else
-GEM_ENV+= LC_CTYPE=UTF-8
-.endif
-
RUBY_DEFAULT_SUFFIX?= ${RUBY_DEFAULT_VER:S/.//}
RUBY_DISTVERSION?= ${RUBY_VERSION}
@@ -424,122 +403,6 @@
.endif
#
-# RubyGems support
-#
-.if defined(USE_RUBYGEMS)
-
-BUILD_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
-RUN_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
-
-PKGNAMEPREFIX?= rubygem-
-EXTRACT_SUFX= .gem
-EXTRACT_ONLY=
-DIST_SUBDIR= rubygem
-
-EXTRACT_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems
-GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER}
-GEMS_DIR= ${GEMS_BASE_DIR}/gems
-DOC_DIR= ${GEMS_BASE_DIR}/doc
-CACHE_DIR= ${GEMS_BASE_DIR}/cache
-SPEC_DIR= ${GEMS_BASE_DIR}/specifications
-EXT_DIR= ${GEMS_BASE_DIR}/extensions
-GEM_NAME?= ${PORTNAME}-${PORTVERSION}
-GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME}
-GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME}
-GEM_SPEC?= ${SPEC_DIR}/${GEM_NAME}.gemspec
-GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem
-
-PLIST_SUB+= PORTVERSION="${PORTVERSION}" \
- REV="${RUBY_GEM}" \
- GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \
- GEMS_DIR="${GEMS_DIR}" \
- DOC_DIR="${DOC_DIR}" \
- CACHE_DIR="${CACHE_DIR}" \
- SPEC_DIR="${SPEC_DIR}" \
- EXT_DIR="${EXT_DIR}" \
- PORT="${PORTNAME}-${PORTVERSION}" \
- GEM_NAME="${GEM_NAME}" \
- GEM_LIB_DIR="${GEM_LIB_DIR}" \
- GEM_DOC_DIR="${GEM_DOC_DIR}" \
- GEM_SPEC="${GEM_SPEC}" \
- GEM_CACHE="${GEM_CACHE}" \
- EXTRACT_SUFX="${EXTRACT_SUFX}"
-
-RUBYGEMBIN= ${LOCALBASE}/bin/gem${RUBY_VER:S/.//}
-
-. if defined(DISTFILES)
-GEMFILES= ${DISTFILES:C/:[^:]+$//}
-. else
-GEMFILES= ${DISTNAME}${EXTRACT_SUFX}
-. endif
-
-GEMSPEC= ${PORTNAME}.gemspec
-
-RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
-GEM_ENV+= RB_USER_INSTALL=yes
-.if defined(NOPORTDOCS)
-RUBYGEM_ARGS+= --no-rdoc --no-ri
-.else
-RUBYGEM_ARGS+= --rdoc --ri
-.endif
-
-.if !target(do-extract)
-do-extract:
- @${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES}
- @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \
- if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
- ${ECHO_MSG} "===> Extraction failed unexpectedly."; \
- (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
- fi; \
- ${FALSE}; \
- fi)
-.endif
-
-.if !target(do-build)
-do-build:
- @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \
- if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
- ${ECHO_MSG} "===> Compilation failed unexpectedly."; \
- (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
- fi; \
- ${FALSE}; \
- fi)
-.endif
-
-.if !target(do-install)
-do-install:
- (cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
- ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/
- ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} +
- ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete
- ${RM} -rf ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \
- ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE}
- ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE}
-.if defined(NOPORTDOCS)
- -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR}
-.endif
-.endif
-
-. if defined(RUBYGEM_AUTOPLIST)
-. if !target(post-install-script)
-post-install-script:
- @${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
-.if !defined(NOPORTDOCS)
- @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \
- 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
-.endif
- @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \
- 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
- @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \
- ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \
- 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \
- fi
-. endif
-. endif
-
-.endif # USE_RUBYGEMS
-
-#
# extconf.rb support
#
.if defined(USE_RUBY_EXTCONF)
Index: accessibility/rubygem-atk/Makefile
===================================================================
--- accessibility/rubygem-atk/Makefile
+++ accessibility/rubygem-atk/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= atk
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: archivers/rubygem-archive-tar-minitar/Makefile
===================================================================
--- archivers/rubygem-archive-tar-minitar/Makefile
+++ archivers/rubygem-archive-tar-minitar/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/minitar
Index: archivers/rubygem-archive-zip/Makefile
===================================================================
--- archivers/rubygem-archive-zip/Makefile
+++ archivers/rubygem-archive-zip/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: archivers/rubygem-bzip2-ruby/Makefile
===================================================================
--- archivers/rubygem-bzip2-ruby/Makefile
+++ archivers/rubygem-bzip2-ruby/Makefile
@@ -14,7 +14,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: archivers/rubygem-libarchive/Makefile
===================================================================
--- archivers/rubygem-libarchive/Makefile
+++ archivers/rubygem-libarchive/Makefile
@@ -12,10 +12,8 @@
LICENSE= BSD3CLAUSE
-USES= dos2unix libarchive
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= dos2unix gem:autoplist libarchive
DOS2UNIX_FILES= ext/depend
Index: archivers/rubygem-minitar/Makefile
===================================================================
--- archivers/rubygem-minitar/Makefile
+++ archivers/rubygem-minitar/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/minitar
Index: archivers/rubygem-ruby-xz/Makefile
===================================================================
--- archivers/rubygem-ruby-xz/Makefile
+++ archivers/rubygem-ruby-xz/Makefile
@@ -9,7 +9,6 @@
COMMENT= Ruby bindings for the liblzma library
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: archivers/rubygem-rubyzip/Makefile
===================================================================
--- archivers/rubygem-rubyzip/Makefile
+++ archivers/rubygem-rubyzip/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: archivers/rubygem-rubyzip2/Makefile
===================================================================
--- archivers/rubygem-rubyzip2/Makefile
+++ archivers/rubygem-rubyzip2/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: audio/rubygem-librmpd/Makefile
===================================================================
--- audio/rubygem-librmpd/Makefile
+++ audio/rubygem-librmpd/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: audio/rubygem-ruby-mp3info/Makefile
===================================================================
--- audio/rubygem-ruby-mp3info/Makefile
+++ audio/rubygem-ruby-mp3info/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: audio/rubygem-ruby-ogginfo/Makefile
===================================================================
--- audio/rubygem-ruby-ogginfo/Makefile
+++ audio/rubygem-ruby-ogginfo/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: audio/rubygem-ruby-shout/Makefile
===================================================================
--- audio/rubygem-ruby-shout/Makefile
+++ audio/rubygem-ruby-shout/Makefile
@@ -16,7 +16,6 @@
CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include"
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: benchmarks/rubygem-benchmark-ips/Makefile
===================================================================
--- benchmarks/rubygem-benchmark-ips/Makefile
+++ benchmarks/rubygem-benchmark-ips/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: benchmarks/rubygem-railsbench/Makefile
===================================================================
--- benchmarks/rubygem-railsbench/Makefile
+++ benchmarks/rubygem-railsbench/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/railsbench
Index: comms/rubygem-callsign/Makefile
===================================================================
--- comms/rubygem-callsign/Makefile
+++ comms/rubygem-callsign/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: comms/rubygem-ruby-termios/Makefile
===================================================================
--- comms/rubygem-ruby-termios/Makefile
+++ comms/rubygem-ruby-termios/Makefile
@@ -12,7 +12,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: converters/rubygem-bsdconv/Makefile
===================================================================
--- converters/rubygem-bsdconv/Makefile
+++ converters/rubygem-bsdconv/Makefile
@@ -19,7 +19,6 @@
GEM_NAME= ${DISTNAME}
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activemodel/Makefile
===================================================================
--- databases/rubygem-activemodel/Makefile
+++ databases/rubygem-activemodel/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activemodel4/Makefile
===================================================================
--- databases/rubygem-activemodel4/Makefile
+++ databases/rubygem-activemodel4/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activerecord-jdbc-adapter/Makefile
===================================================================
--- databases/rubygem-activerecord-jdbc-adapter/Makefile
+++ databases/rubygem-activerecord-jdbc-adapter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activerecord-jdbcmysql-adapter/Makefile
===================================================================
--- databases/rubygem-activerecord-jdbcmysql-adapter/Makefile
+++ databases/rubygem-activerecord-jdbcmysql-adapter/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activerecord-mysql-adapter/Makefile
===================================================================
--- databases/rubygem-activerecord-mysql-adapter/Makefile
+++ databases/rubygem-activerecord-mysql-adapter/Makefile
@@ -16,7 +16,6 @@
rubygem-mysql>=2.9.0:databases/rubygem-mysql
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activerecord-session_store/Makefile
===================================================================
--- databases/rubygem-activerecord-session_store/Makefile
+++ databases/rubygem-activerecord-session_store/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-activerecord/Makefile
===================================================================
--- databases/rubygem-activerecord/Makefile
+++ databases/rubygem-activerecord/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
OPTIONS_DEFINE= MYSQL PGSQL SQLITE3
MYSQL_DESC= Use native MySQL bindings
Index: databases/rubygem-activerecord4/Makefile
===================================================================
--- databases/rubygem-activerecord4/Makefile
+++ databases/rubygem-activerecord4/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-after_commit_queue/Makefile
===================================================================
--- databases/rubygem-after_commit_queue/Makefile
+++ databases/rubygem-after_commit_queue/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-amalgalite/Makefile
===================================================================
--- databases/rubygem-amalgalite/Makefile
+++ databases/rubygem-amalgalite/Makefile
@@ -15,8 +15,7 @@
RUN_DEPENDS= rubygem-arrayfields>=4.9:devel/rubygem-arrayfields
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/amalgalite-pack
Index: databases/rubygem-arel-helpers/Makefile
===================================================================
--- databases/rubygem-arel-helpers/Makefile
+++ databases/rubygem-arel-helpers/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-arel/Makefile
===================================================================
--- databases/rubygem-arel/Makefile
+++ databases/rubygem-arel/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-arel3/Makefile
===================================================================
--- databases/rubygem-arel3/Makefile
+++ databases/rubygem-arel3/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= ignore
Index: databases/rubygem-arel5/Makefile
===================================================================
--- databases/rubygem-arel5/Makefile
+++ databases/rubygem-arel5/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-arel6/Makefile
===================================================================
--- databases/rubygem-arel6/Makefile
+++ databases/rubygem-arel6/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-awesome_nested_set/Makefile
===================================================================
--- databases/rubygem-awesome_nested_set/Makefile
+++ databases/rubygem-awesome_nested_set/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-bdb1/Makefile
===================================================================
--- databases/rubygem-bdb1/Makefile
+++ databases/rubygem-bdb1/Makefile
@@ -11,10 +11,8 @@
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
-USES= execinfo
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= execinfo gem:autoplist
.include <bsd.port.pre.mk>
Index: databases/rubygem-bigrecord/Makefile
===================================================================
--- databases/rubygem-bigrecord/Makefile
+++ databases/rubygem-bigrecord/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-couchrest/Makefile
===================================================================
--- databases/rubygem-couchrest/Makefile
+++ databases/rubygem-couchrest/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-data_objects/Makefile
===================================================================
--- databases/rubygem-data_objects/Makefile
+++ databases/rubygem-data_objects/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-datamapper/Makefile
===================================================================
--- databases/rubygem-datamapper/Makefile
+++ databases/rubygem-datamapper/Makefile
@@ -25,7 +25,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dbd-mysql/Makefile
===================================================================
--- databases/rubygem-dbd-mysql/Makefile
+++ databases/rubygem-dbd-mysql/Makefile
@@ -14,7 +14,6 @@
rubygem-mysql>=0:databases/rubygem-mysql
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dbd-odbc/Makefile
===================================================================
--- databases/rubygem-dbd-odbc/Makefile
+++ databases/rubygem-dbd-odbc/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dbd-pg/Makefile
===================================================================
--- databases/rubygem-dbd-pg/Makefile
+++ databases/rubygem-dbd-pg/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dbd-sqlite3/Makefile
===================================================================
--- databases/rubygem-dbd-sqlite3/Makefile
+++ databases/rubygem-dbd-sqlite3/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dbi/Makefile
===================================================================
--- databases/rubygem-dbi/Makefile
+++ databases/rubygem-dbi/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/dbi bin/test_broken_dbi
Index: databases/rubygem-dm-active_model/Makefile
===================================================================
--- databases/rubygem-dm-active_model/Makefile
+++ databases/rubygem-dm-active_model/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-aggregates/Makefile
===================================================================
--- databases/rubygem-dm-aggregates/Makefile
+++ databases/rubygem-dm-aggregates/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-chunked_query/Makefile
===================================================================
--- databases/rubygem-dm-chunked_query/Makefile
+++ databases/rubygem-dm-chunked_query/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-constraints/Makefile
===================================================================
--- databases/rubygem-dm-constraints/Makefile
+++ databases/rubygem-dm-constraints/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-core/Makefile
===================================================================
--- databases/rubygem-dm-core/Makefile
+++ databases/rubygem-dm-core/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-devise/Makefile
===================================================================
--- databases/rubygem-dm-devise/Makefile
+++ databases/rubygem-dm-devise/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-do-adapter/Makefile
===================================================================
--- databases/rubygem-dm-do-adapter/Makefile
+++ databases/rubygem-dm-do-adapter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-migrations/Makefile
===================================================================
--- databases/rubygem-dm-migrations/Makefile
+++ databases/rubygem-dm-migrations/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-mysql-adapter/Makefile
===================================================================
--- databases/rubygem-dm-mysql-adapter/Makefile
+++ databases/rubygem-dm-mysql-adapter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-observer/Makefile
===================================================================
--- databases/rubygem-dm-observer/Makefile
+++ databases/rubygem-dm-observer/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-pager/Makefile
===================================================================
--- databases/rubygem-dm-pager/Makefile
+++ databases/rubygem-dm-pager/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-paperclip/Makefile
===================================================================
--- databases/rubygem-dm-paperclip/Makefile
+++ databases/rubygem-dm-paperclip/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-postgres-adapter/Makefile
===================================================================
--- databases/rubygem-dm-postgres-adapter/Makefile
+++ databases/rubygem-dm-postgres-adapter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-rails/Makefile
===================================================================
--- databases/rubygem-dm-rails/Makefile
+++ databases/rubygem-dm-rails/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-serializer/Makefile
===================================================================
--- databases/rubygem-dm-serializer/Makefile
+++ databases/rubygem-dm-serializer/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-timestamps/Makefile
===================================================================
--- databases/rubygem-dm-timestamps/Makefile
+++ databases/rubygem-dm-timestamps/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-transactions/Makefile
===================================================================
--- databases/rubygem-dm-transactions/Makefile
+++ databases/rubygem-dm-transactions/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-types/Makefile
===================================================================
--- databases/rubygem-dm-types/Makefile
+++ databases/rubygem-dm-types/Makefile
@@ -23,7 +23,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-dm-validations/Makefile
===================================================================
--- databases/rubygem-dm-validations/Makefile
+++ databases/rubygem-dm-validations/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-do_mysql/Makefile
===================================================================
--- databases/rubygem-do_mysql/Makefile
+++ databases/rubygem-do_mysql/Makefile
@@ -13,7 +13,6 @@
USE_MYSQL= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-do_postgres/Makefile
===================================================================
--- databases/rubygem-do_postgres/Makefile
+++ databases/rubygem-do_postgres/Makefile
@@ -11,10 +11,7 @@
RUN_DEPENDS= rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
-USES+= pgsql
-
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pgsql
.include <bsd.port.mk>
Index: databases/rubygem-do_sqlite3/Makefile
===================================================================
--- databases/rubygem-do_sqlite3/Makefile
+++ databases/rubygem-do_sqlite3/Makefile
@@ -14,8 +14,7 @@
RUN_DEPENDS= rubygem-data_objects>=0.10.13:databases/rubygem-data_objects
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE}
Index: databases/rubygem-em-redis-unified/Makefile
===================================================================
--- databases/rubygem-em-redis-unified/Makefile
+++ databases/rubygem-em-redis-unified/Makefile
@@ -13,8 +13,7 @@
RUN_DEPENDS= rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
NO_ARCH= yes
.include <bsd.port.mk>
Index: databases/rubygem-familia/Makefile
===================================================================
--- databases/rubygem-familia/Makefile
+++ databases/rubygem-familia/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-globalid/Makefile
===================================================================
--- databases/rubygem-globalid/Makefile
+++ databases/rubygem-globalid/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-her/Makefile
===================================================================
--- databases/rubygem-her/Makefile
+++ databases/rubygem-her/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-hiredis/Makefile
===================================================================
--- databases/rubygem-hiredis/Makefile
+++ databases/rubygem-hiredis/Makefile
@@ -15,8 +15,6 @@
RUN_DEPENDS= redis>=0:databases/redis
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= gmake
+USES= gem:autoplist gmake
.include <bsd.port.mk>
Index: databases/rubygem-jdbc-mysql/Makefile
===================================================================
--- databases/rubygem-jdbc-mysql/Makefile
+++ databases/rubygem-jdbc-mysql/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-leo_manager_client/Makefile
===================================================================
--- databases/rubygem-leo_manager_client/Makefile
+++ databases/rubygem-leo_manager_client/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-memcache-client/Makefile
===================================================================
--- databases/rubygem-memcache-client/Makefile
+++ databases/rubygem-memcache-client/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/memcached_top
Index: databases/rubygem-memcache/Makefile
===================================================================
--- databases/rubygem-memcache/Makefile
+++ databases/rubygem-memcache/Makefile
@@ -17,7 +17,6 @@
CONFIGURE_ARGS= --with-opt-dir=${LOCALBASE}
GEM_ENV= EXTERNAL_LIB="yes"
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-mysql/Makefile
===================================================================
--- databases/rubygem-mysql/Makefile
+++ databases/rubygem-mysql/Makefile
@@ -14,7 +14,6 @@
USE_MYSQL= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-mysql2/Makefile
===================================================================
--- databases/rubygem-mysql2/Makefile
+++ databases/rubygem-mysql2/Makefile
@@ -13,7 +13,6 @@
USE_MYSQL= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-openid-redis-store/Makefile
===================================================================
--- databases/rubygem-openid-redis-store/Makefile
+++ databases/rubygem-openid-redis-store/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-paranoia/Makefile
===================================================================
--- databases/rubygem-paranoia/Makefile
+++ databases/rubygem-paranoia/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-pg/Makefile
===================================================================
--- databases/rubygem-pg/Makefile
+++ databases/rubygem-pg/Makefile
@@ -15,9 +15,7 @@
CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
PG_CONFIG= ${LOCALBASE}/bin/pg_config
-USES= pgsql
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pgsql
.include <bsd.port.mk>
Index: databases/rubygem-rbase/Makefile
===================================================================
--- databases/rubygem-rbase/Makefile
+++ databases/rubygem-rbase/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-redis-actionpack/Makefile
===================================================================
--- databases/rubygem-redis-actionpack/Makefile
+++ databases/rubygem-redis-actionpack/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-redis-namespace/Makefile
===================================================================
--- databases/rubygem-redis-namespace/Makefile
+++ databases/rubygem-redis-namespace/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-redis/Makefile
===================================================================
--- databases/rubygem-redis/Makefile
+++ databases/rubygem-redis/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-rubyrep/Makefile
===================================================================
--- databases/rubygem-rubyrep/Makefile
+++ databases/rubygem-rubyrep/Makefile
@@ -21,9 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/rubyrep rubyrep
USE_RC_SUBR= rubyrep
Index: databases/rubygem-seed-fu/Makefile
===================================================================
--- databases/rubygem-seed-fu/Makefile
+++ databases/rubygem-seed-fu/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-sqlite3-ruby/Makefile
===================================================================
--- databases/rubygem-sqlite3-ruby/Makefile
+++ databases/rubygem-sqlite3-ruby/Makefile
@@ -19,8 +19,7 @@
CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE}
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sqlite3_ruby
Index: databases/rubygem-sqlite3/Makefile
===================================================================
--- databases/rubygem-sqlite3/Makefile
+++ databases/rubygem-sqlite3/Makefile
@@ -17,7 +17,6 @@
CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE}
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-state_machines-activemodel/Makefile
===================================================================
--- databases/rubygem-state_machines-activemodel/Makefile
+++ databases/rubygem-state_machines-activemodel/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-state_machines-activerecord/Makefile
===================================================================
--- databases/rubygem-state_machines-activerecord/Makefile
+++ databases/rubygem-state_machines-activerecord/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: databases/rubygem-tarantool/Makefile
===================================================================
--- databases/rubygem-tarantool/Makefile
+++ databases/rubygem-tarantool/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: deskutils/rubygem-shellplay/Makefile
===================================================================
--- deskutils/rubygem-shellplay/Makefile
+++ deskutils/rubygem-shellplay/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/shellcat bin/shellexport bin/shellplay bin/shellrecord
.include <bsd.port.mk>
Index: deskutils/rubygem-taskjuggler/Makefile
===================================================================
--- deskutils/rubygem-taskjuggler/Makefile
+++ deskutils/rubygem-taskjuggler/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/tj3 \
bin/tj3client \
Index: devel/rubygem-CFPropertyList/Makefile
===================================================================
--- devel/rubygem-CFPropertyList/Makefile
+++ devel/rubygem-CFPropertyList/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-abstract/Makefile
===================================================================
--- devel/rubygem-abstract/Makefile
+++ devel/rubygem-abstract/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-actionpack-action_caching/Makefile
===================================================================
--- devel/rubygem-actionpack-action_caching/Makefile
+++ devel/rubygem-actionpack-action_caching/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-actionview/Makefile
===================================================================
--- devel/rubygem-actionview/Makefile
+++ devel/rubygem-actionview/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-active_scaffold/Makefile
===================================================================
--- devel/rubygem-active_scaffold/Makefile
+++ devel/rubygem-active_scaffold/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-activejob/Makefile
===================================================================
--- devel/rubygem-activejob/Makefile
+++ devel/rubygem-activejob/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-activemessaging/Makefile
===================================================================
--- devel/rubygem-activemessaging/Makefile
+++ devel/rubygem-activemessaging/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-activerecord-deprecated_finders/Makefile
===================================================================
--- devel/rubygem-activerecord-deprecated_finders/Makefile
+++ devel/rubygem-activerecord-deprecated_finders/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-activesupport/Makefile
===================================================================
--- devel/rubygem-activesupport/Makefile
+++ devel/rubygem-activesupport/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-activesupport4/Makefile
===================================================================
--- devel/rubygem-activesupport4/Makefile
+++ devel/rubygem-activesupport4/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-akismet/Makefile
===================================================================
--- devel/rubygem-akismet/Makefile
+++ devel/rubygem-akismet/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-algebrick/Makefile
===================================================================
--- devel/rubygem-algebrick/Makefile
+++ devel/rubygem-algebrick/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-algorithms/Makefile
===================================================================
--- devel/rubygem-algorithms/Makefile
+++ devel/rubygem-algorithms/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-allison/Makefile
===================================================================
--- devel/rubygem-allison/Makefile
+++ devel/rubygem-allison/Makefile
@@ -12,8 +12,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/allison
Index: devel/rubygem-analogger/Makefile
===================================================================
--- devel/rubygem-analogger/Makefile
+++ devel/rubygem-analogger/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/analogger
ruby_OLD_CMD= ruby
Index: devel/rubygem-annoy/Makefile
===================================================================
--- devel/rubygem-annoy/Makefile
+++ devel/rubygem-annoy/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ansi/Makefile
===================================================================
--- devel/rubygem-ansi/Makefile
+++ devel/rubygem-ansi/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-apipie-bindings/Makefile
===================================================================
--- devel/rubygem-apipie-bindings/Makefile
+++ devel/rubygem-apipie-bindings/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-apipie-params/Makefile
===================================================================
--- devel/rubygem-apipie-params/Makefile
+++ devel/rubygem-apipie-params/Makefile
@@ -15,7 +15,6 @@
USE_RAKE= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-app_config/Makefile
===================================================================
--- devel/rubygem-app_config/Makefile
+++ devel/rubygem-app_config/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-arr-pm/Makefile
===================================================================
--- devel/rubygem-arr-pm/Makefile
+++ devel/rubygem-arr-pm/Makefile
@@ -10,7 +10,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-arrayfields/Makefile
===================================================================
--- devel/rubygem-arrayfields/Makefile
+++ devel/rubygem-arrayfields/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ascii85/Makefile
===================================================================
--- devel/rubygem-ascii85/Makefile
+++ devel/rubygem-ascii85/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ascii85
Index: devel/rubygem-asetus/Makefile
===================================================================
--- devel/rubygem-asetus/Makefile
+++ devel/rubygem-asetus/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-aspectr/Makefile
===================================================================
--- devel/rubygem-aspectr/Makefile
+++ devel/rubygem-aspectr/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ast/Makefile
===================================================================
--- devel/rubygem-ast/Makefile
+++ devel/rubygem-ast/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-astrolabe/Makefile
===================================================================
--- devel/rubygem-astrolabe/Makefile
+++ devel/rubygem-astrolabe/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-atomic/Makefile
===================================================================
--- devel/rubygem-atomic/Makefile
+++ devel/rubygem-atomic/Makefile
@@ -12,7 +12,6 @@
LICENSE= APACHE20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-atoulme-antwrap/Makefile
===================================================================
--- devel/rubygem-atoulme-antwrap/Makefile
+++ devel/rubygem-atoulme-antwrap/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-attic/Makefile
===================================================================
--- devel/rubygem-attic/Makefile
+++ devel/rubygem-attic/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-attr_required/Makefile
===================================================================
--- devel/rubygem-attr_required/Makefile
+++ devel/rubygem-attr_required/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-authlogic/Makefile
===================================================================
--- devel/rubygem-authlogic/Makefile
+++ devel/rubygem-authlogic/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-awesome_print/Makefile
===================================================================
--- devel/rubygem-awesome_print/Makefile
+++ devel/rubygem-awesome_print/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-aws-sdk-core/Makefile
===================================================================
--- devel/rubygem-aws-sdk-core/Makefile
+++ devel/rubygem-aws-sdk-core/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/aws.rb
Index: devel/rubygem-aws-sdk-resources/Makefile
===================================================================
--- devel/rubygem-aws-sdk-resources/Makefile
+++ devel/rubygem-aws-sdk-resources/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-aws-sdk-v1/Makefile
===================================================================
--- devel/rubygem-aws-sdk-v1/Makefile
+++ devel/rubygem-aws-sdk-v1/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/aws-rb
Index: devel/rubygem-aws-sdk/Makefile
===================================================================
--- devel/rubygem-aws-sdk/Makefile
+++ devel/rubygem-aws-sdk/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-axiom-types/Makefile
===================================================================
--- devel/rubygem-axiom-types/Makefile
+++ devel/rubygem-axiom-types/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-backports/Makefile
===================================================================
--- devel/rubygem-backports/Makefile
+++ devel/rubygem-backports/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bacon/Makefile
===================================================================
--- devel/rubygem-bacon/Makefile
+++ devel/rubygem-bacon/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bacon
Index: devel/rubygem-benelux/Makefile
===================================================================
--- devel/rubygem-benelux/Makefile
+++ devel/rubygem-benelux/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bin_utils/Makefile
===================================================================
--- devel/rubygem-bin_utils/Makefile
+++ devel/rubygem-bin_utils/Makefile
@@ -10,7 +10,6 @@
COMMENT= Extracting binary integers from binary string and packing back
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bindata/Makefile
===================================================================
--- devel/rubygem-bindata/Makefile
+++ devel/rubygem-bindata/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-binding_of_caller/Makefile
===================================================================
--- devel/rubygem-binding_of_caller/Makefile
+++ devel/rubygem-binding_of_caller/Makefile
@@ -13,7 +13,6 @@
RUN_DEPENDS= rubygem-debug_inspector>=0.0.1:devel/rubygem-debug_inspector
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bio/Makefile
===================================================================
--- devel/rubygem-bio/Makefile
+++ devel/rubygem-bio/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= sample/biofetch.rb
ruby_OLD_CMD= /usr/proj/bioruby/bin/ruby
Index: devel/rubygem-blankslate/Makefile
===================================================================
--- devel/rubygem-blankslate/Makefile
+++ devel/rubygem-blankslate/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-blobstore_client/Makefile
===================================================================
--- devel/rubygem-blobstore_client/Makefile
+++ devel/rubygem-blobstore_client/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/blobstore_client_console
Index: devel/rubygem-blockenspiel/Makefile
===================================================================
--- devel/rubygem-blockenspiel/Makefile
+++ devel/rubygem-blockenspiel/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bones/Makefile
===================================================================
--- devel/rubygem-bones/Makefile
+++ devel/rubygem-bones/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bones
Index: devel/rubygem-bosh-template/Makefile
===================================================================
--- devel/rubygem-bosh-template/Makefile
+++ devel/rubygem-bosh-template/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bosh-template
Index: devel/rubygem-bosh_common/Makefile
===================================================================
--- devel/rubygem-bosh_common/Makefile
+++ devel/rubygem-bosh_common/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bson/Makefile
===================================================================
--- devel/rubygem-bson/Makefile
+++ devel/rubygem-bson/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bson1/Makefile
===================================================================
--- devel/rubygem-bson1/Makefile
+++ devel/rubygem-bson1/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^1\.
Index: devel/rubygem-buftok/Makefile
===================================================================
--- devel/rubygem-buftok/Makefile
+++ devel/rubygem-buftok/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-bugspots/Makefile
===================================================================
--- devel/rubygem-bugspots/Makefile
+++ devel/rubygem-bugspots/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bugspots bin/git-bugspots
Index: devel/rubygem-builder/Makefile
===================================================================
--- devel/rubygem-builder/Makefile
+++ devel/rubygem-builder/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-builder32/Makefile
===================================================================
--- devel/rubygem-builder32/Makefile
+++ devel/rubygem-builder32/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-byebug/Makefile
===================================================================
--- devel/rubygem-byebug/Makefile
+++ devel/rubygem-byebug/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/byebug
Index: devel/rubygem-cabin/Makefile
===================================================================
--- devel/rubygem-cabin/Makefile
+++ devel/rubygem-cabin/Makefile
@@ -10,8 +10,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rubygems-cabin-test
.include <bsd.port.mk>
Index: devel/rubygem-caesars/Makefile
===================================================================
--- devel/rubygem-caesars/Makefile
+++ devel/rubygem-caesars/Makefile
@@ -13,9 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/example
.include <bsd.port.mk>
Index: devel/rubygem-cairo-gobject/Makefile
===================================================================
--- devel/rubygem-cairo-gobject/Makefile
+++ devel/rubygem-cairo-gobject/Makefile
@@ -14,7 +14,6 @@
rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-capybara/Makefile
===================================================================
--- devel/rubygem-capybara/Makefile
+++ devel/rubygem-capybara/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-essentials/Makefile
===================================================================
--- devel/rubygem-celluloid-essentials/Makefile
+++ devel/rubygem-celluloid-essentials/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-extras/Makefile
===================================================================
--- devel/rubygem-celluloid-extras/Makefile
+++ devel/rubygem-celluloid-extras/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-fsm/Makefile
===================================================================
--- devel/rubygem-celluloid-fsm/Makefile
+++ devel/rubygem-celluloid-fsm/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-io/Makefile
===================================================================
--- devel/rubygem-celluloid-io/Makefile
+++ devel/rubygem-celluloid-io/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-pool/Makefile
===================================================================
--- devel/rubygem-celluloid-pool/Makefile
+++ devel/rubygem-celluloid-pool/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid-supervision/Makefile
===================================================================
--- devel/rubygem-celluloid-supervision/Makefile
+++ devel/rubygem-celluloid-supervision/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-celluloid/Makefile
===================================================================
--- devel/rubygem-celluloid/Makefile
+++ devel/rubygem-celluloid/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cf-uaa-lib/Makefile
===================================================================
--- devel/rubygem-cf-uaa-lib/Makefile
+++ devel/rubygem-cf-uaa-lib/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-childprocess/Makefile
===================================================================
--- devel/rubygem-childprocess/Makefile
+++ devel/rubygem-childprocess/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-chronic/Makefile
===================================================================
--- devel/rubygem-chronic/Makefile
+++ devel/rubygem-chronic/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-clamp/Makefile
===================================================================
--- devel/rubygem-clamp/Makefile
+++ devel/rubygem-clamp/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-classifier-reborn/Makefile
===================================================================
--- devel/rubygem-classifier-reborn/Makefile
+++ devel/rubygem-classifier-reborn/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-classifier/Makefile
===================================================================
--- devel/rubygem-classifier/Makefile
+++ devel/rubygem-classifier/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-climate_control/Makefile
===================================================================
--- devel/rubygem-climate_control/Makefile
+++ devel/rubygem-climate_control/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-clio/Makefile
===================================================================
--- devel/rubygem-clio/Makefile
+++ devel/rubygem-clio/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cliprompt/Makefile
===================================================================
--- devel/rubygem-cliprompt/Makefile
+++ devel/rubygem-cliprompt/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cloudfiles/Makefile
===================================================================
--- devel/rubygem-cloudfiles/Makefile
+++ devel/rubygem-cloudfiles/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cocaine/Makefile
===================================================================
--- devel/rubygem-cocaine/Makefile
+++ devel/rubygem-cocaine/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-coercible/Makefile
===================================================================
--- devel/rubygem-coercible/Makefile
+++ devel/rubygem-coercible/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-coffee-rails/Makefile
===================================================================
--- devel/rubygem-coffee-rails/Makefile
+++ devel/rubygem-coffee-rails/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^3\.
Index: devel/rubygem-coffee-rails4/Makefile
===================================================================
--- devel/rubygem-coffee-rails4/Makefile
+++ devel/rubygem-coffee-rails4/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-coffee-script-source/Makefile
===================================================================
--- devel/rubygem-coffee-script-source/Makefile
+++ devel/rubygem-coffee-script-source/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-coffee-script/Makefile
===================================================================
--- devel/rubygem-coffee-script/Makefile
+++ devel/rubygem-coffee-script/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-colorize/Makefile
===================================================================
--- devel/rubygem-colorize/Makefile
+++ devel/rubygem-colorize/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-columnize/Makefile
===================================================================
--- devel/rubygem-columnize/Makefile
+++ devel/rubygem-columnize/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-commander/Makefile
===================================================================
--- devel/rubygem-commander/Makefile
+++ devel/rubygem-commander/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/commander
Index: devel/rubygem-concurrent-ruby-edge/Makefile
===================================================================
--- devel/rubygem-concurrent-ruby-edge/Makefile
+++ devel/rubygem-concurrent-ruby-edge/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-concurrent-ruby/Makefile
===================================================================
--- devel/rubygem-concurrent-ruby/Makefile
+++ devel/rubygem-concurrent-ruby/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-configatron/Makefile
===================================================================
--- devel/rubygem-configatron/Makefile
+++ devel/rubygem-configatron/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-configstruct/Makefile
===================================================================
--- devel/rubygem-configstruct/Makefile
+++ devel/rubygem-configstruct/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-configuration/Makefile
===================================================================
--- devel/rubygem-configuration/Makefile
+++ devel/rubygem-configuration/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cool.io/Makefile
===================================================================
--- devel/rubygem-cool.io/Makefile
+++ devel/rubygem-cool.io/Makefile
@@ -15,7 +15,6 @@
rubygem-iobuffer>=1.0.0:devel/rubygem-iobuffer
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-corefines/Makefile
===================================================================
--- devel/rubygem-corefines/Makefile
+++ devel/rubygem-corefines/Makefile
@@ -9,7 +9,6 @@
COMMENT= Refinements for extending Rubys built-in classes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-crack/Makefile
===================================================================
--- devel/rubygem-crack/Makefile
+++ devel/rubygem-crack/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cri/Makefile
===================================================================
--- devel/rubygem-cri/Makefile
+++ devel/rubygem-cri/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cucumber-core/Makefile
===================================================================
--- devel/rubygem-cucumber-core/Makefile
+++ devel/rubygem-cucumber-core/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cucumber-wire/Makefile
===================================================================
--- devel/rubygem-cucumber-wire/Makefile
+++ devel/rubygem-cucumber-wire/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cucumber/Makefile
===================================================================
--- devel/rubygem-cucumber/Makefile
+++ devel/rubygem-cucumber/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/cucumber
Index: devel/rubygem-curses/Makefile
===================================================================
--- devel/rubygem-curses/Makefile
+++ devel/rubygem-curses/Makefile
@@ -12,7 +12,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-cyoi/Makefile
===================================================================
--- devel/rubygem-cyoi/Makefile
+++ devel/rubygem-cyoi/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/cyoi
Index: devel/rubygem-daemon_controller/Makefile
===================================================================
--- devel/rubygem-daemon_controller/Makefile
+++ devel/rubygem-daemon_controller/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-daemons/Makefile
===================================================================
--- devel/rubygem-daemons/Makefile
+++ devel/rubygem-daemons/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-debug_inspector/Makefile
===================================================================
--- devel/rubygem-debug_inspector/Makefile
+++ devel/rubygem-debug_inspector/Makefile
@@ -11,7 +11,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-debugger-linecache/Makefile
===================================================================
--- devel/rubygem-debugger-linecache/Makefile
+++ devel/rubygem-debugger-linecache/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-debugger-xml/Makefile
===================================================================
--- devel/rubygem-debugger-xml/Makefile
+++ devel/rubygem-debugger-xml/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rdebug-ide bin/rdebug-vim
Index: devel/rubygem-deep_merge/Makefile
===================================================================
--- devel/rubygem-deep_merge/Makefile
+++ devel/rubygem-deep_merge/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-deep_test/Makefile
===================================================================
--- devel/rubygem-deep_test/Makefile
+++ devel/rubygem-deep_test/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/deep_test
Index: devel/rubygem-deface/Makefile
===================================================================
--- devel/rubygem-deface/Makefile
+++ devel/rubygem-deface/Makefile
@@ -16,7 +16,6 @@
rubygem-rails4>=3.1:www/rubygem-rails4
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-default_value_for/Makefile
===================================================================
--- devel/rubygem-default_value_for/Makefile
+++ devel/rubygem-default_value_for/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-delayed_job/Makefile
===================================================================
--- devel/rubygem-delayed_job/Makefile
+++ devel/rubygem-delayed_job/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-delayer-deferred/Makefile
===================================================================
--- devel/rubygem-delayer-deferred/Makefile
+++ devel/rubygem-delayer-deferred/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-delayer/Makefile
===================================================================
--- devel/rubygem-delayer/Makefile
+++ devel/rubygem-delayer/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-deprecated/Makefile
===================================================================
--- devel/rubygem-deprecated/Makefile
+++ devel/rubygem-deprecated/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-deprecated2/Makefile
===================================================================
--- devel/rubygem-deprecated2/Makefile
+++ devel/rubygem-deprecated2/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.[0-9]*
Index: devel/rubygem-descendants_tracker/Makefile
===================================================================
--- devel/rubygem-descendants_tracker/Makefile
+++ devel/rubygem-descendants_tracker/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-devise-async/Makefile
===================================================================
--- devel/rubygem-devise-async/Makefile
+++ devel/rubygem-devise-async/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-devise/Makefile
===================================================================
--- devel/rubygem-devise/Makefile
+++ devel/rubygem-devise/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
BROKEN_RUBY23= yes
Index: devel/rubygem-directory_watcher/Makefile
===================================================================
--- devel/rubygem-directory_watcher/Makefile
+++ devel/rubygem-directory_watcher/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ditz/Makefile
===================================================================
--- devel/rubygem-ditz/Makefile
+++ devel/rubygem-ditz/Makefile
@@ -18,9 +18,7 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/ditz
ruby_OLD_CMD= /usr/bin/ruby1.8
Index: devel/rubygem-docile/Makefile
===================================================================
--- devel/rubygem-docile/Makefile
+++ devel/rubygem-docile/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-drydock/Makefile
===================================================================
--- devel/rubygem-drydock/Makefile
+++ devel/rubygem-drydock/Makefile
@@ -15,9 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/example
.include <bsd.port.mk>
Index: devel/rubygem-dynflow/Makefile
===================================================================
--- devel/rubygem-dynflow/Makefile
+++ devel/rubygem-dynflow/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-edavis10-object_daddy/Makefile
===================================================================
--- devel/rubygem-edavis10-object_daddy/Makefile
+++ devel/rubygem-edavis10-object_daddy/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-elif/Makefile
===================================================================
--- devel/rubygem-elif/Makefile
+++ devel/rubygem-elif/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-enumerize/Makefile
===================================================================
--- devel/rubygem-enumerize/Makefile
+++ devel/rubygem-enumerize/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-equalizer/Makefile
===================================================================
--- devel/rubygem-equalizer/Makefile
+++ devel/rubygem-equalizer/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-errand/Makefile
===================================================================
--- devel/rubygem-errand/Makefile
+++ devel/rubygem-errand/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-event-bus/Makefile
===================================================================
--- devel/rubygem-event-bus/Makefile
+++ devel/rubygem-event-bus/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-eventmachine/Makefile
===================================================================
--- devel/rubygem-eventmachine/Makefile
+++ devel/rubygem-eventmachine/Makefile
@@ -15,7 +15,6 @@
LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-excon/Makefile
===================================================================
--- devel/rubygem-excon/Makefile
+++ devel/rubygem-excon/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-execjs/Makefile
===================================================================
--- devel/rubygem-execjs/Makefile
+++ devel/rubygem-execjs/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-extlib/Makefile
===================================================================
--- devel/rubygem-extlib/Makefile
+++ devel/rubygem-extlib/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-facets/Makefile
===================================================================
--- devel/rubygem-facets/Makefile
+++ devel/rubygem-facets/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-faraday_middleware-multi_json/Makefile
===================================================================
--- devel/rubygem-faraday_middleware-multi_json/Makefile
+++ devel/rubygem-faraday_middleware-multi_json/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fast-stemmer/Makefile
===================================================================
--- devel/rubygem-fast-stemmer/Makefile
+++ devel/rubygem-fast-stemmer/Makefile
@@ -11,7 +11,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fast_gettext/Makefile
===================================================================
--- devel/rubygem-fast_gettext/Makefile
+++ devel/rubygem-fast_gettext/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fast_stack/Makefile
===================================================================
--- devel/rubygem-fast_stack/Makefile
+++ devel/rubygem-fast_stack/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fast_xor/Makefile
===================================================================
--- devel/rubygem-fast_xor/Makefile
+++ devel/rubygem-fast_xor/Makefile
@@ -16,7 +16,6 @@
rubygem-rake-compiler>=0:devel/rubygem-rake-compiler
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fastercsv/Makefile
===================================================================
--- devel/rubygem-fastercsv/Makefile
+++ devel/rubygem-fastercsv/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fastri/Makefile
===================================================================
--- devel/rubygem-fastri/Makefile
+++ devel/rubygem-fastri/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/fastri-server bin/fri bin/qri bin/ri-emacs
Index: devel/rubygem-fastthread/Makefile
===================================================================
--- devel/rubygem-fastthread/Makefile
+++ devel/rubygem-fastthread/Makefile
@@ -12,7 +12,6 @@
LICENSE= LGPL21
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fattr/Makefile
===================================================================
--- devel/rubygem-fattr/Makefile
+++ devel/rubygem-fattr/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ffi-compiler/Makefile
===================================================================
--- devel/rubygem-ffi-compiler/Makefile
+++ devel/rubygem-ffi-compiler/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ffi-yajl/Makefile
===================================================================
--- devel/rubygem-ffi-yajl/Makefile
+++ devel/rubygem-ffi-yajl/Makefile
@@ -15,8 +15,7 @@
rubygem-libyajl2>=1.0.0:devel/rubygem-libyajl2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ffi-yajl-bench
Index: devel/rubygem-ffi/Makefile
===================================================================
--- devel/rubygem-ffi/Makefile
+++ devel/rubygem-ffi/Makefile
@@ -14,7 +14,6 @@
LIB_DEPENDS= libffi.so:devel/libffi
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-file-tail/Makefile
===================================================================
--- devel/rubygem-file-tail/Makefile
+++ devel/rubygem-file-tail/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-flexmock/Makefile
===================================================================
--- devel/rubygem-flexmock/Makefile
+++ devel/rubygem-flexmock/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fluent-logger/Makefile
===================================================================
--- devel/rubygem-fluent-logger/Makefile
+++ devel/rubygem-fluent-logger/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/fluent-post
Index: devel/rubygem-fog-core/Makefile
===================================================================
--- devel/rubygem-fog-core/Makefile
+++ devel/rubygem-fog-core/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fog-json/Makefile
===================================================================
--- devel/rubygem-fog-json/Makefile
+++ devel/rubygem-fog-json/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-fog/Makefile
===================================================================
--- devel/rubygem-fog/Makefile
+++ devel/rubygem-fog/Makefile
@@ -43,8 +43,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/fog
Index: devel/rubygem-font-awesome-rails-rails4/Makefile
===================================================================
--- devel/rubygem-font-awesome-rails-rails4/Makefile
+++ devel/rubygem-font-awesome-rails-rails4/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-font-awesome-rails/Makefile
===================================================================
--- devel/rubygem-font-awesome-rails/Makefile
+++ devel/rubygem-font-awesome-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-foreigner/Makefile
===================================================================
--- devel/rubygem-foreigner/Makefile
+++ devel/rubygem-foreigner/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-foreman/Makefile
===================================================================
--- devel/rubygem-foreman/Makefile
+++ devel/rubygem-foreman/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= spec/resources/bin/env
PLIST_FILES= bin/foreman
Index: devel/rubygem-formatador/Makefile
===================================================================
--- devel/rubygem-formatador/Makefile
+++ devel/rubygem-formatador/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gdata/Makefile
===================================================================
--- devel/rubygem-gdata/Makefile
+++ devel/rubygem-gdata/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gem_plugin/Makefile
===================================================================
--- devel/rubygem-gem_plugin/Makefile
+++ devel/rubygem-gem_plugin/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/gpgen
Index: devel/rubygem-gemcutter/Makefile
===================================================================
--- devel/rubygem-gemcutter/Makefile
+++ devel/rubygem-gemcutter/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gemnasium-gitlab-service/Makefile
===================================================================
--- devel/rubygem-gemnasium-gitlab-service/Makefile
+++ devel/rubygem-gemnasium-gitlab-service/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gems/Makefile
===================================================================
--- devel/rubygem-gems/Makefile
+++ devel/rubygem-gems/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-generator_spec-rails4/Makefile
===================================================================
--- devel/rubygem-generator_spec-rails4/Makefile
+++ devel/rubygem-generator_spec-rails4/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-generator_spec/Makefile
===================================================================
--- devel/rubygem-generator_spec/Makefile
+++ devel/rubygem-generator_spec/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-georuby/Makefile
===================================================================
--- devel/rubygem-georuby/Makefile
+++ devel/rubygem-georuby/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-get_process_mem/Makefile
===================================================================
--- devel/rubygem-get_process_mem/Makefile
+++ devel/rubygem-get_process_mem/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-getopt/Makefile
===================================================================
--- devel/rubygem-getopt/Makefile
+++ devel/rubygem-getopt/Makefile
@@ -13,7 +13,6 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gettext/Makefile
===================================================================
--- devel/rubygem-gettext/Makefile
+++ devel/rubygem-gettext/Makefile
@@ -15,12 +15,10 @@
RUN_DEPENDS= rubygem-locale>=2.0.5:devel/rubygem-locale \
rubygem-text>=1.3.0:textproc/rubygem-text
-USES= shebangfix
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist shebangfix
SHEBANG_FILES= samples/*.rb samples/cgi/*.rb
PLIST_FILES= bin/rmsgcat bin/rmsgfmt bin/rmsginit bin/rmsgmerge bin/rxgettext
Index: devel/rubygem-gh/Makefile
===================================================================
--- devel/rubygem-gh/Makefile
+++ devel/rubygem-gh/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gibbler/Makefile
===================================================================
--- devel/rubygem-gibbler/Makefile
+++ devel/rubygem-gibbler/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gio2/Makefile
===================================================================
--- devel/rubygem-gio2/Makefile
+++ devel/rubygem-gio2/Makefile
@@ -14,7 +14,6 @@
rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-git-version-bump/Makefile
===================================================================
--- devel/rubygem-git-version-bump/Makefile
+++ devel/rubygem-git-version-bump/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/git-version-bump
Index: devel/rubygem-git/Makefile
===================================================================
--- devel/rubygem-git/Makefile
+++ devel/rubygem-git/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-github_api/Makefile
===================================================================
--- devel/rubygem-github_api/Makefile
+++ devel/rubygem-github_api/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gitlab-pygments.rb/Makefile
===================================================================
--- devel/rubygem-gitlab-pygments.rb/Makefile
+++ devel/rubygem-gitlab-pygments.rb/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gitlab_git/Makefile
===================================================================
--- devel/rubygem-gitlab_git/Makefile
+++ devel/rubygem-gitlab_git/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gitlab_meta/Makefile
===================================================================
--- devel/rubygem-gitlab_meta/Makefile
+++ devel/rubygem-gitlab_meta/Makefile
@@ -13,9 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= cpe
+USES= cpe gem:autoplist
CPE_PRODUCT= gitlab
CPE_VENDOR= gitlab
Index: devel/rubygem-glib2/Makefile
===================================================================
--- devel/rubygem-glib2/Makefile
+++ devel/rubygem-glib2/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= glib20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gobject-introspection/Makefile
===================================================================
--- devel/rubygem-gobject-introspection/Makefile
+++ devel/rubygem-gobject-introspection/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= introspection
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-graf/Makefile
===================================================================
--- devel/rubygem-graf/Makefile
+++ devel/rubygem-graf/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/graf
.include <bsd.port.mk>
Index: devel/rubygem-grape-entity/Makefile
===================================================================
--- devel/rubygem-grape-entity/Makefile
+++ devel/rubygem-grape-entity/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-grape-swagger/Makefile
===================================================================
--- devel/rubygem-grape-swagger/Makefile
+++ devel/rubygem-grape-swagger/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-grape/Makefile
===================================================================
--- devel/rubygem-grape/Makefile
+++ devel/rubygem-grape/Makefile
@@ -23,7 +23,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-grit/Makefile
===================================================================
--- devel/rubygem-grit/Makefile
+++ devel/rubygem-grit/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-guess_html_encoding/Makefile
===================================================================
--- devel/rubygem-guess_html_encoding/Makefile
+++ devel/rubygem-guess_html_encoding/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-gyoku/Makefile
===================================================================
--- devel/rubygem-gyoku/Makefile
+++ devel/rubygem-gyoku/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hashdiff/Makefile
===================================================================
--- devel/rubygem-hashdiff/Makefile
+++ devel/rubygem-hashdiff/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hashery/Makefile
===================================================================
--- devel/rubygem-hashery/Makefile
+++ devel/rubygem-hashery/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hashie/Makefile
===================================================================
--- devel/rubygem-hashie/Makefile
+++ devel/rubygem-hashie/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hashie2/Makefile
===================================================================
--- devel/rubygem-hashie2/Makefile
+++ devel/rubygem-hashie2/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.
Index: devel/rubygem-highline/Makefile
===================================================================
--- devel/rubygem-highline/Makefile
+++ devel/rubygem-highline/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hike/Makefile
===================================================================
--- devel/rubygem-hike/Makefile
+++ devel/rubygem-hike/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hitimes/Makefile
===================================================================
--- devel/rubygem-hitimes/Makefile
+++ devel/rubygem-hitimes/Makefile
@@ -12,7 +12,6 @@
LICENSE= ISCL
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-hoe/Makefile
===================================================================
--- devel/rubygem-hoe/Makefile
+++ devel/rubygem-hoe/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sow
Index: devel/rubygem-holidays/Makefile
===================================================================
--- devel/rubygem-holidays/Makefile
+++ devel/rubygem-holidays/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-i18n/Makefile
===================================================================
--- devel/rubygem-i18n/Makefile
+++ devel/rubygem-i18n/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-icalendar/Makefile
===================================================================
--- devel/rubygem-icalendar/Makefile
+++ devel/rubygem-icalendar/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ice_cube/Makefile
===================================================================
--- devel/rubygem-ice_cube/Makefile
+++ devel/rubygem-ice_cube/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ice_nine/Makefile
===================================================================
--- devel/rubygem-ice_nine/Makefile
+++ devel/rubygem-ice_nine/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-inflecto/Makefile
===================================================================
--- devel/rubygem-inflecto/Makefile
+++ devel/rubygem-inflecto/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-instance_storage/Makefile
===================================================================
--- devel/rubygem-instance_storage/Makefile
+++ devel/rubygem-instance_storage/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-interact/Makefile
===================================================================
--- devel/rubygem-interact/Makefile
+++ devel/rubygem-interact/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-iobuffer/Makefile
===================================================================
--- devel/rubygem-iobuffer/Makefile
+++ devel/rubygem-iobuffer/Makefile
@@ -9,7 +9,6 @@
COMMENT= Gems for iobuffer
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-jammit/Makefile
===================================================================
--- devel/rubygem-jammit/Makefile
+++ devel/rubygem-jammit/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/jammit
Index: devel/rubygem-jbuilder/Makefile
===================================================================
--- devel/rubygem-jbuilder/Makefile
+++ devel/rubygem-jbuilder/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-jekyll-coffeescript/Makefile
===================================================================
--- devel/rubygem-jekyll-coffeescript/Makefile
+++ devel/rubygem-jekyll-coffeescript/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-jeweler/Makefile
===================================================================
--- devel/rubygem-jeweler/Makefile
+++ devel/rubygem-jeweler/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/jeweler
Index: devel/rubygem-jmespath/Makefile
===================================================================
--- devel/rubygem-jmespath/Makefile
+++ devel/rubygem-jmespath/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-jquery-ui-themes/Makefile
===================================================================
--- devel/rubygem-jquery-ui-themes/Makefile
+++ devel/rubygem-jquery-ui-themes/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-jruby-jars/Makefile
===================================================================
--- devel/rubygem-jruby-jars/Makefile
+++ devel/rubygem-jruby-jars/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-json/Makefile
===================================================================
--- devel/rubygem-json/Makefile
+++ devel/rubygem-json/Makefile
@@ -15,7 +15,6 @@
LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-json_pure/Makefile
===================================================================
--- devel/rubygem-json_pure/Makefile
+++ devel/rubygem-json_pure/Makefile
@@ -13,7 +13,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-kafo/Makefile
===================================================================
--- devel/rubygem-kafo/Makefile
+++ devel/rubygem-kafo/Makefile
@@ -23,9 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= cpe
+USES= cpe gem:autoplist
CPE_VENDOR= theforeman
Index: devel/rubygem-kafo_parsers/Makefile
===================================================================
--- devel/rubygem-kafo_parsers/Makefile
+++ devel/rubygem-kafo_parsers/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-kafo_wizards/Makefile
===================================================================
--- devel/rubygem-kafo_wizards/Makefile
+++ devel/rubygem-kafo_wizards/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-kgio/Makefile
===================================================================
--- devel/rubygem-kgio/Makefile
+++ devel/rubygem-kgio/Makefile
@@ -13,7 +13,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-launchy/Makefile
===================================================================
--- devel/rubygem-launchy/Makefile
+++ devel/rubygem-launchy/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/launchy
Index: devel/rubygem-launchy22/Makefile
===================================================================
--- devel/rubygem-launchy22/Makefile
+++ devel/rubygem-launchy22/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.2
Index: devel/rubygem-librarian/Makefile
===================================================================
--- devel/rubygem-librarian/Makefile
+++ devel/rubygem-librarian/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-librarianp/Makefile
===================================================================
--- devel/rubygem-librarianp/Makefile
+++ devel/rubygem-librarianp/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-libyajl2/Makefile
===================================================================
--- devel/rubygem-libyajl2/Makefile
+++ devel/rubygem-libyajl2/Makefile
@@ -11,7 +11,6 @@
LICENSE= APACHE20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-licensee/Makefile
===================================================================
--- devel/rubygem-licensee/Makefile
+++ devel/rubygem-licensee/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/licensee
Index: devel/rubygem-listen/Makefile
===================================================================
--- devel/rubygem-listen/Makefile
+++ devel/rubygem-listen/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/listen
Index: devel/rubygem-little-plugger/Makefile
===================================================================
--- devel/rubygem-little-plugger/Makefile
+++ devel/rubygem-little-plugger/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-locale/Makefile
===================================================================
--- devel/rubygem-locale/Makefile
+++ devel/rubygem-locale/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-lockfile/Makefile
===================================================================
--- devel/rubygem-lockfile/Makefile
+++ devel/rubygem-lockfile/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rlock
Index: devel/rubygem-logging/Makefile
===================================================================
--- devel/rubygem-logging/Makefile
+++ devel/rubygem-logging/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-logster/Makefile
===================================================================
--- devel/rubygem-logster/Makefile
+++ devel/rubygem-logster/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-loquacious/Makefile
===================================================================
--- devel/rubygem-loquacious/Makefile
+++ devel/rubygem-loquacious/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-lru_redux/Makefile
===================================================================
--- devel/rubygem-lru_redux/Makefile
+++ devel/rubygem-lru_redux/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-lumberjack/Makefile
===================================================================
--- devel/rubygem-lumberjack/Makefile
+++ devel/rubygem-lumberjack/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-main/Makefile
===================================================================
--- devel/rubygem-main/Makefile
+++ devel/rubygem-main/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-map/Makefile
===================================================================
--- devel/rubygem-map/Makefile
+++ devel/rubygem-map/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-memoist/Makefile
===================================================================
--- devel/rubygem-memoist/Makefile
+++ devel/rubygem-memoist/Makefile
@@ -14,7 +14,6 @@
NO_ARCHI= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-memoizable/Makefile
===================================================================
--- devel/rubygem-memoizable/Makefile
+++ devel/rubygem-memoizable/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-memoize/Makefile
===================================================================
--- devel/rubygem-memoize/Makefile
+++ devel/rubygem-memoize/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mercenary/Makefile
===================================================================
--- devel/rubygem-mercenary/Makefile
+++ devel/rubygem-mercenary/Makefile
@@ -13,9 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/console script/examples
.include <bsd.port.mk>
Index: devel/rubygem-message_bus/Makefile
===================================================================
--- devel/rubygem-message_bus/Makefile
+++ devel/rubygem-message_bus/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-metaclass/Makefile
===================================================================
--- devel/rubygem-metaclass/Makefile
+++ devel/rubygem-metaclass/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-metaid/Makefile
===================================================================
--- devel/rubygem-metaid/Makefile
+++ devel/rubygem-metaid/Makefile
@@ -11,7 +11,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-method_source/Makefile
===================================================================
--- devel/rubygem-method_source/Makefile
+++ devel/rubygem-method_source/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-minitest/Makefile
===================================================================
--- devel/rubygem-minitest/Makefile
+++ devel/rubygem-minitest/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-minitest4/Makefile
===================================================================
--- devel/rubygem-minitest4/Makefile
+++ devel/rubygem-minitest4/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mixlib-authentication/Makefile
===================================================================
--- devel/rubygem-mixlib-authentication/Makefile
+++ devel/rubygem-mixlib-authentication/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mixlib-cli/Makefile
===================================================================
--- devel/rubygem-mixlib-cli/Makefile
+++ devel/rubygem-mixlib-cli/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mixlib-config/Makefile
===================================================================
--- devel/rubygem-mixlib-config/Makefile
+++ devel/rubygem-mixlib-config/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mixlib-log/Makefile
===================================================================
--- devel/rubygem-mixlib-log/Makefile
+++ devel/rubygem-mixlib-log/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mixlib-shellout/Makefile
===================================================================
--- devel/rubygem-mixlib-shellout/Makefile
+++ devel/rubygem-mixlib-shellout/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mkrf/Makefile
===================================================================
--- devel/rubygem-mkrf/Makefile
+++ devel/rubygem-mkrf/Makefile
@@ -11,10 +11,8 @@
LICENSE= MIT
-USES= python
USE_RUBY= yes
-USE_RUBYGEMS= yes
USE_RAKE= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist python
.include <bsd.port.mk>
Index: devel/rubygem-mocha/Makefile
===================================================================
--- devel/rubygem-mocha/Makefile
+++ devel/rubygem-mocha/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-moneta/Makefile
===================================================================
--- devel/rubygem-moneta/Makefile
+++ devel/rubygem-moneta/Makefile
@@ -12,14 +12,12 @@
NO_ARCH= yes
-USES= shebangfix
+USE_RUBY= yes
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/install-kyotocabinet \
script/kill-travis \
script/start-services \
script/upload-bundle \
script/wait-services
-USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>
Index: devel/rubygem-moneta06/Makefile
===================================================================
--- devel/rubygem-moneta06/Makefile
+++ devel/rubygem-moneta06/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mongo/Makefile
===================================================================
--- devel/rubygem-mongo/Makefile
+++ devel/rubygem-mongo/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mongo_console
Index: devel/rubygem-msgpack/Makefile
===================================================================
--- devel/rubygem-msgpack/Makefile
+++ devel/rubygem-msgpack/Makefile
@@ -11,8 +11,7 @@
LICENSE= APACHE20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
STRIPDIR= ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}
post-install:
Index: devel/rubygem-mspec/Makefile
===================================================================
--- devel/rubygem-mspec/Makefile
+++ devel/rubygem-mspec/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mkspec bin/mspec bin/mspec-ci bin/mspec-run bin/mspec-tag
Index: devel/rubygem-multi_json/Makefile
===================================================================
--- devel/rubygem-multi_json/Makefile
+++ devel/rubygem-multi_json/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
JSON_RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json
JSON_PURE_RUN_DEPENDS= rubygem-json_pure>=0:devel/rubygem-json_pure
Index: devel/rubygem-multi_test/Makefile
===================================================================
--- devel/rubygem-multi_test/Makefile
+++ devel/rubygem-multi_test/Makefile
@@ -14,9 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/all test/run
.include <bsd.port.mk>
Index: devel/rubygem-murmurhash3/Makefile
===================================================================
--- devel/rubygem-murmurhash3/Makefile
+++ devel/rubygem-murmurhash3/Makefile
@@ -10,7 +10,6 @@
COMMENT= Implementation of murmur3 hashing function
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-mustache/Makefile
===================================================================
--- devel/rubygem-mustache/Makefile
+++ devel/rubygem-mustache/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mustache
Index: devel/rubygem-mutter/Makefile
===================================================================
--- devel/rubygem-mutter/Makefile
+++ devel/rubygem-mutter/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-naught/Makefile
===================================================================
--- devel/rubygem-naught/Makefile
+++ devel/rubygem-naught/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-needle/Makefile
===================================================================
--- devel/rubygem-needle/Makefile
+++ devel/rubygem-needle/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-nenv/Makefile
===================================================================
--- devel/rubygem-nenv/Makefile
+++ devel/rubygem-nenv/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-nesty/Makefile
===================================================================
--- devel/rubygem-nesty/Makefile
+++ devel/rubygem-nesty/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-netaddr/Makefile
===================================================================
--- devel/rubygem-netaddr/Makefile
+++ devel/rubygem-netaddr/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-newrelic-grape/Makefile
===================================================================
--- devel/rubygem-newrelic-grape/Makefile
+++ devel/rubygem-newrelic-grape/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-newrelic_rpm/Makefile
===================================================================
--- devel/rubygem-newrelic_rpm/Makefile
+++ devel/rubygem-newrelic_rpm/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/script/*.sh
PLIST_FILES= bin/mongrel_rpm bin/newrelic bin/newrelic_cmd bin/nrdebug
Index: devel/rubygem-nice-ffi/Makefile
===================================================================
--- devel/rubygem-nice-ffi/Makefile
+++ devel/rubygem-nice-ffi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-nio4r/Makefile
===================================================================
--- devel/rubygem-nio4r/Makefile
+++ devel/rubygem-nio4r/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-nori/Makefile
===================================================================
--- devel/rubygem-nori/Makefile
+++ devel/rubygem-nori/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-notiffany/Makefile
===================================================================
--- devel/rubygem-notiffany/Makefile
+++ devel/rubygem-notiffany/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-notify/Makefile
===================================================================
--- devel/rubygem-notify/Makefile
+++ devel/rubygem-notify/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/notify
Index: devel/rubygem-nprogress-rails/Makefile
===================================================================
--- devel/rubygem-nprogress-rails/Makefile
+++ devel/rubygem-nprogress-rails/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-octopress-hooks/Makefile
===================================================================
--- devel/rubygem-octopress-hooks/Makefile
+++ devel/rubygem-octopress-hooks/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-oj/Makefile
===================================================================
--- devel/rubygem-oj/Makefile
+++ devel/rubygem-oj/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-omniauth_crowd/Makefile
===================================================================
--- devel/rubygem-omniauth_crowd/Makefile
+++ devel/rubygem-omniauth_crowd/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-open3_backport/Makefile
===================================================================
--- devel/rubygem-open3_backport/Makefile
+++ devel/rubygem-open3_backport/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-open4/Makefile
===================================================================
--- devel/rubygem-open4/Makefile
+++ devel/rubygem-open4/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-orm_adapter/Makefile
===================================================================
--- devel/rubygem-orm_adapter/Makefile
+++ devel/rubygem-orm_adapter/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-p4ruby/Makefile
===================================================================
--- devel/rubygem-p4ruby/Makefile
+++ devel/rubygem-p4ruby/Makefile
@@ -14,8 +14,7 @@
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
CONFIGURE_ARGS= --with-p4api-dir=${LOCALBASE} --with-p4api-lib=${LOCALBASE}/lib/perforce
Index: devel/rubygem-paint/Makefile
===================================================================
--- devel/rubygem-paint/Makefile
+++ devel/rubygem-paint/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-paperclip/Makefile
===================================================================
--- devel/rubygem-paperclip/Makefile
+++ devel/rubygem-paperclip/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-parser/Makefile
===================================================================
--- devel/rubygem-parser/Makefile
+++ devel/rubygem-parser/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ruby-parse bin/ruby-rewrite
Index: devel/rubygem-piston/Makefile
===================================================================
--- devel/rubygem-piston/Makefile
+++ devel/rubygem-piston/Makefile
@@ -12,8 +12,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/piston
.include <bsd.port.mk>
Index: devel/rubygem-pkg-config/Makefile
===================================================================
--- devel/rubygem-pkg-config/Makefile
+++ devel/rubygem-pkg-config/Makefile
@@ -15,8 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= pkgconfig
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: devel/rubygem-platform/Makefile
===================================================================
--- devel/rubygem-platform/Makefile
+++ devel/rubygem-platform/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-plist/Makefile
===================================================================
--- devel/rubygem-plist/Makefile
+++ devel/rubygem-plist/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-pluggaloid/Makefile
===================================================================
--- devel/rubygem-pluggaloid/Makefile
+++ devel/rubygem-pluggaloid/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-polyamorous/Makefile
===================================================================
--- devel/rubygem-polyamorous/Makefile
+++ devel/rubygem-polyamorous/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-polyglot/Makefile
===================================================================
--- devel/rubygem-polyglot/Makefile
+++ devel/rubygem-polyglot/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-popen4/Makefile
===================================================================
--- devel/rubygem-popen4/Makefile
+++ devel/rubygem-popen4/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
GEM_NAME= POpen4-${PORTVERSION}
.include <bsd.port.mk>
Index: devel/rubygem-posix-spawn/Makefile
===================================================================
--- devel/rubygem-posix-spawn/Makefile
+++ devel/rubygem-posix-spawn/Makefile
@@ -12,8 +12,7 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/posix-spawn-benchmark
Index: devel/rubygem-power_assert/Makefile
===================================================================
--- devel/rubygem-power_assert/Makefile
+++ devel/rubygem-power_assert/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-powerbar/Makefile
===================================================================
--- devel/rubygem-powerbar/Makefile
+++ devel/rubygem-powerbar/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/powerbar-demo
Index: devel/rubygem-powerpack/Makefile
===================================================================
--- devel/rubygem-powerpack/Makefile
+++ devel/rubygem-powerpack/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-progressbar/Makefile
===================================================================
--- devel/rubygem-progressbar/Makefile
+++ devel/rubygem-progressbar/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-protected_attributes/Makefile
===================================================================
--- devel/rubygem-protected_attributes/Makefile
+++ devel/rubygem-protected_attributes/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-prototype-rails/Makefile
===================================================================
--- devel/rubygem-prototype-rails/Makefile
+++ devel/rubygem-prototype-rails/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-pry-rails/Makefile
===================================================================
--- devel/rubygem-pry-rails/Makefile
+++ devel/rubygem-pry-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-pry-remote-em/Makefile
===================================================================
--- devel/rubygem-pry-remote-em/Makefile
+++ devel/rubygem-pry-remote-em/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/pry-remote-em
Index: devel/rubygem-pry/Makefile
===================================================================
--- devel/rubygem-pry/Makefile
+++ devel/rubygem-pry/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/pry
Index: devel/rubygem-ptreloaded/Makefile
===================================================================
--- devel/rubygem-ptreloaded/Makefile
+++ devel/rubygem-ptreloaded/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-pygments.rb/Makefile
===================================================================
--- devel/rubygem-pygments.rb/Makefile
+++ devel/rubygem-pygments.rb/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-r18n-core/Makefile
===================================================================
--- devel/rubygem-r18n-core/Makefile
+++ devel/rubygem-r18n-core/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-racc/Makefile
===================================================================
--- devel/rubygem-racc/Makefile
+++ devel/rubygem-racc/Makefile
@@ -12,8 +12,7 @@
LICENSE= LGPL21
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/racc bin/racc2y bin/y2racc
.include <bsd.port.mk>
Index: devel/rubygem-rack-mini-profiler/Makefile
===================================================================
--- devel/rubygem-rack-mini-profiler/Makefile
+++ devel/rubygem-rack-mini-profiler/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rack-raw-upload/Makefile
===================================================================
--- devel/rubygem-rack-raw-upload/Makefile
+++ devel/rubygem-rack-raw-upload/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rails-deprecated_sanitizer/Makefile
===================================================================
--- devel/rubygem-rails-deprecated_sanitizer/Makefile
+++ devel/rubygem-rails-deprecated_sanitizer/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rails-observers/Makefile
===================================================================
--- devel/rubygem-rails-observers/Makefile
+++ devel/rubygem-rails-observers/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rainbow/Makefile
===================================================================
--- devel/rubygem-rainbow/Makefile
+++ devel/rubygem-rainbow/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rake-compiler/Makefile
===================================================================
--- devel/rubygem-rake-compiler/Makefile
+++ devel/rubygem-rake-compiler/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rake-compiler
Index: devel/rubygem-rake/Makefile
===================================================================
--- devel/rubygem-rake/Makefile
+++ devel/rubygem-rake/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rake
Index: devel/rubygem-ransack/Makefile
===================================================================
--- devel/rubygem-ransack/Makefile
+++ devel/rubygem-ransack/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rapt/Makefile
===================================================================
--- devel/rubygem-rapt/Makefile
+++ devel/rubygem-rapt/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rapt
Index: devel/rubygem-rash/Makefile
===================================================================
--- devel/rubygem-rash/Makefile
+++ devel/rubygem-rash/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rb-fsevent/Makefile
===================================================================
--- devel/rubygem-rb-fsevent/Makefile
+++ devel/rubygem-rb-fsevent/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rb-inotify/Makefile
===================================================================
--- devel/rubygem-rb-inotify/Makefile
+++ devel/rubygem-rb-inotify/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rb-kqueue/Makefile
===================================================================
--- devel/rubygem-rb-kqueue/Makefile
+++ devel/rubygem-rb-kqueue/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rbtrace/Makefile
===================================================================
--- devel/rubygem-rbtrace/Makefile
+++ devel/rubygem-rbtrace/Makefile
@@ -18,8 +18,7 @@
rubygem-trollop>=1.16.2:devel/rubygem-trollop
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rbtrace
Index: devel/rubygem-rdoc/Makefile
===================================================================
--- devel/rubygem-rdoc/Makefile
+++ devel/rubygem-rdoc/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
Index: devel/rubygem-rdoc3/Makefile
===================================================================
--- devel/rubygem-rdoc3/Makefile
+++ devel/rubygem-rdoc3/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
Index: devel/rubygem-readwritesettings/Makefile
===================================================================
--- devel/rubygem-readwritesettings/Makefile
+++ devel/rubygem-readwritesettings/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-recaptcha/Makefile
===================================================================
--- devel/rubygem-recaptcha/Makefile
+++ devel/rubygem-recaptcha/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-redis-activesupport/Makefile
===================================================================
--- devel/rubygem-redis-activesupport/Makefile
+++ devel/rubygem-redis-activesupport/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-redis-store/Makefile
===================================================================
--- devel/rubygem-redis-store/Makefile
+++ devel/rubygem-redis-store/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-redmine_plugin_support/Makefile
===================================================================
--- devel/rubygem-redmine_plugin_support/Makefile
+++ devel/rubygem-redmine_plugin_support/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ref/Makefile
===================================================================
--- devel/rubygem-ref/Makefile
+++ devel/rubygem-ref/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-request_store/Makefile
===================================================================
--- devel/rubygem-request_store/Makefile
+++ devel/rubygem-request_store/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-require_all/Makefile
===================================================================
--- devel/rubygem-require_all/Makefile
+++ devel/rubygem-require_all/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-retryable/Makefile
===================================================================
--- devel/rubygem-retryable/Makefile
+++ devel/rubygem-retryable/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rgl/Makefile
===================================================================
--- devel/rubygem-rgl/Makefile
+++ devel/rubygem-rgl/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rodzilla/Makefile
===================================================================
--- devel/rubygem-rodzilla/Makefile
+++ devel/rubygem-rodzilla/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rotp/Makefile
===================================================================
--- devel/rubygem-rotp/Makefile
+++ devel/rubygem-rotp/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rotp
Index: devel/rubygem-rr/Makefile
===================================================================
--- devel/rubygem-rr/Makefile
+++ devel/rubygem-rr/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rrd-ffi/Makefile
===================================================================
--- devel/rubygem-rrd-ffi/Makefile
+++ devel/rubygem-rrd-ffi/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rscm/Makefile
===================================================================
--- devel/rubygem-rscm/Makefile
+++ devel/rubygem-rscm/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec-core/Makefile
===================================================================
--- devel/rubygem-rspec-core/Makefile
+++ devel/rubygem-rspec-core/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rspec
Index: devel/rubygem-rspec-expectations/Makefile
===================================================================
--- devel/rubygem-rspec-expectations/Makefile
+++ devel/rubygem-rspec-expectations/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec-logsplit/Makefile
===================================================================
--- devel/rubygem-rspec-logsplit/Makefile
+++ devel/rubygem-rspec-logsplit/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec-mocks/Makefile
===================================================================
--- devel/rubygem-rspec-mocks/Makefile
+++ devel/rubygem-rspec-mocks/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec-rails/Makefile
===================================================================
--- devel/rubygem-rspec-rails/Makefile
+++ devel/rubygem-rspec-rails/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec-support/Makefile
===================================================================
--- devel/rubygem-rspec-support/Makefile
+++ devel/rubygem-rspec-support/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rspec/Makefile
===================================================================
--- devel/rubygem-rspec/Makefile
+++ devel/rubygem-rspec/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rubigen/Makefile
===================================================================
--- devel/rubygem-rubigen/Makefile
+++ devel/rubygem-rubigen/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/install_rubigen_scripts \
bin/ruby_app \
Index: devel/rubygem-rubocop/Makefile
===================================================================
--- devel/rubygem-rubocop/Makefile
+++ devel/rubygem-rubocop/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rubocop
Index: devel/rubygem-ruby-atmos-pure/Makefile
===================================================================
--- devel/rubygem-ruby-atmos-pure/Makefile
+++ devel/rubygem-ruby-atmos-pure/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruby-bugzilla/Makefile
===================================================================
--- devel/rubygem-ruby-bugzilla/Makefile
+++ devel/rubygem-ruby-bugzilla/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bzconsole
Index: devel/rubygem-ruby-filemagic/Makefile
===================================================================
--- devel/rubygem-ruby-filemagic/Makefile
+++ devel/rubygem-ruby-filemagic/Makefile
@@ -13,7 +13,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruby-fogbugz/Makefile
===================================================================
--- devel/rubygem-ruby-fogbugz/Makefile
+++ devel/rubygem-ruby-fogbugz/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruby-libvirt/Makefile
===================================================================
--- devel/rubygem-ruby-libvirt/Makefile
+++ devel/rubygem-ruby-libvirt/Makefile
@@ -13,10 +13,7 @@
LIB_DEPENDS= libvirt.so:devel/libvirt
-USES= pkgconfig
-
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: devel/rubygem-ruby-ole/Makefile
===================================================================
--- devel/rubygem-ruby-ole/Makefile
+++ devel/rubygem-ruby-ole/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/oletool \
test/*.rb
Index: devel/rubygem-ruby-prof/Makefile
===================================================================
--- devel/rubygem-ruby-prof/Makefile
+++ devel/rubygem-ruby-prof/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ruby-prof bin/ruby-prof-check-trace
Index: devel/rubygem-ruby-progressbar/Makefile
===================================================================
--- devel/rubygem-ruby-progressbar/Makefile
+++ devel/rubygem-ruby-progressbar/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruby-sdl-ffi/Makefile
===================================================================
--- devel/rubygem-ruby-sdl-ffi/Makefile
+++ devel/rubygem-ruby-sdl-ffi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruby2ruby/Makefile
===================================================================
--- devel/rubygem-ruby2ruby/Makefile
+++ devel/rubygem-ruby2ruby/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/r2r_show
Index: devel/rubygem-ruby_parser/Makefile
===================================================================
--- devel/rubygem-ruby_parser/Makefile
+++ devel/rubygem-ruby_parser/Makefile
@@ -13,13 +13,11 @@
RUN_DEPENDS= rubygem-sexp_processor>=4.1:devel/rubygem-sexp_processor
-USES= shebangfix
+NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-NO_ARCH= yes
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/ruby_parse*
-RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/ruby_parse \
bin/ruby_parse_extract_error
Index: devel/rubygem-rubygame/Makefile
===================================================================
--- devel/rubygem-rubygame/Makefile
+++ devel/rubygem-rubygame/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
USE_SDL= gfx image mixer ttf
.include <bsd.port.mk>
Index: devel/rubygem-rubygems-mirror/Makefile
===================================================================
--- devel/rubygem-rubygems-mirror/Makefile
+++ devel/rubygem-rubygems-mirror/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rubygems-tasks/Makefile
===================================================================
--- devel/rubygem-rubygems-tasks/Makefile
+++ devel/rubygem-rubygems-tasks/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rubygems-test/Makefile
===================================================================
--- devel/rubygem-rubygems-test/Makefile
+++ devel/rubygem-rubygems-test/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rubyinline/Makefile
===================================================================
--- devel/rubygem-rubyinline/Makefile
+++ devel/rubygem-rubyinline/Makefile
@@ -20,9 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= tutorial/example1.rb \
tutorial/example2.rb
Index: devel/rubygem-rubyinlineaccel/Makefile
===================================================================
--- devel/rubygem-rubyinlineaccel/Makefile
+++ devel/rubygem-rubyinlineaccel/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rubytree/Makefile
===================================================================
--- devel/rubygem-rubytree/Makefile
+++ devel/rubygem-rubytree/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
USE_RUBY_RDOC= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rufus-scheduler/Makefile
===================================================================
--- devel/rubygem-rufus-scheduler/Makefile
+++ devel/rubygem-rufus-scheduler/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-rugged/Makefile
===================================================================
--- devel/rubygem-rugged/Makefile
+++ devel/rubygem-rugged/Makefile
@@ -18,8 +18,6 @@
CONFIGURE_ARGS= --use-system-libraries
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= pkgconfig
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: devel/rubygem-runt/Makefile
===================================================================
--- devel/rubygem-runt/Makefile
+++ devel/rubygem-runt/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-ruport/Makefile
===================================================================
--- devel/rubygem-ruport/Makefile
+++ devel/rubygem-ruport/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-safe_yaml/Makefile
===================================================================
--- devel/rubygem-safe_yaml/Makefile
+++ devel/rubygem-safe_yaml/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bundle_install_all_ruby_versions.sh \
run_specs_all_ruby_versions.sh
PLIST_FILES= bin/safe_yaml
Index: devel/rubygem-sdoc/Makefile
===================================================================
--- devel/rubygem-sdoc/Makefile
+++ devel/rubygem-sdoc/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sdoc bin/sdoc-merge
Index: devel/rubygem-semantic_puppet/Makefile
===================================================================
--- devel/rubygem-semantic_puppet/Makefile
+++ devel/rubygem-semantic_puppet/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-semi_semantic/Makefile
===================================================================
--- devel/rubygem-semi_semantic/Makefile
+++ devel/rubygem-semi_semantic/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sentry-raven/Makefile
===================================================================
--- devel/rubygem-sentry-raven/Makefile
+++ devel/rubygem-sentry-raven/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sequel/Makefile
===================================================================
--- devel/rubygem-sequel/Makefile
+++ devel/rubygem-sequel/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sequel
Index: devel/rubygem-sequel3/Makefile
===================================================================
--- devel/rubygem-sequel3/Makefile
+++ devel/rubygem-sequel3/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sequel
Index: devel/rubygem-settingslogic/Makefile
===================================================================
--- devel/rubygem-settingslogic/Makefile
+++ devel/rubygem-settingslogic/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sexp_processor/Makefile
===================================================================
--- devel/rubygem-sexp_processor/Makefile
+++ devel/rubygem-sexp_processor/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-shoulda-context/Makefile
===================================================================
--- devel/rubygem-shoulda-context/Makefile
+++ devel/rubygem-shoulda-context/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/convert_to_should_syntax
Index: devel/rubygem-shoulda-matchers/Makefile
===================================================================
--- devel/rubygem-shoulda-matchers/Makefile
+++ devel/rubygem-shoulda-matchers/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/*
Index: devel/rubygem-shoulda/Makefile
===================================================================
--- devel/rubygem-shoulda/Makefile
+++ devel/rubygem-shoulda/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sidekiq-cron/Makefile
===================================================================
--- devel/rubygem-sidekiq-cron/Makefile
+++ devel/rubygem-sidekiq-cron/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sidekiq/Makefile
===================================================================
--- devel/rubygem-sidekiq/Makefile
+++ devel/rubygem-sidekiq/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sidekiq bin/sidekiqctl
Index: devel/rubygem-sidetiq/Makefile
===================================================================
--- devel/rubygem-sidetiq/Makefile
+++ devel/rubygem-sidetiq/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sigdump/Makefile
===================================================================
--- devel/rubygem-sigdump/Makefile
+++ devel/rubygem-sigdump/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-simple_form/Makefile
===================================================================
--- devel/rubygem-simple_form/Makefile
+++ devel/rubygem-simple_form/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-simplecov/Makefile
===================================================================
--- devel/rubygem-simplecov/Makefile
+++ devel/rubygem-simplecov/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-slack-notifier/Makefile
===================================================================
--- devel/rubygem-slack-notifier/Makefile
+++ devel/rubygem-slack-notifier/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-slim/Makefile
===================================================================
--- devel/rubygem-slim/Makefile
+++ devel/rubygem-slim/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/slimrb
Index: devel/rubygem-slop/Makefile
===================================================================
--- devel/rubygem-slop/Makefile
+++ devel/rubygem-slop/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-slop3/Makefile
===================================================================
--- devel/rubygem-slop3/Makefile
+++ devel/rubygem-slop3/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-soap4r/Makefile
===================================================================
--- devel/rubygem-soap4r/Makefile
+++ devel/rubygem-soap4r/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/wsdl2ruby.rb bin/xsd2ruby.rb
Index: devel/rubygem-spring/Makefile
===================================================================
--- devel/rubygem-spring/Makefile
+++ devel/rubygem-spring/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/spring
Index: devel/rubygem-sprockets-helpers/Makefile
===================================================================
--- devel/rubygem-sprockets-helpers/Makefile
+++ devel/rubygem-sprockets-helpers/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sprockets-rails/Makefile
===================================================================
--- devel/rubygem-sprockets-rails/Makefile
+++ devel/rubygem-sprockets-rails/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sprockets-sass/Makefile
===================================================================
--- devel/rubygem-sprockets-sass/Makefile
+++ devel/rubygem-sprockets-sass/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sprockets/Makefile
===================================================================
--- devel/rubygem-sprockets/Makefile
+++ devel/rubygem-sprockets/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sprockets
Index: devel/rubygem-sprockets211/Makefile
===================================================================
--- devel/rubygem-sprockets211/Makefile
+++ devel/rubygem-sprockets211/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sprockets
Index: devel/rubygem-sprockets22/Makefile
===================================================================
--- devel/rubygem-sprockets22/Makefile
+++ devel/rubygem-sprockets22/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.2
Index: devel/rubygem-sprockets3/Makefile
===================================================================
--- devel/rubygem-sprockets3/Makefile
+++ devel/rubygem-sprockets3/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
@${RM} ${STAGEDIR}${PREFIX}/bin/sprockets
Index: devel/rubygem-spruz/Makefile
===================================================================
--- devel/rubygem-spruz/Makefile
+++ devel/rubygem-spruz/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/enum
Index: devel/rubygem-state_machine/Makefile
===================================================================
--- devel/rubygem-state_machine/Makefile
+++ devel/rubygem-state_machine/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-state_machines/Makefile
===================================================================
--- devel/rubygem-state_machines/Makefile
+++ devel/rubygem-state_machines/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-statsd/Makefile
===================================================================
--- devel/rubygem-statsd/Makefile
+++ devel/rubygem-statsd/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/statsd
Index: devel/rubygem-stella/Makefile
===================================================================
--- devel/rubygem-stella/Makefile
+++ devel/rubygem-stella/Makefile
@@ -26,9 +26,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/stella
Index: devel/rubygem-stemmer/Makefile
===================================================================
--- devel/rubygem-stemmer/Makefile
+++ devel/rubygem-stemmer/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-stomp/Makefile
===================================================================
--- devel/rubygem-stomp/Makefile
+++ devel/rubygem-stomp/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/catstomp bin/stompcat
Index: devel/rubygem-storable/Makefile
===================================================================
--- devel/rubygem-storable/Makefile
+++ devel/rubygem-storable/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-stream/Makefile
===================================================================
--- devel/rubygem-stream/Makefile
+++ devel/rubygem-stream/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-streetaddress/Makefile
===================================================================
--- devel/rubygem-streetaddress/Makefile
+++ devel/rubygem-streetaddress/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-stringex/Makefile
===================================================================
--- devel/rubygem-stringex/Makefile
+++ devel/rubygem-stringex/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-structured_warnings/Makefile
===================================================================
--- devel/rubygem-structured_warnings/Makefile
+++ devel/rubygem-structured_warnings/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-subexec/Makefile
===================================================================
--- devel/rubygem-subexec/Makefile
+++ devel/rubygem-subexec/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sugar-high/Makefile
===================================================================
--- devel/rubygem-sugar-high/Makefile
+++ devel/rubygem-sugar-high/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sumbur/Makefile
===================================================================
--- devel/rubygem-sumbur/Makefile
+++ devel/rubygem-sumbur/Makefile
@@ -10,7 +10,6 @@
COMMENT= Consistent spreading for server balancing
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-sundawg_country_codes/Makefile
===================================================================
--- devel/rubygem-sundawg_country_codes/Makefile
+++ devel/rubygem-sundawg_country_codes/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-svn2git/Makefile
===================================================================
--- devel/rubygem-svn2git/Makefile
+++ devel/rubygem-svn2git/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/svn2git
.include <bsd.port.mk>
Index: devel/rubygem-sysinfo/Makefile
===================================================================
--- devel/rubygem-sysinfo/Makefile
+++ devel/rubygem-sysinfo/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/sysinfo
PLIST_FILES= bin/sysinfo
Index: devel/rubygem-systemu/Makefile
===================================================================
--- devel/rubygem-systemu/Makefile
+++ devel/rubygem-systemu/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-table_print/Makefile
===================================================================
--- devel/rubygem-table_print/Makefile
+++ devel/rubygem-table_print/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-tdiff/Makefile
===================================================================
--- devel/rubygem-tdiff/Makefile
+++ devel/rubygem-tdiff/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-templater/Makefile
===================================================================
--- devel/rubygem-templater/Makefile
+++ devel/rubygem-templater/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-temple/Makefile
===================================================================
--- devel/rubygem-temple/Makefile
+++ devel/rubygem-temple/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-term-ansicolor/Makefile
===================================================================
--- devel/rubygem-term-ansicolor/Makefile
+++ devel/rubygem-term-ansicolor/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/colortab bin/term_display bin/term_cdiff bin/term_decolor bin/term_mandel
Index: devel/rubygem-test-unit/Makefile
===================================================================
--- devel/rubygem-test-unit/Makefile
+++ devel/rubygem-test-unit/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-thor/Makefile
===================================================================
--- devel/rubygem-thor/Makefile
+++ devel/rubygem-thor/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/thor
Index: devel/rubygem-thread_safe/Makefile
===================================================================
--- devel/rubygem-thread_safe/Makefile
+++ devel/rubygem-thread_safe/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-thread_safe1/Makefile
===================================================================
--- devel/rubygem-thread_safe1/Makefile
+++ devel/rubygem-thread_safe1/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^0\.1
Index: devel/rubygem-thrift/Makefile
===================================================================
--- devel/rubygem-thrift/Makefile
+++ devel/rubygem-thrift/Makefile
@@ -13,8 +13,7 @@
LICENSE= APACHE20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
# Workaround for stage-qa:
post-install:
Index: devel/rubygem-tilt/Makefile
===================================================================
--- devel/rubygem-tilt/Makefile
+++ devel/rubygem-tilt/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/tilt
Index: devel/rubygem-tilt1/Makefile
===================================================================
--- devel/rubygem-tilt1/Makefile
+++ devel/rubygem-tilt1/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^1\.
Index: devel/rubygem-timers/Makefile
===================================================================
--- devel/rubygem-timers/Makefile
+++ devel/rubygem-timers/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-tins/Makefile
===================================================================
--- devel/rubygem-tins/Makefile
+++ devel/rubygem-tins/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-titlecase/Makefile
===================================================================
--- devel/rubygem-titlecase/Makefile
+++ devel/rubygem-titlecase/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-toml/Makefile
===================================================================
--- devel/rubygem-toml/Makefile
+++ devel/rubygem-toml/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-transaction-simple/Makefile
===================================================================
--- devel/rubygem-transaction-simple/Makefile
+++ devel/rubygem-transaction-simple/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-travis/Makefile
===================================================================
--- devel/rubygem-travis/Makefile
+++ devel/rubygem-travis/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/travis
Index: devel/rubygem-treetop/Makefile
===================================================================
--- devel/rubygem-treetop/Makefile
+++ devel/rubygem-treetop/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/tt
Index: devel/rubygem-trollop/Makefile
===================================================================
--- devel/rubygem-trollop/Makefile
+++ devel/rubygem-trollop/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-trollop1/Makefile
===================================================================
--- devel/rubygem-trollop1/Makefile
+++ devel/rubygem-trollop1/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-turn/Makefile
===================================================================
--- devel/rubygem-turn/Makefile
+++ devel/rubygem-turn/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/turn
Index: devel/rubygem-typed-array/Makefile
===================================================================
--- devel/rubygem-typed-array/Makefile
+++ devel/rubygem-typed-array/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-tzinfo/Makefile
===================================================================
--- devel/rubygem-tzinfo/Makefile
+++ devel/rubygem-tzinfo/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-tzinfo03/Makefile
===================================================================
--- devel/rubygem-tzinfo03/Makefile
+++ devel/rubygem-tzinfo03/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-unicode-display_width/Makefile
===================================================================
--- devel/rubygem-unicode-display_width/Makefile
+++ devel/rubygem-unicode-display_width/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-unicode/Makefile
===================================================================
--- devel/rubygem-unicode/Makefile
+++ devel/rubygem-unicode/Makefile
@@ -10,7 +10,6 @@
COMMENT= Unicode string manipulation library for Ruby
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-uuid/Makefile
===================================================================
--- devel/rubygem-uuid/Makefile
+++ devel/rubygem-uuid/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/uuid
Index: devel/rubygem-uuidtools/Makefile
===================================================================
--- devel/rubygem-uuidtools/Makefile
+++ devel/rubygem-uuidtools/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-validatable/Makefile
===================================================================
--- devel/rubygem-validatable/Makefile
+++ devel/rubygem-validatable/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-versionomy/Makefile
===================================================================
--- devel/rubygem-versionomy/Makefile
+++ devel/rubygem-versionomy/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-virtus/Makefile
===================================================================
--- devel/rubygem-virtus/Makefile
+++ devel/rubygem-virtus/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-warbler/Makefile
===================================================================
--- devel/rubygem-warbler/Makefile
+++ devel/rubygem-warbler/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/warble
Index: devel/rubygem-warden/Makefile
===================================================================
--- devel/rubygem-warden/Makefile
+++ devel/rubygem-warden/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-wdm/Makefile
===================================================================
--- devel/rubygem-wdm/Makefile
+++ devel/rubygem-wdm/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-web-console/Makefile
===================================================================
--- devel/rubygem-web-console/Makefile
+++ devel/rubygem-web-console/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-webby/Makefile
===================================================================
--- devel/rubygem-webby/Makefile
+++ devel/rubygem-webby/Makefile
@@ -22,9 +22,8 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
USE_RAKE= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/webby bin/webby-gen
.include <bsd.port.mk>
Index: devel/rubygem-wmi-lite/Makefile
===================================================================
--- devel/rubygem-wmi-lite/Makefile
+++ devel/rubygem-wmi-lite/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-xpath/Makefile
===================================================================
--- devel/rubygem-xpath/Makefile
+++ devel/rubygem-xpath/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-yajl-ruby/Makefile
===================================================================
--- devel/rubygem-yajl-ruby/Makefile
+++ devel/rubygem-yajl-ruby/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-yui-compressor/Makefile
===================================================================
--- devel/rubygem-yui-compressor/Makefile
+++ devel/rubygem-yui-compressor/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: devel/rubygem-zentest/Makefile
===================================================================
--- devel/rubygem-zentest/Makefile
+++ devel/rubygem-zentest/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/autotest \
bin/multigem \
Index: dns/rubygem-dnsruby/Makefile
===================================================================
--- dns/rubygem-dnsruby/Makefile
+++ dns/rubygem-dnsruby/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: dns/rubygem-net-dns/Makefile
===================================================================
--- dns/rubygem-net-dns/Makefile
+++ dns/rubygem-net-dns/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: dns/rubygem-public_suffix/Makefile
===================================================================
--- dns/rubygem-public_suffix/Makefile
+++ dns/rubygem-public_suffix/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-patch:
@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/data/definitions.txt
Index: dns/rubygem-public_suffix_service/Makefile
===================================================================
--- dns/rubygem-public_suffix_service/Makefile
+++ dns/rubygem-public_suffix_service/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-patch:
@${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/lib/public_suffix/definitions.txt
Index: emulators/rubygem-fission/Makefile
===================================================================
--- emulators/rubygem-fission/Makefile
+++ emulators/rubygem-fission/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/fission
Index: finance/rubygem-money/Makefile
===================================================================
--- finance/rubygem-money/Makefile
+++ finance/rubygem-money/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: ftp/rubygem-curb/Makefile
===================================================================
--- ftp/rubygem-curb/Makefile
+++ ftp/rubygem-curb/Makefile
@@ -15,7 +15,6 @@
LIB_DEPENDS= libcurl.so:ftp/curl
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: games/cowsay/Makefile
===================================================================
--- games/cowsay/Makefile
+++ games/cowsay/Makefile
@@ -10,7 +10,6 @@
MAINTAINER= wxs@FreeBSD.org
COMMENT= Configurable talking characters in ASCII art
-BROKEN= unfetchable
USES= perl5
NO_BUILD= # defined
Index: games/lolcat/Makefile
===================================================================
--- games/lolcat/Makefile
+++ games/lolcat/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/lolcat
Index: games/rubygem-fortune_gem/Makefile
===================================================================
--- games/rubygem-fortune_gem/Makefile
+++ games/rubygem-fortune_gem/Makefile
@@ -12,8 +12,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/fortune_gem
.include <bsd.port.mk>
Index: graphics/rubygem-cairo/Makefile
===================================================================
--- graphics/rubygem-cairo/Makefile
+++ graphics/rubygem-cairo/Makefile
@@ -14,10 +14,8 @@
RUN_DEPENDS= rubygem-pkg-config>=1.1.5:devel/rubygem-pkg-config
-USES= pkgconfig
USE_GNOME= cairo
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: graphics/rubygem-captcha/Makefile
===================================================================
--- graphics/rubygem-captcha/Makefile
+++ graphics/rubygem-captcha/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-chunky_png/Makefile
===================================================================
--- graphics/rubygem-chunky_png/Makefile
+++ graphics/rubygem-chunky_png/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-clutter-gtk/Makefile
===================================================================
--- graphics/rubygem-clutter-gtk/Makefile
+++ graphics/rubygem-clutter-gtk/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-clutter/Makefile
===================================================================
--- graphics/rubygem-clutter/Makefile
+++ graphics/rubygem-clutter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-dragonfly/Makefile
===================================================================
--- graphics/rubygem-dragonfly/Makefile
+++ graphics/rubygem-dragonfly/Makefile
@@ -19,9 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= dev/test_rails
ruby_OLD_CMD= "env ruby"
Index: graphics/rubygem-emoji/Makefile
===================================================================
--- graphics/rubygem-emoji/Makefile
+++ graphics/rubygem-emoji/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-exifr/Makefile
===================================================================
--- graphics/rubygem-exifr/Makefile
+++ graphics/rubygem-exifr/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/exifr
Index: graphics/rubygem-ezprint/Makefile
===================================================================
--- graphics/rubygem-ezprint/Makefile
+++ graphics/rubygem-ezprint/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-fastimage/Makefile
===================================================================
--- graphics/rubygem-fastimage/Makefile
+++ graphics/rubygem-fastimage/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-flamegraph/Makefile
===================================================================
--- graphics/rubygem-flamegraph/Makefile
+++ graphics/rubygem-flamegraph/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-gd2/Makefile
===================================================================
--- graphics/rubygem-gd2/Makefile
+++ graphics/rubygem-gd2/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-patch:
@${REINPLACE_CMD} 's|libgd.so.2|libgd.so.5|' ${WRKSRC}/lib/gd2.rb
Index: graphics/rubygem-gdk_pixbuf2/Makefile
===================================================================
--- graphics/rubygem-gdk_pixbuf2/Makefile
+++ graphics/rubygem-gdk_pixbuf2/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= gdkpixbuf2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-gemojione/Makefile
===================================================================
--- graphics/rubygem-gemojione/Makefile
+++ graphics/rubygem-gemojione/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-geokit/Makefile
===================================================================
--- graphics/rubygem-geokit/Makefile
+++ graphics/rubygem-geokit/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-gitlab_emoji/Makefile
===================================================================
--- graphics/rubygem-gitlab_emoji/Makefile
+++ graphics/rubygem-gitlab_emoji/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-goocanvas/Makefile
===================================================================
--- graphics/rubygem-goocanvas/Makefile
+++ graphics/rubygem-goocanvas/Makefile
@@ -16,7 +16,6 @@
rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-gruff/Makefile
===================================================================
--- graphics/rubygem-gruff/Makefile
+++ graphics/rubygem-gruff/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/image_compare.rb
ruby_OLD_CMD= ruby
Index: graphics/rubygem-image_science/Makefile
===================================================================
--- graphics/rubygem-image_science/Makefile
+++ graphics/rubygem-image_science/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/image_science_thumb
Index: graphics/rubygem-imagesize/Makefile
===================================================================
--- graphics/rubygem-imagesize/Makefile
+++ graphics/rubygem-imagesize/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-mini_magick/Makefile
===================================================================
--- graphics/rubygem-mini_magick/Makefile
+++ graphics/rubygem-mini_magick/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
X11_RUN_DEPENDS= convert:graphics/ImageMagick
X11_RUN_DEPENDS_OFF= convert:graphics/ImageMagick-nox11
Index: graphics/rubygem-objectdetect/Makefile
===================================================================
--- graphics/rubygem-objectdetect/Makefile
+++ graphics/rubygem-objectdetect/Makefile
@@ -14,10 +14,8 @@
LIB_DEPENDS= libopencv_legacy.so:graphics/opencv
-USES= pkgconfig
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pkgconfig
post-patch:
${REINPLACE_CMD} -E 's|(objectdetect)|\1/version|' ${WRKSRC}/test/test_helper.rb
Index: graphics/rubygem-opengl/Makefile
===================================================================
--- graphics/rubygem-opengl/Makefile
+++ graphics/rubygem-opengl/Makefile
@@ -15,7 +15,6 @@
USE_GL= glut
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-pdfkit/Makefile
===================================================================
--- graphics/rubygem-pdfkit/Makefile
+++ graphics/rubygem-pdfkit/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-png/Makefile
===================================================================
--- graphics/rubygem-png/Makefile
+++ graphics/rubygem-png/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-railroad/Makefile
===================================================================
--- graphics/rubygem-railroad/Makefile
+++ graphics/rubygem-railroad/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/railroad
Index: graphics/rubygem-rmagick/Makefile
===================================================================
--- graphics/rubygem-rmagick/Makefile
+++ graphics/rubygem-rmagick/Makefile
@@ -14,9 +14,7 @@
OPTIONS_DEFAULT=X11
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= pkgconfig
+USES= gem:autoplist pkgconfig
X11_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick
X11_LIB_DEPENDS_OFF= libMagickWand-6.so:graphics/ImageMagick-nox11
Index: graphics/rubygem-rsvg2/Makefile
===================================================================
--- graphics/rubygem-rsvg2/Makefile
+++ graphics/rubygem-rsvg2/Makefile
@@ -15,7 +15,6 @@
USE_GNOME= librsvg2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: graphics/rubygem-ruby-graphviz/Makefile
===================================================================
--- graphics/rubygem-ruby-graphviz/Makefile
+++ graphics/rubygem-ruby-graphviz/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/dot2ruby bin/gem2gv bin/git2gv bin/ruby2gv bin/xml2gv
Index: graphics/rubygem-scruffy/Makefile
===================================================================
--- graphics/rubygem-scruffy/Makefile
+++ graphics/rubygem-scruffy/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-patch:
@${REINPLACE_CMD} -e 's|#{options|0 0 #{options|' ${WRKSRC}/lib/scruffy/renderers/base.rb
Index: irc/rubygem-cinch/Makefile
===================================================================
--- irc/rubygem-cinch/Makefile
+++ irc/rubygem-cinch/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: irc/rubygem-cogbot/Makefile
===================================================================
--- irc/rubygem-cogbot/Makefile
+++ irc/rubygem-cogbot/Makefile
@@ -24,8 +24,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/cogbot
Index: irc/rubygem-lita-irc/Makefile
===================================================================
--- irc/rubygem-lita-irc/Makefile
+++ irc/rubygem-lita-irc/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: irc/rubygem-net-irc/Makefile
===================================================================
--- irc/rubygem-net-irc/Makefile
+++ irc/rubygem-net-irc/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: japanese/rubygem-jpmobile-ipaddresses/Makefile
===================================================================
--- japanese/rubygem-jpmobile-ipaddresses/Makefile
+++ japanese/rubygem-jpmobile-ipaddresses/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.pre.mk>
Index: japanese/rubygem-jpmobile-terminfo/Makefile
===================================================================
--- japanese/rubygem-jpmobile-terminfo/Makefile
+++ japanese/rubygem-jpmobile-terminfo/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.pre.mk>
Index: japanese/rubygem-jpmobile/Makefile
===================================================================
--- japanese/rubygem-jpmobile/Makefile
+++ japanese/rubygem-jpmobile/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
BROKEN_RUBY23= yes
Index: japanese/rubygem-jpmobile4/Makefile
===================================================================
--- japanese/rubygem-jpmobile4/Makefile
+++ japanese/rubygem-jpmobile4/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
OPTIONS_DEFINE= GEOKIT IPADDRESSES TERMINFO
GEOKIT_DESC= Run with geokit
Index: japanese/rubygem-mail-iso-2022-jp/Makefile
===================================================================
--- japanese/rubygem-mail-iso-2022-jp/Makefile
+++ japanese/rubygem-mail-iso-2022-jp/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.pre.mk>
Index: japanese/rubygem-myrurema/Makefile
===================================================================
--- japanese/rubygem-myrurema/Makefile
+++ japanese/rubygem-myrurema/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rurema
Index: java/rubygem-rjb/Makefile
===================================================================
--- java/rubygem-rjb/Makefile
+++ java/rubygem-rjb/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/COPYING
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
USE_JAVA= yes
GEM_ENV= JAVA_HOME=${JAVA_HOME}
Index: mail/rubygem-actionmailer/Makefile
===================================================================
--- mail/rubygem-actionmailer/Makefile
+++ mail/rubygem-actionmailer/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-actionmailer4/Makefile
===================================================================
--- mail/rubygem-actionmailer4/Makefile
+++ mail/rubygem-actionmailer4/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-email_reply_parser-discourse/Makefile
===================================================================
--- mail/rubygem-email_reply_parser-discourse/Makefile
+++ mail/rubygem-email_reply_parser-discourse/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-email_reply_parser/Makefile
===================================================================
--- mail/rubygem-email_reply_parser/Makefile
+++ mail/rubygem-email_reply_parser/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-exception_notification/Makefile
===================================================================
--- mail/rubygem-exception_notification/Makefile
+++ mail/rubygem-exception_notification/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-larch/Makefile
===================================================================
--- mail/rubygem-larch/Makefile
+++ mail/rubygem-larch/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/larch
Index: mail/rubygem-mail/Makefile
===================================================================
--- mail/rubygem-mail/Makefile
+++ mail/rubygem-mail/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-mail25/Makefile
===================================================================
--- mail/rubygem-mail25/Makefile
+++ mail/rubygem-mail25/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.5
Index: mail/rubygem-mail_room/Makefile
===================================================================
--- mail/rubygem-mail_room/Makefile
+++ mail/rubygem-mail_room/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mail_room
Index: mail/rubygem-mailboxer/Makefile
===================================================================
--- mail/rubygem-mailboxer/Makefile
+++ mail/rubygem-mailboxer/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-mailfactory/Makefile
===================================================================
--- mail/rubygem-mailfactory/Makefile
+++ mail/rubygem-mailfactory/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-pony/Makefile
===================================================================
--- mail/rubygem-pony/Makefile
+++ mail/rubygem-pony/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-premailer-rails/Makefile
===================================================================
--- mail/rubygem-premailer-rails/Makefile
+++ mail/rubygem-premailer-rails/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-premailer/Makefile
===================================================================
--- mail/rubygem-premailer/Makefile
+++ mail/rubygem-premailer/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/premailer
Index: mail/rubygem-rmail/Makefile
===================================================================
--- mail/rubygem-rmail/Makefile
+++ mail/rubygem-rmail/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-roadie-rails/Makefile
===================================================================
--- mail/rubygem-roadie-rails/Makefile
+++ mail/rubygem-roadie-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-roadie/Makefile
===================================================================
--- mail/rubygem-roadie/Makefile
+++ mail/rubygem-roadie/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-ruby-qmail/Makefile
===================================================================
--- mail/rubygem-ruby-qmail/Makefile
+++ mail/rubygem-ruby-qmail/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-tmail/Makefile
===================================================================
--- mail/rubygem-tmail/Makefile
+++ mail/rubygem-tmail/Makefile
@@ -10,7 +10,6 @@
COMMENT= RFC2822/MIME compliant mail manipulating library for Ruby
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: mail/rubygem-vmail/Makefile
===================================================================
--- mail/rubygem-vmail/Makefile
+++ mail/rubygem-vmail/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/vmail bin/vmail_client bin/vmailsend
Index: math/rubygem-expression_parser/Makefile
===================================================================
--- math/rubygem-expression_parser/Makefile
+++ math/rubygem-expression_parser/Makefile
@@ -11,7 +11,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: math/rubygem-fftw3/Makefile
===================================================================
--- math/rubygem-fftw3/Makefile
+++ math/rubygem-fftw3/Makefile
@@ -14,7 +14,6 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: math/rubygem-narray/Makefile
===================================================================
--- math/rubygem-narray/Makefile
+++ math/rubygem-narray/Makefile
@@ -11,8 +11,7 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include "${.CURDIR}/Makefile.version"
Index: math/rubygem-narray_miss/Makefile
===================================================================
--- math/rubygem-narray_miss/Makefile
+++ math/rubygem-narray_miss/Makefile
@@ -13,7 +13,6 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: math/rubygem-numru-misc/Makefile
===================================================================
--- math/rubygem-numru-misc/Makefile
+++ math/rubygem-numru-misc/Makefile
@@ -14,7 +14,6 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: math/rubygem-numru-units/Makefile
===================================================================
--- math/rubygem-numru-units/Makefile
+++ math/rubygem-numru-units/Makefile
@@ -13,7 +13,6 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: math/rubygem-rb-gsl/Makefile
===================================================================
--- math/rubygem-rb-gsl/Makefile
+++ math/rubygem-rb-gsl/Makefile
@@ -15,7 +15,6 @@
RUN_DEPENDS= rubygem-narray>=0.5.9:math/rubygem-narray
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: misc/rubygem-dotenv/Makefile
===================================================================
--- misc/rubygem-dotenv/Makefile
+++ misc/rubygem-dotenv/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/dotenv
Index: misc/rubygem-iesd/Makefile
===================================================================
--- misc/rubygem-iesd/Makefile
+++ misc/rubygem-iesd/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/iesd
Index: misc/rubygem-mime-types-data/Makefile
===================================================================
--- misc/rubygem-mime-types-data/Makefile
+++ misc/rubygem-mime-types-data/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: misc/rubygem-mime-types/Makefile
===================================================================
--- misc/rubygem-mime-types/Makefile
+++ misc/rubygem-mime-types/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: misc/rubygem-mime-types1/Makefile
===================================================================
--- misc/rubygem-mime-types1/Makefile
+++ misc/rubygem-mime-types1/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^1\.
Index: misc/rubygem-mimemagic/Makefile
===================================================================
--- misc/rubygem-mimemagic/Makefile
+++ misc/rubygem-mimemagic/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: misc/rubygem-rabbit/Makefile
===================================================================
--- misc/rubygem-rabbit/Makefile
+++ misc/rubygem-rabbit/Makefile
@@ -26,10 +26,8 @@
rubygem-rttool>0:textproc/rubygem-rttool
NO_ARCH= yes
-USES= gettext
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist gettext
PLIST_FILES= bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \
bin/rabbit-theme
Index: misc/rubygem-vpim/Makefile
===================================================================
--- misc/rubygem-vpim/Makefile
+++ misc/rubygem-vpim/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/reminder bin/rrule
Index: multimedia/rubygem-clutter-gstreamer/Makefile
===================================================================
--- multimedia/rubygem-clutter-gstreamer/Makefile
+++ multimedia/rubygem-clutter-gstreamer/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: multimedia/rubygem-flvtool2/Makefile
===================================================================
--- multimedia/rubygem-flvtool2/Makefile
+++ multimedia/rubygem-flvtool2/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/flvtool2
Index: multimedia/rubygem-gstreamer/Makefile
===================================================================
--- multimedia/rubygem-gstreamer/Makefile
+++ multimedia/rubygem-gstreamer/Makefile
@@ -15,7 +15,6 @@
rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net-im/rubygem-earthquake/Makefile
===================================================================
--- net-im/rubygem-earthquake/Makefile
+++ net-im/rubygem-earthquake/Makefile
@@ -25,8 +25,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/earthquake
Index: net-im/rubygem-hipchat/Makefile
===================================================================
--- net-im/rubygem-hipchat/Makefile
+++ net-im/rubygem-hipchat/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net-im/rubygem-lita/Makefile
===================================================================
--- net-im/rubygem-lita/Makefile
+++ net-im/rubygem-lita/Makefile
@@ -26,8 +26,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/lita
Index: net-im/rubygem-termtter/Makefile
===================================================================
--- net-im/rubygem-termtter/Makefile
+++ net-im/rubygem-termtter/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/termtter bin/termtter_frame
Index: net-im/rubygem-tinder/Makefile
===================================================================
--- net-im/rubygem-tinder/Makefile
+++ net-im/rubygem-tinder/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net-mgmt/rubygem-blimpy/Makefile
===================================================================
--- net-mgmt/rubygem-blimpy/Makefile
+++ net-mgmt/rubygem-blimpy/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/blimpy
Index: net-mgmt/rubygem-snmp/Makefile
===================================================================
--- net-mgmt/rubygem-snmp/Makefile
+++ net-mgmt/rubygem-snmp/Makefile
@@ -11,7 +11,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net-mgmt/rubygem-visage-app/Makefile
===================================================================
--- net-mgmt/rubygem-visage-app/Makefile
+++ net-mgmt/rubygem-visage-app/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/visage-app
Index: net/rubygem-amazon-ec2/Makefile
===================================================================
--- net/rubygem-amazon-ec2/Makefile
+++ net/rubygem-amazon-ec2/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/awshell bin/ec2-gem-example.rb bin/ec2-gem-profile.rb bin/ec2sh bin/setup.rb
.include <bsd.port.mk>
Index: net/rubygem-amq-protocol/Makefile
===================================================================
--- net/rubygem-amq-protocol/Makefile
+++ net/rubygem-amq-protocol/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-amqp-utils/Makefile
===================================================================
--- net/rubygem-amqp-utils/Makefile
+++ net/rubygem-amqp-utils/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES+= bin/amqp-deleteq bin/amqp-dequeue bin/amqp-enqueue bin/amqp-peek bin/amqp-pop \
bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \
Index: net/rubygem-amqp/Makefile
===================================================================
--- net/rubygem-amqp/Makefile
+++ net/rubygem-amqp/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-aws-s3/Makefile
===================================================================
--- net/rubygem-aws-s3/Makefile
+++ net/rubygem-aws-s3/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/s3sh
.include <bsd.port.mk>
Index: net/rubygem-aws-ses/Makefile
===================================================================
--- net/rubygem-aws-ses/Makefile
+++ net/rubygem-aws-ses/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-bunny/Makefile
===================================================================
--- net/rubygem-bunny/Makefile
+++ net/rubygem-bunny/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-connection_pool/Makefile
===================================================================
--- net/rubygem-connection_pool/Makefile
+++ net/rubygem-connection_pool/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-dogapi/Makefile
===================================================================
--- net/rubygem-dogapi/Makefile
+++ net/rubygem-dogapi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-domain_name/Makefile
===================================================================
--- net/rubygem-domain_name/Makefile
+++ net/rubygem-domain_name/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-dropbox-sdk/Makefile
===================================================================
--- net/rubygem-dropbox-sdk/Makefile
+++ net/rubygem-dropbox-sdk/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-epp-client-afnic/Makefile
===================================================================
--- net/rubygem-epp-client-afnic/Makefile
+++ net/rubygem-epp-client-afnic/Makefile
@@ -18,7 +18,6 @@
rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-epp-client-base/Makefile
===================================================================
--- net/rubygem-epp-client-base/Makefile
+++ net/rubygem-epp-client-base/Makefile
@@ -15,7 +15,6 @@
rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-epp-client-rgp/Makefile
===================================================================
--- net/rubygem-epp-client-rgp/Makefile
+++ net/rubygem-epp-client-rgp/Makefile
@@ -15,7 +15,6 @@
rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-epp-client-secdns/Makefile
===================================================================
--- net/rubygem-epp-client-secdns/Makefile
+++ net/rubygem-epp-client-secdns/Makefile
@@ -15,7 +15,6 @@
rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-epp-client-smallregistry/Makefile
===================================================================
--- net/rubygem-epp-client-smallregistry/Makefile
+++ net/rubygem-epp-client-smallregistry/Makefile
@@ -17,7 +17,6 @@
rubygem-epp-client-secdns=${PORTVERSION}:net/rubygem-epp-client-secdns \
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-aliyun/Makefile
===================================================================
--- net/rubygem-fog-aliyun/Makefile
+++ net/rubygem-fog-aliyun/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-atmos/Makefile
===================================================================
--- net/rubygem-fog-atmos/Makefile
+++ net/rubygem-fog-atmos/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-aws/Makefile
===================================================================
--- net/rubygem-fog-aws/Makefile
+++ net/rubygem-fog-aws/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-brightbox/Makefile
===================================================================
--- net/rubygem-fog-brightbox/Makefile
+++ net/rubygem-fog-brightbox/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-cloudatcost/Makefile
===================================================================
--- net/rubygem-fog-cloudatcost/Makefile
+++ net/rubygem-fog-cloudatcost/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-dynect/Makefile
===================================================================
--- net/rubygem-fog-dynect/Makefile
+++ net/rubygem-fog-dynect/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-ecloud/Makefile
===================================================================
--- net/rubygem-fog-ecloud/Makefile
+++ net/rubygem-fog-ecloud/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-google/Makefile
===================================================================
--- net/rubygem-fog-google/Makefile
+++ net/rubygem-fog-google/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-local/Makefile
===================================================================
--- net/rubygem-fog-local/Makefile
+++ net/rubygem-fog-local/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-openstack/Makefile
===================================================================
--- net/rubygem-fog-openstack/Makefile
+++ net/rubygem-fog-openstack/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-powerdns/Makefile
===================================================================
--- net/rubygem-fog-powerdns/Makefile
+++ net/rubygem-fog-powerdns/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-profitbricks/Makefile
===================================================================
--- net/rubygem-fog-profitbricks/Makefile
+++ net/rubygem-fog-profitbricks/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-rackspace/Makefile
===================================================================
--- net/rubygem-fog-rackspace/Makefile
+++ net/rubygem-fog-rackspace/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-radosgw/Makefile
===================================================================
--- net/rubygem-fog-radosgw/Makefile
+++ net/rubygem-fog-radosgw/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-riakcs/Makefile
===================================================================
--- net/rubygem-fog-riakcs/Makefile
+++ net/rubygem-fog-riakcs/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-sakuracloud/Makefile
===================================================================
--- net/rubygem-fog-sakuracloud/Makefile
+++ net/rubygem-fog-sakuracloud/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-serverlove/Makefile
===================================================================
--- net/rubygem-fog-serverlove/Makefile
+++ net/rubygem-fog-serverlove/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-softlayer/Makefile
===================================================================
--- net/rubygem-fog-softlayer/Makefile
+++ net/rubygem-fog-softlayer/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-storm_on_demand/Makefile
===================================================================
--- net/rubygem-fog-storm_on_demand/Makefile
+++ net/rubygem-fog-storm_on_demand/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-terremark/Makefile
===================================================================
--- net/rubygem-fog-terremark/Makefile
+++ net/rubygem-fog-terremark/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-vmfusion/Makefile
===================================================================
--- net/rubygem-fog-vmfusion/Makefile
+++ net/rubygem-fog-vmfusion/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-voxel/Makefile
===================================================================
--- net/rubygem-fog-voxel/Makefile
+++ net/rubygem-fog-voxel/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-vsphere/Makefile
===================================================================
--- net/rubygem-fog-vsphere/Makefile
+++ net/rubygem-fog-vsphere/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-fog-xenserver/Makefile
===================================================================
--- net/rubygem-fog-xenserver/Makefile
+++ net/rubygem-fog-xenserver/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-geoip/Makefile
===================================================================
--- net/rubygem-geoip/Makefile
+++ net/rubygem-geoip/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/geoip
Index: net/rubygem-gitlab_omniauth-ldap/Makefile
===================================================================
--- net/rubygem-gitlab_omniauth-ldap/Makefile
+++ net/rubygem-gitlab_omniauth-ldap/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-http_parser.rb/Makefile
===================================================================
--- net/rubygem-http_parser.rb/Makefile
+++ net/rubygem-http_parser.rb/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-httpauth/Makefile
===================================================================
--- net/rubygem-httpauth/Makefile
+++ net/rubygem-httpauth/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-ipaddress/Makefile
===================================================================
--- net/rubygem-ipaddress/Makefile
+++ net/rubygem-ipaddress/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-iproto/Makefile
===================================================================
--- net/rubygem-iproto/Makefile
+++ net/rubygem-iproto/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-lita-gems/Makefile
===================================================================
--- net/rubygem-lita-gems/Makefile
+++ net/rubygem-lita-gems/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-macaddr/Makefile
===================================================================
--- net/rubygem-macaddr/Makefile
+++ net/rubygem-macaddr/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-net-ldap/Makefile
===================================================================
--- net/rubygem-net-ldap/Makefile
+++ net/rubygem-net-ldap/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-net-netrc/Makefile
===================================================================
--- net/rubygem-net-netrc/Makefile
+++ net/rubygem-net-netrc/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-net-ping/Makefile
===================================================================
--- net/rubygem-net-ping/Makefile
+++ net/rubygem-net-ping/Makefile
@@ -11,7 +11,6 @@
LICENSE= APACHE20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-netrc/Makefile
===================================================================
--- net/rubygem-netrc/Makefile
+++ net/rubygem-netrc/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-network_interface/Makefile
===================================================================
--- net/rubygem-network_interface/Makefile
+++ net/rubygem-network_interface/Makefile
@@ -11,7 +11,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-oauth/Makefile
===================================================================
--- net/rubygem-oauth/Makefile
+++ net/rubygem-oauth/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/oauth
Index: net/rubygem-oauth2/Makefile
===================================================================
--- net/rubygem-oauth2/Makefile
+++ net/rubygem-oauth2/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-octokit/Makefile
===================================================================
--- net/rubygem-octokit/Makefile
+++ net/rubygem-octokit/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-octopress-deploy/Makefile
===================================================================
--- net/rubygem-octopress-deploy/Makefile
+++ net/rubygem-octopress-deploy/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-auth0/Makefile
===================================================================
--- net/rubygem-omniauth-auth0/Makefile
+++ net/rubygem-omniauth-auth0/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-azure-oauth2/Makefile
===================================================================
--- net/rubygem-omniauth-azure-oauth2/Makefile
+++ net/rubygem-omniauth-azure-oauth2/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-facebook/Makefile
===================================================================
--- net/rubygem-omniauth-facebook/Makefile
+++ net/rubygem-omniauth-facebook/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-github-discourse/Makefile
===================================================================
--- net/rubygem-omniauth-github-discourse/Makefile
+++ net/rubygem-omniauth-github-discourse/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-github/Makefile
===================================================================
--- net/rubygem-omniauth-github/Makefile
+++ net/rubygem-omniauth-github/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-google-oauth2/Makefile
===================================================================
--- net/rubygem-omniauth-google-oauth2/Makefile
+++ net/rubygem-omniauth-google-oauth2/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-oauth/Makefile
===================================================================
--- net/rubygem-omniauth-oauth/Makefile
+++ net/rubygem-omniauth-oauth/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-oauth2/Makefile
===================================================================
--- net/rubygem-omniauth-oauth2/Makefile
+++ net/rubygem-omniauth-oauth2/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-openid/Makefile
===================================================================
--- net/rubygem-omniauth-openid/Makefile
+++ net/rubygem-omniauth-openid/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-omniauth-twitter/Makefile
===================================================================
--- net/rubygem-omniauth-twitter/Makefile
+++ net/rubygem-omniauth-twitter/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-open-uri-cached/Makefile
===================================================================
--- net/rubygem-open-uri-cached/Makefile
+++ net/rubygem-open-uri-cached/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-opennebula/Makefile
===================================================================
--- net/rubygem-opennebula/Makefile
+++ net/rubygem-opennebula/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-packetfu/Makefile
===================================================================
--- net/rubygem-packetfu/Makefile
+++ net/rubygem-packetfu/Makefile
@@ -14,9 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/func_lldp.rb
.include <bsd.port.mk>
Index: net/rubygem-pcaprub/Makefile
===================================================================
--- net/rubygem-pcaprub/Makefile
+++ net/rubygem-pcaprub/Makefile
@@ -11,7 +11,6 @@
LICENSE= LGPL21
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-rabbiter/Makefile
===================================================================
--- net/rubygem-rabbiter/Makefile
+++ net/rubygem-rabbiter/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rabbiter
.include <bsd.port.mk>
Index: net/rubygem-rbvmomi/Makefile
===================================================================
--- net/rubygem-rbvmomi/Makefile
+++ net/rubygem-rbvmomi/Makefile
@@ -19,9 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= examples/run.sh
PLIST_FILES= bin/rbvmomish
Index: net/rubygem-right_aws/Makefile
===================================================================
--- net/rubygem-right_aws/Makefile
+++ net/rubygem-right_aws/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
OPTIONS_DEFINE= LIBXML
LIBXML_DESC= Use libxml instead of REXML
Index: net/rubygem-right_flexiscale/Makefile
===================================================================
--- net/rubygem-right_flexiscale/Makefile
+++ net/rubygem-right_flexiscale/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-right_gogrid/Makefile
===================================================================
--- net/rubygem-right_gogrid/Makefile
+++ net/rubygem-right_gogrid/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-right_http_connection/Makefile
===================================================================
--- net/rubygem-right_http_connection/Makefile
+++ net/rubygem-right_http_connection/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-right_slicehost/Makefile
===================================================================
--- net/rubygem-right_slicehost/Makefile
+++ net/rubygem-right_slicehost/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-rsync/Makefile
===================================================================
--- net/rubygem-rsync/Makefile
+++ net/rubygem-rsync/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-ruby-growl/Makefile
===================================================================
--- net/rubygem-ruby-growl/Makefile
+++ net/rubygem-ruby-growl/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/growl
Index: net/rubygem-ruby-openid/Makefile
===================================================================
--- net/rubygem-ruby-openid/Makefile
+++ net/rubygem-ruby-openid/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-ruby-yadis/Makefile
===================================================================
--- net/rubygem-ruby-yadis/Makefile
+++ net/rubygem-ruby-yadis/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-rubyntlm/Makefile
===================================================================
--- net/rubygem-rubyntlm/Makefile
+++ net/rubygem-rubyntlm/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-rubytter/Makefile
===================================================================
--- net/rubygem-rubytter/Makefile
+++ net/rubygem-rubytter/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-rudy/Makefile
===================================================================
--- net/rubygem-rudy/Makefile
+++ net/rubygem-rudy/Makefile
@@ -26,10 +26,8 @@
rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb
-USES= shebangfix
SHEBANG_FILES= bin/* tryouts/exploration/machine.rb
NO_ARCH= yes
Index: net/rubygem-rye/Makefile
===================================================================
--- net/rubygem-rye/Makefile
+++ net/rubygem-rye/Makefile
@@ -22,9 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= try/*.rb tst/*.rb
.include <bsd.port.mk>
Index: net/rubygem-simple_oauth/Makefile
===================================================================
--- net/rubygem-simple_oauth/Makefile
+++ net/rubygem-simple_oauth/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-stompserver/Makefile
===================================================================
--- net/rubygem-stompserver/Makefile
+++ net/rubygem-stompserver/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/stompserver
Index: net/rubygem-t/Makefile
===================================================================
--- net/rubygem-t/Makefile
+++ net/rubygem-t/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/t
Index: net/rubygem-tweetstream/Makefile
===================================================================
--- net/rubygem-tweetstream/Makefile
+++ net/rubygem-tweetstream/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-twitter-stream/Makefile
===================================================================
--- net/rubygem-twitter-stream/Makefile
+++ net/rubygem-twitter-stream/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-twitter/Makefile
===================================================================
--- net/rubygem-twitter/Makefile
+++ net/rubygem-twitter/Makefile
@@ -25,7 +25,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-twitter4r/Makefile
===================================================================
--- net/rubygem-twitter4r/Makefile
+++ net/rubygem-twitter4r/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/t4r-oauth-access bin/t4rsh
Index: net/rubygem-uri-redis/Makefile
===================================================================
--- net/rubygem-uri-redis/Makefile
+++ net/rubygem-uri-redis/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: net/rubygem-whois/Makefile
===================================================================
--- net/rubygem-whois/Makefile
+++ net/rubygem-whois/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/whoisrb
Index: print/rubygem-afm/Makefile
===================================================================
--- print/rubygem-afm/Makefile
+++ print/rubygem-afm/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-color-tools/Makefile
===================================================================
--- print/rubygem-color-tools/Makefile
+++ print/rubygem-color-tools/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-color/Makefile
===================================================================
--- print/rubygem-color/Makefile
+++ print/rubygem-color/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-pdf-core/Makefile
===================================================================
--- print/rubygem-pdf-core/Makefile
+++ print/rubygem-pdf-core/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-pdf-reader/Makefile
===================================================================
--- print/rubygem-pdf-reader/Makefile
+++ print/rubygem-pdf-reader/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES+= bin/pdf_callbacks bin/pdf_list_callbacks bin/pdf_object bin/pdf_text
Index: print/rubygem-pdf-writer/Makefile
===================================================================
--- print/rubygem-pdf-writer/Makefile
+++ print/rubygem-pdf-writer/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/techbook
Index: print/rubygem-prawn-core/Makefile
===================================================================
--- print/rubygem-prawn-core/Makefile
+++ print/rubygem-prawn-core/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-flexible-table/Makefile
===================================================================
--- print/rubygem-prawn-flexible-table/Makefile
+++ print/rubygem-prawn-flexible-table/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-format/Makefile
===================================================================
--- print/rubygem-prawn-format/Makefile
+++ print/rubygem-prawn-format/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-graph/Makefile
===================================================================
--- print/rubygem-prawn-graph/Makefile
+++ print/rubygem-prawn-graph/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-js/Makefile
===================================================================
--- print/rubygem-prawn-js/Makefile
+++ print/rubygem-prawn-js/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-layout/Makefile
===================================================================
--- print/rubygem-prawn-layout/Makefile
+++ print/rubygem-prawn-layout/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-security/Makefile
===================================================================
--- print/rubygem-prawn-security/Makefile
+++ print/rubygem-prawn-security/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn-svg/Makefile
===================================================================
--- print/rubygem-prawn-svg/Makefile
+++ print/rubygem-prawn-svg/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-prawn/Makefile
===================================================================
--- print/rubygem-prawn/Makefile
+++ print/rubygem-prawn/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-rbpdf-font/Makefile
===================================================================
--- print/rubygem-rbpdf-font/Makefile
+++ print/rubygem-rbpdf-font/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-rbpdf/Makefile
===================================================================
--- print/rubygem-rbpdf/Makefile
+++ print/rubygem-rbpdf/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: print/rubygem-ttfunk/Makefile
===================================================================
--- print/rubygem-ttfunk/Makefile
+++ print/rubygem-ttfunk/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: russian/rubygem-russian/Makefile
===================================================================
--- russian/rubygem-russian/Makefile
+++ russian/rubygem-russian/Makefile
@@ -14,7 +14,6 @@
RUN_DEPENDS= rubygem-i18n>=0.5.0:devel/rubygem-i18n
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: science/rubygem-ai4r/Makefile
===================================================================
--- science/rubygem-ai4r/Makefile
+++ science/rubygem-ai4r/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: science/rubygem-cdo/Makefile
===================================================================
--- science/rubygem-cdo/Makefile
+++ science/rubygem-cdo/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: science/rubygem-ruby-dcl/Makefile
===================================================================
--- science/rubygem-ruby-dcl/Makefile
+++ science/rubygem-ruby-dcl/Makefile
@@ -19,7 +19,6 @@
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: science/rubygem-ruby-netcdf/Makefile
===================================================================
--- science/rubygem-ruby-netcdf/Makefile
+++ science/rubygem-ruby-netcdf/Makefile
@@ -14,7 +14,6 @@
rubygem-narray_miss>=0:math/rubygem-narray_miss
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/ruby-hmac/Makefile
===================================================================
--- security/ruby-hmac/Makefile
+++ security/ruby-hmac/Makefile
@@ -12,8 +12,7 @@
COMMENT= Ruby library which implements the HMAC algorithm
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
GEM_NAME= ${DISTNAME}
.include <bsd.port.mk>
Index: security/rubygem-attr_encrypted/Makefile
===================================================================
--- security/rubygem-attr_encrypted/Makefile
+++ security/rubygem-attr_encrypted/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-bcrypt-ruby/Makefile
===================================================================
--- security/rubygem-bcrypt-ruby/Makefile
+++ security/rubygem-bcrypt-ruby/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-bcrypt/Makefile
===================================================================
--- security/rubygem-bcrypt/Makefile
+++ security/rubygem-bcrypt/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/COPYING
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-devise-two-factor/Makefile
===================================================================
--- security/rubygem-devise-two-factor/Makefile
+++ security/rubygem-devise-two-factor/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-doorkeeper/Makefile
===================================================================
--- security/rubygem-doorkeeper/Makefile
+++ security/rubygem-doorkeeper/Makefile
@@ -24,7 +24,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-encryptor/Makefile
===================================================================
--- security/rubygem-encryptor/Makefile
+++ security/rubygem-encryptor/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-ezcrypto/Makefile
===================================================================
--- security/rubygem-ezcrypto/Makefile
+++ security/rubygem-ezcrypto/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-gpgr/Makefile
===================================================================
--- security/rubygem-gpgr/Makefile
+++ security/rubygem-gpgr/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-gssapi/Makefile
===================================================================
--- security/rubygem-gssapi/Makefile
+++ security/rubygem-gssapi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-jugyo-twitter_oauth/Makefile
===================================================================
--- security/rubygem-jugyo-twitter_oauth/Makefile
+++ security/rubygem-jugyo-twitter_oauth/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
GEM_NAME= ${PORTNAME}-${DISTVERSION}
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-metasploit-concern/Makefile
===================================================================
--- security/rubygem-metasploit-concern/Makefile
+++ security/rubygem-metasploit-concern/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= ignore:1
Index: security/rubygem-metasploit-credential/Makefile
===================================================================
--- security/rubygem-metasploit-credential/Makefile
+++ security/rubygem-metasploit-credential/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= ignore:1
Index: security/rubygem-metasploit-model/Makefile
===================================================================
--- security/rubygem-metasploit-model/Makefile
+++ security/rubygem-metasploit-model/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= ignore:1
Index: security/rubygem-metasploit-payloads/Makefile
===================================================================
--- security/rubygem-metasploit-payloads/Makefile
+++ security/rubygem-metasploit-payloads/Makefile
@@ -12,8 +12,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= ignore:1
Index: security/rubygem-metasploit_data_models/Makefile
===================================================================
--- security/rubygem-metasploit_data_models/Makefile
+++ security/rubygem-metasploit_data_models/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mdm_console
PORTSCOUT= ignore:1
Index: security/rubygem-net-scp/Makefile
===================================================================
--- security/rubygem-net-scp/Makefile
+++ security/rubygem-net-scp/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-net-sftp/Makefile
===================================================================
--- security/rubygem-net-sftp/Makefile
+++ security/rubygem-net-sftp/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-net-ssh-gateway/Makefile
===================================================================
--- security/rubygem-net-ssh-gateway/Makefile
+++ security/rubygem-net-ssh-gateway/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-net-ssh-multi/Makefile
===================================================================
--- security/rubygem-net-ssh-multi/Makefile
+++ security/rubygem-net-ssh-multi/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-net-ssh/Makefile
===================================================================
--- security/rubygem-net-ssh/Makefile
+++ security/rubygem-net-ssh/Makefile
@@ -19,9 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= support/ssh_tunnel_bug.rb
PROMPT_PASSPHRASES_RUN_DEPENDS= rubygem-ruby-termios>=0:comms/rubygem-ruby-termios
Index: security/rubygem-nmap-parser/Makefile
===================================================================
--- security/rubygem-nmap-parser/Makefile
+++ security/rubygem-nmap-parser/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-bitbucket/Makefile
===================================================================
--- security/rubygem-omniauth-bitbucket/Makefile
+++ security/rubygem-omniauth-bitbucket/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-cas3/Makefile
===================================================================
--- security/rubygem-omniauth-cas3/Makefile
+++ security/rubygem-omniauth-cas3/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-gitlab/Makefile
===================================================================
--- security/rubygem-omniauth-gitlab/Makefile
+++ security/rubygem-omniauth-gitlab/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-multipassword/Makefile
===================================================================
--- security/rubygem-omniauth-multipassword/Makefile
+++ security/rubygem-omniauth-multipassword/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-saml/Makefile
===================================================================
--- security/rubygem-omniauth-saml/Makefile
+++ security/rubygem-omniauth-saml/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth-shibboleth/Makefile
===================================================================
--- security/rubygem-omniauth-shibboleth/Makefile
+++ security/rubygem-omniauth-shibboleth/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-omniauth/Makefile
===================================================================
--- security/rubygem-omniauth/Makefile
+++ security/rubygem-omniauth/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-origami/Makefile
===================================================================
--- security/rubygem-origami/Makefile
+++ security/rubygem-origami/Makefile
@@ -14,9 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= samples/actions/launch/calc.rb \
samples/actions/launch/winparams.rb \
samples/actions/named/named.rb \
Index: security/rubygem-pyu-ruby-sasl/Makefile
===================================================================
--- security/rubygem-pyu-ruby-sasl/Makefile
+++ security/rubygem-pyu-ruby-sasl/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-rack-oauth2/Makefile
===================================================================
--- security/rubygem-rack-oauth2/Makefile
+++ security/rubygem-rack-oauth2/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-razorback-scriptNugget/Makefile
===================================================================
--- security/rubygem-razorback-scriptNugget/Makefile
+++ security/rubygem-razorback-scriptNugget/Makefile
@@ -15,9 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= lib/razorback.rb
.include <bsd.port.mk>
Index: security/rubygem-recog/Makefile
===================================================================
--- security/rubygem-recog/Makefile
+++ security/rubygem-recog/Makefile
@@ -14,8 +14,7 @@
RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/recog_export \
bin/recog_match \
bin/recog_verify
Index: security/rubygem-roauth/Makefile
===================================================================
--- security/rubygem-roauth/Makefile
+++ security/rubygem-roauth/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-ruby-hmac/Makefile
===================================================================
--- security/rubygem-ruby-hmac/Makefile
+++ security/rubygem-ruby-hmac/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-ruby-rc4/Makefile
===================================================================
--- security/rubygem-ruby-rc4/Makefile
+++ security/rubygem-ruby-rc4/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-ruby-saml/Makefile
===================================================================
--- security/rubygem-ruby-saml/Makefile
+++ security/rubygem-ruby-saml/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-scrypt/Makefile
===================================================================
--- security/rubygem-scrypt/Makefile
+++ security/rubygem-scrypt/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
ONLY_FOR_ARCHS= amd64 i386 ia64
ONLY_FOR_ARCHS_REASON= invokes SSE compiler flags
Index: security/rubygem-six/Makefile
===================================================================
--- security/rubygem-six/Makefile
+++ security/rubygem-six/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-sshkey/Makefile
===================================================================
--- security/rubygem-sshkey/Makefile
+++ security/rubygem-sshkey/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-sshkit/Makefile
===================================================================
--- security/rubygem-sshkit/Makefile
+++ security/rubygem-sshkit/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: security/rubygem-twitter_oauth/Makefile
===================================================================
--- security/rubygem-twitter_oauth/Makefile
+++ security/rubygem-twitter_oauth/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/puppet-lint/Makefile
===================================================================
--- sysutils/puppet-lint/Makefile
+++ sysutils/puppet-lint/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/puppet-lint
NO_ARCH= yes
Index: sysutils/rhc/Makefile
===================================================================
--- sysutils/rhc/Makefile
+++ sysutils/rhc/Makefile
@@ -24,8 +24,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rhc
Index: sysutils/rubygem-SyslogLogger/Makefile
===================================================================
--- sysutils/rubygem-SyslogLogger/Makefile
+++ sysutils/rubygem-SyslogLogger/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-backup/Makefile
===================================================================
--- sysutils/rubygem-backup/Makefile
+++ sysutils/rubygem-backup/Makefile
@@ -76,8 +76,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/backup
Index: sysutils/rubygem-bosh-gen/Makefile
===================================================================
--- sysutils/rubygem-bosh-gen/Makefile
+++ sysutils/rubygem-bosh-gen/Makefile
@@ -23,9 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= lib/bosh/gen/generators/new_release_generator/templates/templates/make_manifest.tt \
spec/fixtures/releases/s3test-boshrelease/templates/make_manifest
Index: sysutils/rubygem-bosh_cli/Makefile
===================================================================
--- sysutils/rubygem-bosh_cli/Makefile
+++ sysutils/rubygem-bosh_cli/Makefile
@@ -29,8 +29,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bosh
Index: sysutils/rubygem-bundler/Makefile
===================================================================
--- sysutils/rubygem-bundler/Makefile
+++ sysutils/rubygem-bundler/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/bundle bin/bundler
Index: sysutils/rubygem-bundler_ext/Makefile
===================================================================
--- sysutils/rubygem-bundler_ext/Makefile
+++ sysutils/rubygem-bundler_ext/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-capistrano-ext/Makefile
===================================================================
--- sysutils/rubygem-capistrano-ext/Makefile
+++ sysutils/rubygem-capistrano-ext/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-capistrano/Makefile
===================================================================
--- sysutils/rubygem-capistrano/Makefile
+++ sysutils/rubygem-capistrano/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/cap bin/capify
Index: sysutils/rubygem-chef-api/Makefile
===================================================================
--- sysutils/rubygem-chef-api/Makefile
+++ sysutils/rubygem-chef-api/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-chef-zero/Makefile
===================================================================
--- sysutils/rubygem-chef-zero/Makefile
+++ sysutils/rubygem-chef-zero/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/chef-zero
.include <bsd.port.mk>
Index: sysutils/rubygem-chef/Makefile
===================================================================
--- sysutils/rubygem-chef/Makefile
+++ sysutils/rubygem-chef/Makefile
@@ -33,8 +33,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
SUB_LIST= RUBY=${RUBY}
USE_RC_SUBR= chef_client
Index: sysutils/rubygem-facter/Makefile
===================================================================
--- sysutils/rubygem-facter/Makefile
+++ sysutils/rubygem-facter/Makefile
@@ -14,8 +14,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/facter
Index: sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile
===================================================================
--- sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile
+++ sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile
@@ -15,7 +15,6 @@
rubygem-ltsv>0:textproc/rubygem-ltsv
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-fluent-plugin-config-expander/Makefile
===================================================================
--- sysutils/rubygem-fluent-plugin-config-expander/Makefile
+++ sysutils/rubygem-fluent-plugin-config-expander/Makefile
@@ -12,7 +12,6 @@
rubygem-fluentd>0:sysutils/rubygem-fluentd
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-fluent-plugin-file-alternative/Makefile
===================================================================
--- sysutils/rubygem-fluent-plugin-file-alternative/Makefile
+++ sysutils/rubygem-fluent-plugin-file-alternative/Makefile
@@ -13,7 +13,6 @@
rubygem-fluent-mixin-plaintextformatter>0:sysutils/rubygem-fluent-mixin-plaintextformatter
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-fluent-plugin-tail-asis/Makefile
===================================================================
--- sysutils/rubygem-fluent-plugin-tail-asis/Makefile
+++ sysutils/rubygem-fluent-plugin-tail-asis/Makefile
@@ -12,7 +12,6 @@
rubygem-fluentd>0:sysutils/rubygem-fluentd
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-fluentd/Makefile
===================================================================
--- sysutils/rubygem-fluentd/Makefile
+++ sysutils/rubygem-fluentd/Makefile
@@ -20,11 +20,10 @@
rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo
USE_RUBY= yes
-USE_RUBYGEMS= yes
PLIST_FILES= bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
"@sample etc/fluentd/fluent.conf.sample"
PLIST_DIRS= etc/fluentd/plugin
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
USE_RC_SUBR= fluentd
USERS= fluentd
GROUPS= fluentd
Index: sysutils/rubygem-fluentd010/Makefile
===================================================================
--- sysutils/rubygem-fluentd010/Makefile
+++ sysutils/rubygem-fluentd010/Makefile
@@ -20,11 +20,10 @@
rubygem-yajl-ruby>=1.0:devel/rubygem-yajl-ruby
USE_RUBY= yes
-USE_RUBYGEMS= yes
PLIST_FILES= bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \
"@sample etc/fluentd/fluent.conf.sample"
PLIST_DIRS= etc/fluentd/plugin
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
USE_RC_SUBR= fluentd
USERS= fluentd
GROUPS= fluentd
Index: sysutils/rubygem-fssm/Makefile
===================================================================
--- sysutils/rubygem-fssm/Makefile
+++ sysutils/rubygem-fssm/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-god/Makefile
===================================================================
--- sysutils/rubygem-god/Makefile
+++ sysutils/rubygem-god/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/god
Index: sysutils/rubygem-guard-compat/Makefile
===================================================================
--- sysutils/rubygem-guard-compat/Makefile
+++ sysutils/rubygem-guard-compat/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-guard-livereload/Makefile
===================================================================
--- sysutils/rubygem-guard-livereload/Makefile
+++ sysutils/rubygem-guard-livereload/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-guard-minitest/Makefile
===================================================================
--- sysutils/rubygem-guard-minitest/Makefile
+++ sysutils/rubygem-guard-minitest/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-guard-rspec/Makefile
===================================================================
--- sysutils/rubygem-guard-rspec/Makefile
+++ sysutils/rubygem-guard-rspec/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-guard/Makefile
===================================================================
--- sysutils/rubygem-guard/Makefile
+++ sysutils/rubygem-guard/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/guard \
bin/_guard-core
Index: sysutils/rubygem-hammer_cli/Makefile
===================================================================
--- sysutils/rubygem-hammer_cli/Makefile
+++ sysutils/rubygem-hammer_cli/Makefile
@@ -23,8 +23,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
Index: sysutils/rubygem-hammer_cli_foreman/Makefile
===================================================================
--- sysutils/rubygem-hammer_cli_foreman/Makefile
+++ sysutils/rubygem-hammer_cli_foreman/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
Index: sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile
===================================================================
--- sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile
+++ sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d
Index: sysutils/rubygem-hammer_cli_foreman_salt/Makefile
===================================================================
--- sysutils/rubygem-hammer_cli_foreman_salt/Makefile
+++ sysutils/rubygem-hammer_cli_foreman_salt/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_salt.yml.sample"
Index: sysutils/rubygem-hammer_cli_foreman_ssh/Makefile
===================================================================
--- sysutils/rubygem-hammer_cli_foreman_ssh/Makefile
+++ sysutils/rubygem-hammer_cli_foreman_ssh/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_ssh.yml.sample"
Index: sysutils/rubygem-hiera-file/Makefile
===================================================================
--- sysutils/rubygem-hiera-file/Makefile
+++ sysutils/rubygem-hiera-file/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
RUN_DEPENDS= ${PKGNAMEPREFIX}hiera1>=0:sysutils/rubygem-hiera1
Index: sysutils/rubygem-hiera/Makefile
===================================================================
--- sysutils/rubygem-hiera/Makefile
+++ sysutils/rubygem-hiera/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
HIERA_DBDIR= /var/db/hiera
PLIST_FILES= bin/hiera
Index: sysutils/rubygem-hiera1/Makefile
===================================================================
--- sysutils/rubygem-hiera1/Makefile
+++ sysutils/rubygem-hiera1/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
HIERA_DBDIR= /var/db/hiera
PLIST_FILES= bin/hiera
PLIST_DIRS= ${HIERA_DBDIR}
Index: sysutils/rubygem-hieracles/Makefile
===================================================================
--- sysutils/rubygem-hieracles/Makefile
+++ sysutils/rubygem-hieracles/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/hc man/man1/hc.1.gz \
bin/ppdb man/man1/ppdb.1.gz
Index: sysutils/rubygem-librarian-puppet/Makefile
===================================================================
--- sysutils/rubygem-librarian-puppet/Makefile
+++ sysutils/rubygem-librarian-puppet/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/librarian-puppet
.include <bsd.port.mk>
Index: sysutils/rubygem-log4r/Makefile
===================================================================
--- sysutils/rubygem-log4r/Makefile
+++ sysutils/rubygem-log4r/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-logify/Makefile
===================================================================
--- sysutils/rubygem-logify/Makefile
+++ sysutils/rubygem-logify/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-mogilefs-client/Makefile
===================================================================
--- sysutils/rubygem-mogilefs-client/Makefile
+++ sysutils/rubygem-mogilefs-client/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mog
Index: sysutils/rubygem-mothra/Makefile
===================================================================
--- sysutils/rubygem-mothra/Makefile
+++ sysutils/rubygem-mothra/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/mothra
.include <bsd.port.mk>
Index: sysutils/rubygem-murder/Makefile
===================================================================
--- sysutils/rubygem-murder/Makefile
+++ sysutils/rubygem-murder/Makefile
@@ -11,11 +11,9 @@
LICENSE= APACHE20
-USES= python
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist python
.include <bsd.port.mk>
Index: sysutils/rubygem-ohai/Makefile
===================================================================
--- sysutils/rubygem-ohai/Makefile
+++ sysutils/rubygem-ohai/Makefile
@@ -25,8 +25,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ohai
Index: sysutils/rubygem-parallel/Makefile
===================================================================
--- sysutils/rubygem-parallel/Makefile
+++ sysutils/rubygem-parallel/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-puppet_forge/Makefile
===================================================================
--- sysutils/rubygem-puppet_forge/Makefile
+++ sysutils/rubygem-puppet_forge/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-puppet_forge1/Makefile
===================================================================
--- sysutils/rubygem-puppet_forge1/Makefile
+++ sysutils/rubygem-puppet_forge1/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-r10k/Makefile
===================================================================
--- sysutils/rubygem-r10k/Makefile
+++ sysutils/rubygem-r10k/Makefile
@@ -21,9 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/r10k
Index: sysutils/rubygem-rubyipmi/Makefile
===================================================================
--- sysutils/rubygem-rubyipmi/Makefile
+++ sysutils/rubygem-rubyipmi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-shellany/Makefile
===================================================================
--- sysutils/rubygem-shellany/Makefile
+++ sysutils/rubygem-shellany/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-smart_proxy_chef/Makefile
===================================================================
--- sysutils/rubygem-smart_proxy_chef/Makefile
+++ sysutils/rubygem-smart_proxy_chef/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d
Index: sysutils/rubygem-smart_proxy_dynflow/Makefile
===================================================================
--- sysutils/rubygem-smart_proxy_dynflow/Makefile
+++ sysutils/rubygem-smart_proxy_dynflow/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= "@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" \
share/foreman-proxy/bundler.d/dynflow.rb
Index: sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile
===================================================================
--- sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile
+++ sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= "@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" \
share/foreman-proxy/bundler.d/remote_execution_ssh.rb
Index: sysutils/rubygem-smart_proxy_salt/Makefile
===================================================================
--- sysutils/rubygem-smart_proxy_salt/Makefile
+++ sysutils/rubygem-smart_proxy_salt/Makefile
@@ -15,12 +15,10 @@
RUN_DEPENDS= foreman-proxy>=1.8.0:net/foreman-proxy \
${PYTHON_PKGNAMEPREFIX}salt>0:sysutils/py-salt
-USES= python
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist python
post-patch:
@${REINPLACE_CMD} \
Index: sysutils/rubygem-sys-admin/Makefile
===================================================================
--- sysutils/rubygem-sys-admin/Makefile
+++ sysutils/rubygem-sys-admin/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-cpu/Makefile
===================================================================
--- sysutils/rubygem-sys-cpu/Makefile
+++ sysutils/rubygem-sys-cpu/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-filesystem/Makefile
===================================================================
--- sysutils/rubygem-sys-filesystem/Makefile
+++ sysutils/rubygem-sys-filesystem/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-host/Makefile
===================================================================
--- sysutils/rubygem-sys-host/Makefile
+++ sysutils/rubygem-sys-host/Makefile
@@ -12,7 +12,6 @@
LICENSE= ART20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-proctable/Makefile
===================================================================
--- sysutils/rubygem-sys-proctable/Makefile
+++ sysutils/rubygem-sys-proctable/Makefile
@@ -17,7 +17,6 @@
GEM_NAME= ${PORTNAME}-${DISTVERSIONFULL}
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-uname/Makefile
===================================================================
--- sysutils/rubygem-sys-uname/Makefile
+++ sysutils/rubygem-sys-uname/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-sys-uptime/Makefile
===================================================================
--- sysutils/rubygem-sys-uptime/Makefile
+++ sysutils/rubygem-sys-uptime/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: sysutils/rubygem-teamocil/Makefile
===================================================================
--- sysutils/rubygem-teamocil/Makefile
+++ sysutils/rubygem-teamocil/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/teamocil
Index: sysutils/rubygem-winrm-fs/Makefile
===================================================================
--- sysutils/rubygem-winrm-fs/Makefile
+++ sysutils/rubygem-winrm-fs/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rwinrmcp
Index: sysutils/rubygem-winrm/Makefile
===================================================================
--- sysutils/rubygem-winrm/Makefile
+++ sysutils/rubygem-winrm/Makefile
@@ -25,8 +25,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rwinrm
Index: sysutils/rubygem-yell/Makefile
===================================================================
--- sysutils/rubygem-yell/Makefile
+++ sysutils/rubygem-yell/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-actionpack-xml_parser/Makefile
===================================================================
--- textproc/rubygem-actionpack-xml_parser/Makefile
+++ textproc/rubygem-actionpack-xml_parser/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-albino/Makefile
===================================================================
--- textproc/rubygem-albino/Makefile
+++ textproc/rubygem-albino/Makefile
@@ -14,11 +14,9 @@
RUN_DEPENDS= rubygem-posix-spawn>=0.3.6:devel/rubygem-posix-spawn \
${PYTHON_PKGNAMEPREFIX}pygments>=0.8:textproc/py-pygments
-USES= python
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist python
.include <bsd.port.mk>
Index: textproc/rubygem-amatch/Makefile
===================================================================
--- textproc/rubygem-amatch/Makefile
+++ textproc/rubygem-amatch/Makefile
@@ -15,8 +15,7 @@
RUN_DEPENDS= rubygem-tins>=1.0:devel/rubygem-tins
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/agrep.rb
Index: textproc/rubygem-asciidoctor/Makefile
===================================================================
--- textproc/rubygem-asciidoctor/Makefile
+++ textproc/rubygem-asciidoctor/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES+= bin/asciidoctor bin/asciidoctor-safe
Index: textproc/rubygem-autoprefixer-rails/Makefile
===================================================================
--- textproc/rubygem-autoprefixer-rails/Makefile
+++ textproc/rubygem-autoprefixer-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-babosa/Makefile
===================================================================
--- textproc/rubygem-babosa/Makefile
+++ textproc/rubygem-babosa/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-charlock_holmes/Makefile
===================================================================
--- textproc/rubygem-charlock_holmes/Makefile
+++ textproc/rubygem-charlock_holmes/Makefile
@@ -12,8 +12,7 @@
LIB_DEPENDS= libicui18n.so:devel/icu
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
CONFIGURE_ARGS= --with-icu-include=${LOCALBASE}/include
.include <bsd.port.mk>
Index: textproc/rubygem-coderay/Makefile
===================================================================
--- textproc/rubygem-coderay/Makefile
+++ textproc/rubygem-coderay/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/coderay
Index: textproc/rubygem-colorator/Makefile
===================================================================
--- textproc/rubygem-colorator/Makefile
+++ textproc/rubygem-colorator/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-colored/Makefile
===================================================================
--- textproc/rubygem-colored/Makefile
+++ textproc/rubygem-colored/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-compass-core/Makefile
===================================================================
--- textproc/rubygem-compass-core/Makefile
+++ textproc/rubygem-compass-core/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-compass-import-once/Makefile
===================================================================
--- textproc/rubygem-compass-import-once/Makefile
+++ textproc/rubygem-compass-import-once/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-compass-rails/Makefile
===================================================================
--- textproc/rubygem-compass-rails/Makefile
+++ textproc/rubygem-compass-rails/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-compass/Makefile
===================================================================
--- textproc/rubygem-compass/Makefile
+++ textproc/rubygem-compass/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/compass
Index: textproc/rubygem-creole/Makefile
===================================================================
--- textproc/rubygem-creole/Makefile
+++ textproc/rubygem-creole/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-css_parser/Makefile
===================================================================
--- textproc/rubygem-css_parser/Makefile
+++ textproc/rubygem-css_parser/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-cssmin/Makefile
===================================================================
--- textproc/rubygem-cssmin/Makefile
+++ textproc/rubygem-cssmin/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-diff-lcs/Makefile
===================================================================
--- textproc/rubygem-diff-lcs/Makefile
+++ textproc/rubygem-diff-lcs/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
ruby_OLD_CMD= ruby
SHEBANG_FILES= bin/htmldiff bin/ldiff
Index: textproc/rubygem-diffy/Makefile
===================================================================
--- textproc/rubygem-diffy/Makefile
+++ textproc/rubygem-diffy/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-elasticsearch-api/Makefile
===================================================================
--- textproc/rubygem-elasticsearch-api/Makefile
+++ textproc/rubygem-elasticsearch-api/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-elasticsearch-transport/Makefile
===================================================================
--- textproc/rubygem-elasticsearch-transport/Makefile
+++ textproc/rubygem-elasticsearch-transport/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-elasticsearch/Makefile
===================================================================
--- textproc/rubygem-elasticsearch/Makefile
+++ textproc/rubygem-elasticsearch/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-emot/Makefile
===================================================================
--- textproc/rubygem-emot/Makefile
+++ textproc/rubygem-emot/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/emot
Index: textproc/rubygem-escape_utils-rails4/Makefile
===================================================================
--- textproc/rubygem-escape_utils-rails4/Makefile
+++ textproc/rubygem-escape_utils-rails4/Makefile
@@ -14,7 +14,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-escape_utils/Makefile
===================================================================
--- textproc/rubygem-escape_utils/Makefile
+++ textproc/rubygem-escape_utils/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-ezamar/Makefile
===================================================================
--- textproc/rubygem-ezamar/Makefile
+++ textproc/rubygem-ezamar/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-fast_xs/Makefile
===================================================================
--- textproc/rubygem-fast_xs/Makefile
+++ textproc/rubygem-fast_xs/Makefile
@@ -14,7 +14,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-fast_xs073/Makefile
===================================================================
--- textproc/rubygem-fast_xs073/Makefile
+++ textproc/rubygem-fast_xs073/Makefile
@@ -18,7 +18,6 @@
PORTSCOUT= limit:^0.7
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-ferret/Makefile
===================================================================
--- textproc/rubygem-ferret/Makefile
+++ textproc/rubygem-ferret/Makefile
@@ -12,8 +12,7 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ferret-browser
Index: textproc/rubygem-fog-xml/Makefile
===================================================================
--- textproc/rubygem-fog-xml/Makefile
+++ textproc/rubygem-fog-xml/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-gemoji/Makefile
===================================================================
--- textproc/rubygem-gemoji/Makefile
+++ textproc/rubygem-gemoji/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-gherkin/Makefile
===================================================================
--- textproc/rubygem-gherkin/Makefile
+++ textproc/rubygem-gherkin/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-gherkin3/Makefile
===================================================================
--- textproc/rubygem-gherkin3/Makefile
+++ textproc/rubygem-gherkin3/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-github-linguist/Makefile
===================================================================
--- textproc/rubygem-github-linguist/Makefile
+++ textproc/rubygem-github-linguist/Makefile
@@ -18,8 +18,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/git-linguist bin/linguist
Index: textproc/rubygem-github-markdown/Makefile
===================================================================
--- textproc/rubygem-github-markdown/Makefile
+++ textproc/rubygem-github-markdown/Makefile
@@ -11,7 +11,6 @@
DEPRECATED= This gem is not maintained and not supported by upstream
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-github-markup/Makefile
===================================================================
--- textproc/rubygem-github-markup/Makefile
+++ textproc/rubygem-github-markup/Makefile
@@ -15,9 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/bootstrap \
script/cibuild
Index: textproc/rubygem-gitlab-grit/Makefile
===================================================================
--- textproc/rubygem-gitlab-grit/Makefile
+++ textproc/rubygem-gitlab-grit/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-gitlab-linguist/Makefile
===================================================================
--- textproc/rubygem-gitlab-linguist/Makefile
+++ textproc/rubygem-gitlab-linguist/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/linguist
Index: textproc/rubygem-heredoc_unindent/Makefile
===================================================================
--- textproc/rubygem-heredoc_unindent/Makefile
+++ textproc/rubygem-heredoc_unindent/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-hikidoc/Makefile
===================================================================
--- textproc/rubygem-hikidoc/Makefile
+++ textproc/rubygem-hikidoc/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/hikidoc
Index: textproc/rubygem-html-pipeline-gitlab/Makefile
===================================================================
--- textproc/rubygem-html-pipeline-gitlab/Makefile
+++ textproc/rubygem-html-pipeline-gitlab/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-html-pipeline/Makefile
===================================================================
--- textproc/rubygem-html-pipeline/Makefile
+++ textproc/rubygem-html-pipeline/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-html-pipeline1/Makefile
===================================================================
--- textproc/rubygem-html-pipeline1/Makefile
+++ textproc/rubygem-html-pipeline1/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-htmlentities/Makefile
===================================================================
--- textproc/rubygem-htmlentities/Makefile
+++ textproc/rubygem-htmlentities/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-ini/Makefile
===================================================================
--- textproc/rubygem-ini/Makefile
+++ textproc/rubygem-ini/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-itextomml/Makefile
===================================================================
--- textproc/rubygem-itextomml/Makefile
+++ textproc/rubygem-itextomml/Makefile
@@ -13,7 +13,6 @@
LICENSE_COMB= dual
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-assets/Makefile
===================================================================
--- textproc/rubygem-jekyll-assets/Makefile
+++ textproc/rubygem-jekyll-assets/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-feed/Makefile
===================================================================
--- textproc/rubygem-jekyll-feed/Makefile
+++ textproc/rubygem-jekyll-feed/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-gist/Makefile
===================================================================
--- textproc/rubygem-jekyll-gist/Makefile
+++ textproc/rubygem-jekyll-gist/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-mentions/Makefile
===================================================================
--- textproc/rubygem-jekyll-mentions/Makefile
+++ textproc/rubygem-jekyll-mentions/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-paginate/Makefile
===================================================================
--- textproc/rubygem-jekyll-paginate/Makefile
+++ textproc/rubygem-jekyll-paginate/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/bootstrap \
script/cibuild \
script/unbundle
Index: textproc/rubygem-jekyll-redirect-from/Makefile
===================================================================
--- textproc/rubygem-jekyll-redirect-from/Makefile
+++ textproc/rubygem-jekyll-redirect-from/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-sass-converter/Makefile
===================================================================
--- textproc/rubygem-jekyll-sass-converter/Makefile
+++ textproc/rubygem-jekyll-sass-converter/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jekyll-sitemap/Makefile
===================================================================
--- textproc/rubygem-jekyll-sitemap/Makefile
+++ textproc/rubygem-jekyll-sitemap/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jemoji/Makefile
===================================================================
--- textproc/rubygem-jemoji/Makefile
+++ textproc/rubygem-jemoji/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-jsmin/Makefile
===================================================================
--- textproc/rubygem-jsmin/Makefile
+++ textproc/rubygem-jsmin/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-kramdown/Makefile
===================================================================
--- textproc/rubygem-kramdown/Makefile
+++ textproc/rubygem-kramdown/Makefile
@@ -14,9 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/kramdown
Index: textproc/rubygem-kwalify/Makefile
===================================================================
--- textproc/rubygem-kwalify/Makefile
+++ textproc/rubygem-kwalify/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/kwalify
Index: textproc/rubygem-libxml-ruby/Makefile
===================================================================
--- textproc/rubygem-libxml-ruby/Makefile
+++ textproc/rubygem-libxml-ruby/Makefile
@@ -13,7 +13,6 @@
USE_GNOME= libxml2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-linguistics/Makefile
===================================================================
--- textproc/rubygem-linguistics/Makefile
+++ textproc/rubygem-linguistics/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= lib/linguistics.rb \
lib/linguistics/en/linkparser.rb
Index: textproc/rubygem-liquid/Makefile
===================================================================
--- textproc/rubygem-liquid/Makefile
+++ textproc/rubygem-liquid/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-liquid2/Makefile
===================================================================
--- textproc/rubygem-liquid2/Makefile
+++ textproc/rubygem-liquid2/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-loggability/Makefile
===================================================================
--- textproc/rubygem-loggability/Makefile
+++ textproc/rubygem-loggability/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-loofah/Makefile
===================================================================
--- textproc/rubygem-loofah/Makefile
+++ textproc/rubygem-loofah/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-ltsv/Makefile
===================================================================
--- textproc/rubygem-ltsv/Makefile
+++ textproc/rubygem-ltsv/Makefile
@@ -11,7 +11,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-markaby/Makefile
===================================================================
--- textproc/rubygem-markaby/Makefile
+++ textproc/rubygem-markaby/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-multi_xml/Makefile
===================================================================
--- textproc/rubygem-multi_xml/Makefile
+++ textproc/rubygem-multi_xml/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
NOKOGIRI_RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri
Index: textproc/rubygem-nokogiri-diff/Makefile
===================================================================
--- textproc/rubygem-nokogiri-diff/Makefile
+++ textproc/rubygem-nokogiri-diff/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-nokogiri/Makefile
===================================================================
--- textproc/rubygem-nokogiri/Makefile
+++ textproc/rubygem-nokogiri/Makefile
@@ -11,10 +11,8 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pkgconfig
USE_GNOME= libxml2 libxslt
-USES= pkgconfig
CONFIGURE_ARGS= --use-system-libraries
PLIST_FILES= bin/nokogiri
Index: textproc/rubygem-nokogiri14/Makefile
===================================================================
--- textproc/rubygem-nokogiri14/Makefile
+++ textproc/rubygem-nokogiri14/Makefile
@@ -12,10 +12,8 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist pkgconfig
USE_GNOME= libxml2 libxslt
-USES= pkgconfig
CONFIGURE_ARGS= --use-system-libraries
PLIST_FILES= bin/nokogiri14
Index: textproc/rubygem-nokogumbo/Makefile
===================================================================
--- textproc/rubygem-nokogumbo/Makefile
+++ textproc/rubygem-nokogumbo/Makefile
@@ -15,8 +15,6 @@
RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= pkgconfig
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: textproc/rubygem-octopress-escape-code/Makefile
===================================================================
--- textproc/rubygem-octopress-escape-code/Makefile
+++ textproc/rubygem-octopress-escape-code/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-opml/Makefile
===================================================================
--- textproc/rubygem-opml/Makefile
+++ textproc/rubygem-opml/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-org-ruby/Makefile
===================================================================
--- textproc/rubygem-org-ruby/Makefile
+++ textproc/rubygem-org-ruby/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/org-ruby
Index: textproc/rubygem-parslet/Makefile
===================================================================
--- textproc/rubygem-parslet/Makefile
+++ textproc/rubygem-parslet/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-phone/Makefile
===================================================================
--- textproc/rubygem-phone/Makefile
+++ textproc/rubygem-phone/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rails-dom-testing/Makefile
===================================================================
--- textproc/rubygem-rails-dom-testing/Makefile
+++ textproc/rubygem-rails-dom-testing/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rails-html-sanitizer/Makefile
===================================================================
--- textproc/rubygem-rails-html-sanitizer/Makefile
+++ textproc/rubygem-rails-html-sanitizer/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rak/Makefile
===================================================================
--- textproc/rubygem-rak/Makefile
+++ textproc/rubygem-rak/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rak
Index: textproc/rubygem-rchardet/Makefile
===================================================================
--- textproc/rubygem-rchardet/Makefile
+++ textproc/rubygem-rchardet/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rdiscount/Makefile
===================================================================
--- textproc/rubygem-rdiscount/Makefile
+++ textproc/rubygem-rdiscount/Makefile
@@ -12,8 +12,7 @@
LICENSE= BSD3CLAUSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rdiscount
Index: textproc/rubygem-rdtool/Makefile
===================================================================
--- textproc/rubygem-rdtool/Makefile
+++ textproc/rubygem-rdtool/Makefile
@@ -14,12 +14,10 @@
NO_ARCH= yes
-USES= shebangfix
+USE_RUBY= yes
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/rd2 bin/rdswap.rb
ruby_OLD_CMD= /usr/bin/ruby1.9.1
-USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/rd2 bin/rdswap.rb
Index: textproc/rubygem-redcarpet/Makefile
===================================================================
--- textproc/rubygem-redcarpet/Makefile
+++ textproc/rubygem-redcarpet/Makefile
@@ -13,8 +13,7 @@
LICENSE_FILE= ${WRKSRC}/COPYING
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/redcarpet
Index: textproc/rubygem-reverse_markdown/Makefile
===================================================================
--- textproc/rubygem-reverse_markdown/Makefile
+++ textproc/rubygem-reverse_markdown/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/reverse_markdown
.include <bsd.port.mk>
Index: textproc/rubygem-ri_cal/Makefile
===================================================================
--- textproc/rubygem-ri_cal/Makefile
+++ textproc/rubygem-ri_cal/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ri_cal
Index: textproc/rubygem-rich/Makefile
===================================================================
--- textproc/rubygem-rich/Makefile
+++ textproc/rubygem-rich/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rmmseg-cpp/Makefile
===================================================================
--- textproc/rubygem-rmmseg-cpp/Makefile
+++ textproc/rubygem-rmmseg-cpp/Makefile
@@ -13,9 +13,7 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= misc/convert.rb
PLIST_FILES= bin/rmmseg
Index: textproc/rubygem-rouge/Makefile
===================================================================
--- textproc/rubygem-rouge/Makefile
+++ textproc/rubygem-rouge/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rougify
.include <bsd.port.mk>
Index: textproc/rubygem-rttool/Makefile
===================================================================
--- textproc/rubygem-rttool/Makefile
+++ textproc/rubygem-rttool/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rdrt2 bin/rt2
Index: textproc/rubygem-ruby-augeas/Makefile
===================================================================
--- textproc/rubygem-ruby-augeas/Makefile
+++ textproc/rubygem-ruby-augeas/Makefile
@@ -17,8 +17,6 @@
CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include/libxml2"
USE_GNOME= libxml2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= pkgconfig
+USES= gem:autoplist pkgconfig
.include <bsd.port.mk>
Index: textproc/rubygem-ruby-xslt/Makefile
===================================================================
--- textproc/rubygem-ruby-xslt/Makefile
+++ textproc/rubygem-ruby-xslt/Makefile
@@ -13,7 +13,6 @@
USE_GNOME= libxslt
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rubypants/Makefile
===================================================================
--- textproc/rubygem-rubypants/Makefile
+++ textproc/rubygem-rubypants/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-rugments/Makefile
===================================================================
--- textproc/rubygem-rugments/Makefile
+++ textproc/rubygem-rugments/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rugmentize
Index: textproc/rubygem-sanitize/Makefile
===================================================================
--- textproc/rubygem-sanitize/Makefile
+++ textproc/rubygem-sanitize/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-sass-rails/Makefile
===================================================================
--- textproc/rubygem-sass-rails/Makefile
+++ textproc/rubygem-sass-rails/Makefile
@@ -19,8 +19,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^3\.
Index: textproc/rubygem-sass-rails4/Makefile
===================================================================
--- textproc/rubygem-sass-rails4/Makefile
+++ textproc/rubygem-sass-rails4/Makefile
@@ -23,7 +23,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-sass-rails5/Makefile
===================================================================
--- textproc/rubygem-sass-rails5/Makefile
+++ textproc/rubygem-sass-rails5/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-sass/Makefile
===================================================================
--- textproc/rubygem-sass/Makefile
+++ textproc/rubygem-sass/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/sass bin/sass-convert bin/scss
Index: textproc/rubygem-sass32/Makefile
===================================================================
--- textproc/rubygem-sass32/Makefile
+++ textproc/rubygem-sass32/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-sax-machine/Makefile
===================================================================
--- textproc/rubygem-sax-machine/Makefile
+++ textproc/rubygem-sax-machine/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-scss_lint/Makefile
===================================================================
--- textproc/rubygem-scss_lint/Makefile
+++ textproc/rubygem-scss_lint/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/scss-lint
Index: textproc/rubygem-shell2html/Makefile
===================================================================
--- textproc/rubygem-shell2html/Makefile
+++ textproc/rubygem-shell2html/Makefile
@@ -12,8 +12,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/shell2css bin/shell2html
.include <bsd.port.mk>
Index: textproc/rubygem-simplecov-html/Makefile
===================================================================
--- textproc/rubygem-simplecov-html/Makefile
+++ textproc/rubygem-simplecov-html/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-spreadsheet/Makefile
===================================================================
--- textproc/rubygem-spreadsheet/Makefile
+++ textproc/rubygem-spreadsheet/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/xlsopcodes
Index: textproc/rubygem-stamp/Makefile
===================================================================
--- textproc/rubygem-stamp/Makefile
+++ textproc/rubygem-stamp/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-string-scrub/Makefile
===================================================================
--- textproc/rubygem-string-scrub/Makefile
+++ textproc/rubygem-string-scrub/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.pre.mk>
Index: textproc/rubygem-syntax/Makefile
===================================================================
--- textproc/rubygem-syntax/Makefile
+++ textproc/rubygem-syntax/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-termcolor/Makefile
===================================================================
--- textproc/rubygem-termcolor/Makefile
+++ textproc/rubygem-termcolor/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-terminal-table/Makefile
===================================================================
--- textproc/rubygem-terminal-table/Makefile
+++ textproc/rubygem-terminal-table/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-text/Makefile
===================================================================
--- textproc/rubygem-text/Makefile
+++ textproc/rubygem-text/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-tidy/Makefile
===================================================================
--- textproc/rubygem-tidy/Makefile
+++ textproc/rubygem-tidy/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-twitter-text/Makefile
===================================================================
--- textproc/rubygem-twitter-text/Makefile
+++ textproc/rubygem-twitter-text/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-unf/Makefile
===================================================================
--- textproc/rubygem-unf/Makefile
+++ textproc/rubygem-unf/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-unf_ext/Makefile
===================================================================
--- textproc/rubygem-unf_ext/Makefile
+++ textproc/rubygem-unf_ext/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-version_sorter/Makefile
===================================================================
--- textproc/rubygem-version_sorter/Makefile
+++ textproc/rubygem-version_sorter/Makefile
@@ -13,7 +13,6 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-wikicloth/Makefile
===================================================================
--- textproc/rubygem-wikicloth/Makefile
+++ textproc/rubygem-wikicloth/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-xml-simple/Makefile
===================================================================
--- textproc/rubygem-xml-simple/Makefile
+++ textproc/rubygem-xml-simple/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-ya2yaml/Makefile
===================================================================
--- textproc/rubygem-ya2yaml/Makefile
+++ textproc/rubygem-ya2yaml/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-yard-chef/Makefile
===================================================================
--- textproc/rubygem-yard-chef/Makefile
+++ textproc/rubygem-yard-chef/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: textproc/rubygem-yard/Makefile
===================================================================
--- textproc/rubygem-yard/Makefile
+++ textproc/rubygem-yard/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/yard \
bin/yardoc \
Index: textproc/rubygem-zmq/Makefile
===================================================================
--- textproc/rubygem-zmq/Makefile
+++ textproc/rubygem-zmq/Makefile
@@ -14,7 +14,6 @@
LIB_DEPENDS= libzmq.so:net/libzmq2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-ace-rails-ap/Makefile
===================================================================
--- www/rubygem-ace-rails-ap/Makefile
+++ www/rubygem-ace-rails-ap/Makefile
@@ -14,9 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= update.sh
Index: www/rubygem-actionpack/Makefile
===================================================================
--- www/rubygem-actionpack/Makefile
+++ www/rubygem-actionpack/Makefile
@@ -24,7 +24,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-actionpack4/Makefile
===================================================================
--- www/rubygem-actionpack4/Makefile
+++ www/rubygem-actionpack4/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-activeresource/Makefile
===================================================================
--- www/rubygem-activeresource/Makefile
+++ www/rubygem-activeresource/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-activeresource4/Makefile
===================================================================
--- www/rubygem-activeresource4/Makefile
+++ www/rubygem-activeresource4/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-acts-as-taggable-on/Makefile
===================================================================
--- www/rubygem-acts-as-taggable-on/Makefile
+++ www/rubygem-acts-as-taggable-on/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= YES
-USE_RUBYGEMS= YES
-RUBYGEM_AUTOPLIST= YES
+USES= gem:autoplist
BROKEN_RUBY23= yes
Index: www/rubygem-acts-as-taggable-on3/Makefile
===================================================================
--- www/rubygem-acts-as-taggable-on3/Makefile
+++ www/rubygem-acts-as-taggable-on3/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-acts_as_taggable/Makefile
===================================================================
--- www/rubygem-acts_as_taggable/Makefile
+++ www/rubygem-acts_as_taggable/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-addressable/Makefile
===================================================================
--- www/rubygem-addressable/Makefile
+++ www/rubygem-addressable/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-akami/Makefile
===================================================================
--- www/rubygem-akami/Makefile
+++ www/rubygem-akami/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-amazon-ecs/Makefile
===================================================================
--- www/rubygem-amazon-ecs/Makefile
+++ www/rubygem-amazon-ecs/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-anemone/Makefile
===================================================================
--- www/rubygem-anemone/Makefile
+++ www/rubygem-anemone/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/anemone
Index: www/rubygem-asana/Makefile
===================================================================
--- www/rubygem-asana/Makefile
+++ www/rubygem-asana/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-async_sinatra/Makefile
===================================================================
--- www/rubygem-async_sinatra/Makefile
+++ www/rubygem-async_sinatra/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-bluecloth/Makefile
===================================================================
--- www/rubygem-bluecloth/Makefile
+++ www/rubygem-bluecloth/Makefile
@@ -12,9 +12,7 @@
LICENSE= BSD3CLAUSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= bin/bluecloth
PLIST_FILES= bin/bluecloth
Index: www/rubygem-bootstrap-sass/Makefile
===================================================================
--- www/rubygem-bootstrap-sass/Makefile
+++ www/rubygem-bootstrap-sass/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-browser/Makefile
===================================================================
--- www/rubygem-browser/Makefile
+++ www/rubygem-browser/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-cal-heatmap-rails-rails4/Makefile
===================================================================
--- www/rubygem-cal-heatmap-rails-rails4/Makefile
+++ www/rubygem-cal-heatmap-rails-rails4/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-cal-heatmap-rails/Makefile
===================================================================
--- www/rubygem-cal-heatmap-rails/Makefile
+++ www/rubygem-cal-heatmap-rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-carrierwave/Makefile
===================================================================
--- www/rubygem-carrierwave/Makefile
+++ www/rubygem-carrierwave/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-cgi_multipart_eof_fix/Makefile
===================================================================
--- www/rubygem-cgi_multipart_eof_fix/Makefile
+++ www/rubygem-cgi_multipart_eof_fix/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-chosen-rails/Makefile
===================================================================
--- www/rubygem-chosen-rails/Makefile
+++ www/rubygem-chosen-rails/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-cookiejar/Makefile
===================================================================
--- www/rubygem-cookiejar/Makefile
+++ www/rubygem-cookiejar/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-crass/Makefile
===================================================================
--- www/rubygem-crass/Makefile
+++ www/rubygem-crass/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-cuba/Makefile
===================================================================
--- www/rubygem-cuba/Makefile
+++ www/rubygem-cuba/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-d3_rails-rails4/Makefile
===================================================================
--- www/rubygem-d3_rails-rails4/Makefile
+++ www/rubygem-d3_rails-rails4/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-d3_rails/Makefile
===================================================================
--- www/rubygem-d3_rails/Makefile
+++ www/rubygem-d3_rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-dashing/Makefile
===================================================================
--- www/rubygem-dashing/Makefile
+++ www/rubygem-dashing/Makefile
@@ -28,8 +28,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/dashing
Index: www/rubygem-davclient/Makefile
===================================================================
--- www/rubygem-davclient/Makefile
+++ www/rubygem-davclient/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/dav
Index: www/rubygem-domainatrix/Makefile
===================================================================
--- www/rubygem-domainatrix/Makefile
+++ www/rubygem-domainatrix/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-dropzonejs-rails/Makefile
===================================================================
--- www/rubygem-dropzonejs-rails/Makefile
+++ www/rubygem-dropzonejs-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-em-http-request/Makefile
===================================================================
--- www/rubygem-em-http-request/Makefile
+++ www/rubygem-em-http-request/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-em-socksify/Makefile
===================================================================
--- www/rubygem-em-socksify/Makefile
+++ www/rubygem-em-socksify/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-em-twitter/Makefile
===================================================================
--- www/rubygem-em-twitter/Makefile
+++ www/rubygem-em-twitter/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-em-websocket/Makefile
===================================================================
--- www/rubygem-em-websocket/Makefile
+++ www/rubygem-em-websocket/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-emk-sinatra-url-for/Makefile
===================================================================
--- www/rubygem-emk-sinatra-url-for/Makefile
+++ www/rubygem-emk-sinatra-url-for/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-erubis/Makefile
===================================================================
--- www/rubygem-erubis/Makefile
+++ www/rubygem-erubis/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/erubis
Index: www/rubygem-ethon/Makefile
===================================================================
--- www/rubygem-ethon/Makefile
+++ www/rubygem-ethon/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-eventmachine_httpserver/Makefile
===================================================================
--- www/rubygem-eventmachine_httpserver/Makefile
+++ www/rubygem-eventmachine_httpserver/Makefile
@@ -12,7 +12,6 @@
LICENSE= GPLv2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-faraday/Makefile
===================================================================
--- www/rubygem-faraday/Makefile
+++ www/rubygem-faraday/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-faraday_middleware/Makefile
===================================================================
--- www/rubygem-faraday_middleware/Makefile
+++ www/rubygem-faraday_middleware/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-fcgi/Makefile
===================================================================
--- www/rubygem-fcgi/Makefile
+++ www/rubygem-fcgi/Makefile
@@ -13,7 +13,6 @@
LIB_DEPENDS= libfcgi.so:www/fcgi
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-feed-normalizer/Makefile
===================================================================
--- www/rubygem-feed-normalizer/Makefile
+++ www/rubygem-feed-normalizer/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-feedjira/Makefile
===================================================================
--- www/rubygem-feedjira/Makefile
+++ www/rubygem-feedjira/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-flowdock/Makefile
===================================================================
--- www/rubygem-flowdock/Makefile
+++ www/rubygem-flowdock/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-geminabox/Makefile
===================================================================
--- www/rubygem-geminabox/Makefile
+++ www/rubygem-geminabox/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gitlab-flowdock-git-hook/Makefile
===================================================================
--- www/rubygem-gitlab-flowdock-git-hook/Makefile
+++ www/rubygem-gitlab-flowdock-git-hook/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gitlab-gollum-lib/Makefile
===================================================================
--- www/rubygem-gitlab-gollum-lib/Makefile
+++ www/rubygem-gitlab-gollum-lib/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gitlab-grack/Makefile
===================================================================
--- www/rubygem-gitlab-grack/Makefile
+++ www/rubygem-gitlab-grack/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gollum-grit_adapter/Makefile
===================================================================
--- www/rubygem-gollum-grit_adapter/Makefile
+++ www/rubygem-gollum-grit_adapter/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gollum-lib/Makefile
===================================================================
--- www/rubygem-gollum-lib/Makefile
+++ www/rubygem-gollum-lib/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gollum-rugged_adapter/Makefile
===================================================================
--- www/rubygem-gollum-rugged_adapter/Makefile
+++ www/rubygem-gollum-rugged_adapter/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gon-rails4/Makefile
===================================================================
--- www/rubygem-gon-rails4/Makefile
+++ www/rubygem-gon-rails4/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-gon/Makefile
===================================================================
--- www/rubygem-gon/Makefile
+++ www/rubygem-gon/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-hackpad-cli/Makefile
===================================================================
--- www/rubygem-hackpad-cli/Makefile
+++ www/rubygem-hackpad-cli/Makefile
@@ -20,8 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/hpcli
.include <bsd.port.mk>
Index: www/rubygem-haml-coderay/Makefile
===================================================================
--- www/rubygem-haml-coderay/Makefile
+++ www/rubygem-haml-coderay/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-haml-contrib/Makefile
===================================================================
--- www/rubygem-haml-contrib/Makefile
+++ www/rubygem-haml-contrib/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-haml-rails-rails4/Makefile
===================================================================
--- www/rubygem-haml-rails-rails4/Makefile
+++ www/rubygem-haml-rails-rails4/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-haml-rails/Makefile
===================================================================
--- www/rubygem-haml-rails/Makefile
+++ www/rubygem-haml-rails/Makefile
@@ -20,7 +20,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-haml/Makefile
===================================================================
--- www/rubygem-haml/Makefile
+++ www/rubygem-haml/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/haml
Index: www/rubygem-hashicorp-checkpoint/Makefile
===================================================================
--- www/rubygem-hashicorp-checkpoint/Makefile
+++ www/rubygem-hashicorp-checkpoint/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-heroku-api/Makefile
===================================================================
--- www/rubygem-heroku-api/Makefile
+++ www/rubygem-heroku-api/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-heroku-nav/Makefile
===================================================================
--- www/rubygem-heroku-nav/Makefile
+++ www/rubygem-heroku-nav/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
RUN_DEPENDS+= rubygem-sinatra>=0:www/rubygem-sinatra
Index: www/rubygem-heroku/Makefile
===================================================================
--- www/rubygem-heroku/Makefile
+++ www/rubygem-heroku/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/heroku
Index: www/rubygem-hpricot/Makefile
===================================================================
--- www/rubygem-hpricot/Makefile
+++ www/rubygem-hpricot/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-html2haml/Makefile
===================================================================
--- www/rubygem-html2haml/Makefile
+++ www/rubygem-html2haml/Makefile
@@ -18,10 +18,9 @@
rubygem-ruby_parser>=3.5:devel/rubygem-ruby_parser
USE_RUBY= yes
-USE_RUBYGEMS= yes
NO_ARCH= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/html2haml
.include <bsd.port.mk>
Index: www/rubygem-http-cookie/Makefile
===================================================================
--- www/rubygem-http-cookie/Makefile
+++ www/rubygem-http-cookie/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-http-form_data/Makefile
===================================================================
--- www/rubygem-http-form_data/Makefile
+++ www/rubygem-http-form_data/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-http/Makefile
===================================================================
--- www/rubygem-http/Makefile
+++ www/rubygem-http/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-http_router/Makefile
===================================================================
--- www/rubygem-http_router/Makefile
+++ www/rubygem-http_router/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-httparty/Makefile
===================================================================
--- www/rubygem-httparty/Makefile
+++ www/rubygem-httparty/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/httparty
Index: www/rubygem-httpclient/Makefile
===================================================================
--- www/rubygem-httpclient/Makefile
+++ www/rubygem-httpclient/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/httpclient
Index: www/rubygem-httpi/Makefile
===================================================================
--- www/rubygem-httpi/Makefile
+++ www/rubygem-httpi/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^0\.9\.
Index: www/rubygem-innate/Makefile
===================================================================
--- www/rubygem-innate/Makefile
+++ www/rubygem-innate/Makefile
@@ -17,9 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist shebangfix
SHEBANG_FILES= .load_gemset
-USES= shebangfix
.include <bsd.port.mk>
Index: www/rubygem-jekyll-watch/Makefile
===================================================================
--- www/rubygem-jekyll-watch/Makefile
+++ www/rubygem-jekyll-watch/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jekyll/Makefile
===================================================================
--- www/rubygem-jekyll/Makefile
+++ www/rubygem-jekyll/Makefile
@@ -25,8 +25,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/jekyll
Index: www/rubygem-jekyll2/Makefile
===================================================================
--- www/rubygem-jekyll2/Makefile
+++ www/rubygem-jekyll2/Makefile
@@ -35,8 +35,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/jekyll
Index: www/rubygem-journey/Makefile
===================================================================
--- www/rubygem-journey/Makefile
+++ www/rubygem-journey/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-atwho-rails-rails4/Makefile
===================================================================
--- www/rubygem-jquery-atwho-rails-rails4/Makefile
+++ www/rubygem-jquery-atwho-rails-rails4/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-atwho-rails/Makefile
===================================================================
--- www/rubygem-jquery-atwho-rails/Makefile
+++ www/rubygem-jquery-atwho-rails/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-rails/Makefile
===================================================================
--- www/rubygem-jquery-rails/Makefile
+++ www/rubygem-jquery-rails/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-rails4/Makefile
===================================================================
--- www/rubygem-jquery-rails4/Makefile
+++ www/rubygem-jquery-rails4/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-scrollto-rails/Makefile
===================================================================
--- www/rubygem-jquery-scrollto-rails/Makefile
+++ www/rubygem-jquery-scrollto-rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-turbolinks/Makefile
===================================================================
--- www/rubygem-jquery-turbolinks/Makefile
+++ www/rubygem-jquery-turbolinks/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-ui-rails-rails4/Makefile
===================================================================
--- www/rubygem-jquery-ui-rails-rails4/Makefile
+++ www/rubygem-jquery-ui-rails-rails4/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jquery-ui-rails/Makefile
===================================================================
--- www/rubygem-jquery-ui-rails/Makefile
+++ www/rubygem-jquery-ui-rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jruby-rack/Makefile
===================================================================
--- www/rubygem-jruby-rack/Makefile
+++ www/rubygem-jruby-rack/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-jsobfu/Makefile
===================================================================
--- www/rubygem-jsobfu/Makefile
+++ www/rubygem-jsobfu/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/jsobfu
.include <bsd.port.mk>
Index: www/rubygem-jwt/Makefile
===================================================================
--- www/rubygem-jwt/Makefile
+++ www/rubygem-jwt/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-kaminari-rails4/Makefile
===================================================================
--- www/rubygem-kaminari-rails4/Makefile
+++ www/rubygem-kaminari-rails4/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-kaminari/Makefile
===================================================================
--- www/rubygem-kaminari/Makefile
+++ www/rubygem-kaminari/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-kensa/Makefile
===================================================================
--- www/rubygem-kensa/Makefile
+++ www/rubygem-kensa/Makefile
@@ -13,8 +13,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/kensa
Index: www/rubygem-layout_yullio_generator/Makefile
===================================================================
--- www/rubygem-layout_yullio_generator/Makefile
+++ www/rubygem-layout_yullio_generator/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-less/Makefile
===================================================================
--- www/rubygem-less/Makefile
+++ www/rubygem-less/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/lessc
Index: www/rubygem-lighthouse-api/Makefile
===================================================================
--- www/rubygem-lighthouse-api/Makefile
+++ www/rubygem-lighthouse-api/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-maruku/Makefile
===================================================================
--- www/rubygem-maruku/Makefile
+++ www/rubygem-maruku/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/maruku bin/marutex
Index: www/rubygem-mechanize/Makefile
===================================================================
--- www/rubygem-mechanize/Makefile
+++ www/rubygem-mechanize/Makefile
@@ -23,7 +23,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-mechanize26/Makefile
===================================================================
--- www/rubygem-mechanize26/Makefile
+++ www/rubygem-mechanize26/Makefile
@@ -24,8 +24,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.6
Index: www/rubygem-merb-assets/Makefile
===================================================================
--- www/rubygem-merb-assets/Makefile
+++ www/rubygem-merb-assets/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-merb-core/Makefile
===================================================================
--- www/rubygem-merb-core/Makefile
+++ www/rubygem-merb-core/Makefile
@@ -21,9 +21,7 @@
rubygem-rake>=0:devel/rubygem-rake
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis \
spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis
Index: www/rubygem-merb-haml/Makefile
===================================================================
--- www/rubygem-merb-haml/Makefile
+++ www/rubygem-merb-haml/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-merb-helpers/Makefile
===================================================================
--- www/rubygem-merb-helpers/Makefile
+++ www/rubygem-merb-helpers/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-merb-param-protection/Makefile
===================================================================
--- www/rubygem-merb-param-protection/Makefile
+++ www/rubygem-merb-param-protection/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-mousetrap-rails/Makefile
===================================================================
--- www/rubygem-mousetrap-rails/Makefile
+++ www/rubygem-mousetrap-rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-multipart-post/Makefile
===================================================================
--- www/rubygem-multipart-post/Makefile
+++ www/rubygem-multipart-post/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-nanoc/Makefile
===================================================================
--- www/rubygem-nanoc/Makefile
+++ www/rubygem-nanoc/Makefile
@@ -16,9 +16,8 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
USE_RAKE= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/nanoc
Index: www/rubygem-nested_form/Makefile
===================================================================
--- www/rubygem-nested_form/Makefile
+++ www/rubygem-nested_form/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-net-http-digest_auth/Makefile
===================================================================
--- www/rubygem-net-http-digest_auth/Makefile
+++ www/rubygem-net-http-digest_auth/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-net-http-digest_auth11/Makefile
===================================================================
--- www/rubygem-net-http-digest_auth11/Makefile
+++ www/rubygem-net-http-digest_auth11/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^1\.1
Index: www/rubygem-net-http-persistent/Makefile
===================================================================
--- www/rubygem-net-http-persistent/Makefile
+++ www/rubygem-net-http-persistent/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-net-http-persistent25/Makefile
===================================================================
--- www/rubygem-net-http-persistent25/Makefile
+++ www/rubygem-net-http-persistent25/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PORTSCOUT= limit:^2\.5
Index: www/rubygem-net-http-pipeline/Makefile
===================================================================
--- www/rubygem-net-http-pipeline/Makefile
+++ www/rubygem-net-http-pipeline/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-nicovideo/Makefile
===================================================================
--- www/rubygem-nicovideo/Makefile
+++ www/rubygem-nicovideo/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-ntlm-http/Makefile
===================================================================
--- www/rubygem-ntlm-http/Makefile
+++ www/rubygem-ntlm-http/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-octopress/Makefile
===================================================================
--- www/rubygem-octopress/Makefile
+++ www/rubygem-octopress/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/octopress
Index: www/rubygem-pagerduty/Makefile
===================================================================
--- www/rubygem-pagerduty/Makefile
+++ www/rubygem-pagerduty/Makefile
@@ -16,9 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= script/setup.sh
.include <bsd.port.mk>
Index: www/rubygem-passenger/Makefile
===================================================================
--- www/rubygem-passenger/Makefile
+++ www/rubygem-passenger/Makefile
@@ -10,8 +10,6 @@
MAINTAINER= osa@FreeBSD.org
COMMENT= Modules for running Ruby on Rails and Rack applications
-USES+= cpe
-
CPE_VENDOR= phusion
CPE_PRODUCT= passenger
@@ -25,8 +23,7 @@
USE_RUBY= yes
USE_RAKE= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= cpe gem:autoplist
.include <bsd.port.options.mk>
Index: www/rubygem-puma/Makefile
===================================================================
--- www/rubygem-puma/Makefile
+++ www/rubygem-puma/Makefile
@@ -13,9 +13,7 @@
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/puma bin/pumactl
Index: www/rubygem-pusher-client/Makefile
===================================================================
--- www/rubygem-pusher-client/Makefile
+++ www/rubygem-pusher-client/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rabbirack/Makefile
===================================================================
--- www/rubygem-rabbirack/Makefile
+++ www/rubygem-rabbirack/Makefile
@@ -18,10 +18,8 @@
rubygem-sinatra>0:www/rubygem-sinatra
NO_ARCH= yes
-USES= gettext
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist gettext
PLIST_FILES= bin/rabbirack
.include <bsd.port.mk>
Index: www/rubygem-rack-accept/Makefile
===================================================================
--- www/rubygem-rack-accept/Makefile
+++ www/rubygem-rack-accept/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-attack/Makefile
===================================================================
--- www/rubygem-rack-attack/Makefile
+++ www/rubygem-rack-attack/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-cache/Makefile
===================================================================
--- www/rubygem-rack-cache/Makefile
+++ www/rubygem-rack-cache/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-contrib/Makefile
===================================================================
--- www/rubygem-rack-contrib/Makefile
+++ www/rubygem-rack-contrib/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-cors/Makefile
===================================================================
--- www/rubygem-rack-cors/Makefile
+++ www/rubygem-rack-cors/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-mount/Makefile
===================================================================
--- www/rubygem-rack-mount/Makefile
+++ www/rubygem-rack-mount/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-openid/Makefile
===================================================================
--- www/rubygem-rack-openid/Makefile
+++ www/rubygem-rack-openid/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-protection/Makefile
===================================================================
--- www/rubygem-rack-protection/Makefile
+++ www/rubygem-rack-protection/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-ssl/Makefile
===================================================================
--- www/rubygem-rack-ssl/Makefile
+++ www/rubygem-rack-ssl/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack-test/Makefile
===================================================================
--- www/rubygem-rack-test/Makefile
+++ www/rubygem-rack-test/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rack/Makefile
===================================================================
--- www/rubygem-rack/Makefile
+++ www/rubygem-rack/Makefile
@@ -20,9 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/cgi/test.ru
SHEBANG_LANG= rackup
Index: www/rubygem-rack15/Makefile
===================================================================
--- www/rubygem-rack15/Makefile
+++ www/rubygem-rack15/Makefile
@@ -21,9 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/cgi/test.ru
SHEBANG_LANG= rackup
Index: www/rubygem-rack16/Makefile
===================================================================
--- www/rubygem-rack16/Makefile
+++ www/rubygem-rack16/Makefile
@@ -20,9 +20,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= test/cgi/test.ru
SHEBANG_LANG= rackup
Index: www/rubygem-rails/Makefile
===================================================================
--- www/rubygem-rails/Makefile
+++ www/rubygem-rails/Makefile
@@ -43,13 +43,10 @@
NO_ARCH= yes
USE_RUBY= yes
USE_RUBY_RDOC= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= cpe gem:autoplist
PLIST_DIRS= ${GEM_LIB_DIR}
-USES= cpe
-
CPE_VENDOR= rubyonrails
CPE_PRODUCT= ruby_on_rails
Index: www/rubygem-rails4/Makefile
===================================================================
--- www/rubygem-rails4/Makefile
+++ www/rubygem-rails4/Makefile
@@ -44,9 +44,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= cpe
+USES= cpe gem:autoplist
CPE_VENDOR= rubyonrails
CPE_PRODUCT= ruby_on_rails
Index: www/rubygem-rails_autolink/Makefile
===================================================================
--- www/rubygem-rails_autolink/Makefile
+++ www/rubygem-rails_autolink/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-railties/Makefile
===================================================================
--- www/rubygem-railties/Makefile
+++ www/rubygem-railties/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rails
Index: www/rubygem-railties4/Makefile
===================================================================
--- www/rubygem-railties4/Makefile
+++ www/rubygem-railties4/Makefile
@@ -21,8 +21,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rails
Index: www/rubygem-raindrops/Makefile
===================================================================
--- www/rubygem-raindrops/Makefile
+++ www/rubygem-raindrops/Makefile
@@ -14,9 +14,7 @@
LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
SHEBANG_FILES= examples/linux-listener-stats.rb
Index: www/rubygem-ramaze/Makefile
===================================================================
--- www/rubygem-ramaze/Makefile
+++ www/rubygem-ramaze/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/ramaze
Index: www/rubygem-raphael-rails/Makefile
===================================================================
--- www/rubygem-raphael-rails/Makefile
+++ www/rubygem-raphael-rails/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-redcloth/Makefile
===================================================================
--- www/rubygem-redcloth/Makefile
+++ www/rubygem-redcloth/Makefile
@@ -14,8 +14,7 @@
GEM_NAME= ${DISTNAME}
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/redcloth
Index: www/rubygem-redis-rack/Makefile
===================================================================
--- www/rubygem-redis-rack/Makefile
+++ www/rubygem-redis-rack/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-redis-rails/Makefile
===================================================================
--- www/rubygem-redis-rails/Makefile
+++ www/rubygem-redis-rails/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-redmine_acts_as_taggable_on/Makefile
===================================================================
--- www/rubygem-redmine_acts_as_taggable_on/Makefile
+++ www/rubygem-redmine_acts_as_taggable_on/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-responders-rails3/Makefile
===================================================================
--- www/rubygem-responders-rails3/Makefile
+++ www/rubygem-responders-rails3/Makefile
@@ -19,7 +19,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-responders/Makefile
===================================================================
--- www/rubygem-responders/Makefile
+++ www/rubygem-responders/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rest-client/Makefile
===================================================================
--- www/rubygem-rest-client/Makefile
+++ www/rubygem-rest-client/Makefile
@@ -16,8 +16,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/restclient
.include <bsd.port.mk>
Index: www/rubygem-rfacebook/Makefile
===================================================================
--- www/rubygem-rfacebook/Makefile
+++ www/rubygem-rfacebook/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rfeedfinder/Makefile
===================================================================
--- www/rubygem-rfeedfinder/Makefile
+++ www/rubygem-rfeedfinder/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rinku/Makefile
===================================================================
--- www/rubygem-rinku/Makefile
+++ www/rubygem-rinku/Makefile
@@ -12,7 +12,6 @@
LICENSE= ISCL
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rkelly-remix/Makefile
===================================================================
--- www/rubygem-rkelly-remix/Makefile
+++ www/rubygem-rkelly-remix/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST=yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-robotex/Makefile
===================================================================
--- www/rubygem-robotex/Makefile
+++ www/rubygem-robotex/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-robots/Makefile
===================================================================
--- www/rubygem-robots/Makefile
+++ www/rubygem-robots/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
post-extract:
${CHMOD} -R a+r ${WRKSRC}
Index: www/rubygem-rqrcode-rails3/Makefile
===================================================================
--- www/rubygem-rqrcode-rails3/Makefile
+++ www/rubygem-rqrcode-rails3/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rqrcode/Makefile
===================================================================
--- www/rubygem-rqrcode/Makefile
+++ www/rubygem-rqrcode/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-rtlit/Makefile
===================================================================
--- www/rubygem-rtlit/Makefile
+++ www/rubygem-rtlit/Makefile
@@ -14,8 +14,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/rtlit
Index: www/rubygem-ruby-readability/Makefile
===================================================================
--- www/rubygem-ruby-readability/Makefile
+++ www/rubygem-ruby-readability/Makefile
@@ -17,8 +17,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/readability
Index: www/rubygem-savon/Makefile
===================================================================
--- www/rubygem-savon/Makefile
+++ www/rubygem-savon/Makefile
@@ -22,7 +22,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-sawyer/Makefile
===================================================================
--- www/rubygem-sawyer/Makefile
+++ www/rubygem-sawyer/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-scrapi/Makefile
===================================================================
--- www/rubygem-scrapi/Makefile
+++ www/rubygem-scrapi/Makefile
@@ -15,9 +15,8 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
USE_LDCONFIG= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= ${GEM_LIB_DIR}/lib/tidy/libtidy.so
.include <bsd.port.pre.mk>
Index: www/rubygem-select2-rails/Makefile
===================================================================
--- www/rubygem-select2-rails/Makefile
+++ www/rubygem-select2-rails/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-selenium-webdriver/Makefile
===================================================================
--- www/rubygem-selenium-webdriver/Makefile
+++ www/rubygem-selenium-webdriver/Makefile
@@ -17,7 +17,6 @@
rubygem-websocket>=1.0:www/rubygem-websocket
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-semantic-ui-sass/Makefile
===================================================================
--- www/rubygem-semantic-ui-sass/Makefile
+++ www/rubygem-semantic-ui-sass/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-simple-rss/Makefile
===================================================================
--- www/rubygem-simple-rss/Makefile
+++ www/rubygem-simple-rss/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-sinatra-contrib/Makefile
===================================================================
--- www/rubygem-sinatra-contrib/Makefile
+++ www/rubygem-sinatra-contrib/Makefile
@@ -21,7 +21,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-sinatra-r18n/Makefile
===================================================================
--- www/rubygem-sinatra-r18n/Makefile
+++ www/rubygem-sinatra-r18n/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-sinatra-respond_to/Makefile
===================================================================
--- www/rubygem-sinatra-respond_to/Makefile
+++ www/rubygem-sinatra-respond_to/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-sinatra/Makefile
===================================================================
--- www/rubygem-sinatra/Makefile
+++ www/rubygem-sinatra/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-task_list/Makefile
===================================================================
--- www/rubygem-task_list/Makefile
+++ www/rubygem-task_list/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-thin/Makefile
===================================================================
--- www/rubygem-thin/Makefile
+++ www/rubygem-thin/Makefile
@@ -17,8 +17,7 @@
rubygem-rack16>=1.0:www/rubygem-rack16
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/thin
Index: www/rubygem-tinyatom/Makefile
===================================================================
--- www/rubygem-tinyatom/Makefile
+++ www/rubygem-tinyatom/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-tinymce-rails/Makefile
===================================================================
--- www/rubygem-tinymce-rails/Makefile
+++ www/rubygem-tinymce-rails/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-totoridipjp/Makefile
===================================================================
--- www/rubygem-totoridipjp/Makefile
+++ www/rubygem-totoridipjp/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-tumblr_client/Makefile
===================================================================
--- www/rubygem-tumblr_client/Makefile
+++ www/rubygem-tumblr_client/Makefile
@@ -22,8 +22,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/tumblr
Index: www/rubygem-turbolinks/Makefile
===================================================================
--- www/rubygem-turbolinks/Makefile
+++ www/rubygem-turbolinks/Makefile
@@ -15,7 +15,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-typhoeus/Makefile
===================================================================
--- www/rubygem-typhoeus/Makefile
+++ www/rubygem-typhoeus/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-uglifier/Makefile
===================================================================
--- www/rubygem-uglifier/Makefile
+++ www/rubygem-uglifier/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-underscore-rails/Makefile
===================================================================
--- www/rubygem-underscore-rails/Makefile
+++ www/rubygem-underscore-rails/Makefile
@@ -12,7 +12,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-unicorn-worker-killer/Makefile
===================================================================
--- www/rubygem-unicorn-worker-killer/Makefile
+++ www/rubygem-unicorn-worker-killer/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-unicorn/Makefile
===================================================================
--- www/rubygem-unicorn/Makefile
+++ www/rubygem-unicorn/Makefile
@@ -18,9 +18,7 @@
rubygem-raindrops>=0.7:www/rubygem-raindrops
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
-USES= shebangfix
+USES= gem:autoplist shebangfix
PLIST_FILES= bin/unicorn bin/unicorn_rails
Index: www/rubygem-url-mount/Makefile
===================================================================
--- www/rubygem-url-mount/Makefile
+++ www/rubygem-url-mount/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-url_escape/Makefile
===================================================================
--- www/rubygem-url_escape/Makefile
+++ www/rubygem-url_escape/Makefile
@@ -12,7 +12,6 @@
LICENSE= MIT
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-wasabi/Makefile
===================================================================
--- www/rubygem-wasabi/Makefile
+++ www/rubygem-wasabi/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-webkit-gtk/Makefile
===================================================================
--- www/rubygem-webkit-gtk/Makefile
+++ www/rubygem-webkit-gtk/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-webkit-gtk2/Makefile
===================================================================
--- www/rubygem-webkit-gtk2/Makefile
+++ www/rubygem-webkit-gtk2/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-webmock/Makefile
===================================================================
--- www/rubygem-webmock/Makefile
+++ www/rubygem-webmock/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-webrobots/Makefile
===================================================================
--- www/rubygem-webrobots/Makefile
+++ www/rubygem-webrobots/Makefile
@@ -14,7 +14,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-websocket/Makefile
===================================================================
--- www/rubygem-websocket/Makefile
+++ www/rubygem-websocket/Makefile
@@ -13,7 +13,6 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: www/rubygem-yapra/Makefile
===================================================================
--- www/rubygem-yapra/Makefile
+++ www/rubygem-yapra/Makefile
@@ -15,8 +15,7 @@
NO_ARCH= yes
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
PLIST_FILES= bin/yapra
Index: x11-toolkits/rubygem-gdk3/Makefile
===================================================================
--- x11-toolkits/rubygem-gdk3/Makefile
+++ x11-toolkits/rubygem-gdk3/Makefile
@@ -18,7 +18,6 @@
NO_ARCH= yes
USE_GNOME= gtk30
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-gtk2/Makefile
===================================================================
--- x11-toolkits/rubygem-gtk2/Makefile
+++ x11-toolkits/rubygem-gtk2/Makefile
@@ -16,7 +16,6 @@
USE_GNOME= gtk20
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-gtk3/Makefile
===================================================================
--- x11-toolkits/rubygem-gtk3/Makefile
+++ x11-toolkits/rubygem-gtk3/Makefile
@@ -20,7 +20,6 @@
USE_GNOME= gtk30
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-gtksourceview2/Makefile
===================================================================
--- x11-toolkits/rubygem-gtksourceview2/Makefile
+++ x11-toolkits/rubygem-gtksourceview2/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= gtksourceview2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-gtksourceview3/Makefile
===================================================================
--- x11-toolkits/rubygem-gtksourceview3/Makefile
+++ x11-toolkits/rubygem-gtksourceview3/Makefile
@@ -16,7 +16,6 @@
NO_ARCH= yes
USE_GNOME= gtksourceview3
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-pango/Makefile
===================================================================
--- x11-toolkits/rubygem-pango/Makefile
+++ x11-toolkits/rubygem-pango/Makefile
@@ -15,7 +15,6 @@
USE_GNOME= pango
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-poppler/Makefile
===================================================================
--- x11-toolkits/rubygem-poppler/Makefile
+++ x11-toolkits/rubygem-poppler/Makefile
@@ -15,7 +15,6 @@
rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-vte/Makefile
===================================================================
--- x11-toolkits/rubygem-vte/Makefile
+++ x11-toolkits/rubygem-vte/Makefile
@@ -14,7 +14,6 @@
USE_GNOME= vte
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>
Index: x11-toolkits/rubygem-vte3/Makefile
===================================================================
--- x11-toolkits/rubygem-vte3/Makefile
+++ x11-toolkits/rubygem-vte3/Makefile
@@ -17,7 +17,6 @@
NO_ARCH= yes
USE_GNOME= vte3
USE_RUBY= yes
-USE_RUBYGEMS= yes
-RUBYGEM_AUTOPLIST= yes
+USES= gem:autoplist
.include <bsd.port.mk>

File Metadata

Mime Type
text/plain
Expires
Fri, Nov 22, 7:07 AM (17 h, 30 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14771935
Default Alt Text
D6070.id15587.diff (405 KB)

Event Timeline