Index: head/Mk/Uses/gem.mk =================================================================== --- head/Mk/Uses/gem.mk +++ head/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: head/Mk/bsd.ruby.mk =================================================================== --- head/Mk/bsd.ruby.mk +++ head/Mk/bsd.ruby.mk @@ -56,10 +56,7 @@ # 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] # @@ -263,24 +260,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} @@ -392,122 +371,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: head/accessibility/rubygem-atk/Makefile =================================================================== --- head/accessibility/rubygem-atk/Makefile +++ head/accessibility/rubygem-atk/Makefile @@ -14,7 +14,6 @@ USE_GNOME= atk USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/archivers/rubygem-archive-tar-minitar/Makefile =================================================================== --- head/archivers/rubygem-archive-tar-minitar/Makefile +++ head/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: head/archivers/rubygem-archive-zip/Makefile =================================================================== --- head/archivers/rubygem-archive-zip/Makefile +++ head/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 Index: head/archivers/rubygem-bzip2-ruby/Makefile =================================================================== --- head/archivers/rubygem-bzip2-ruby/Makefile +++ head/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 Index: head/archivers/rubygem-libarchive/Makefile =================================================================== --- head/archivers/rubygem-libarchive/Makefile +++ head/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: head/archivers/rubygem-minitar/Makefile =================================================================== --- head/archivers/rubygem-minitar/Makefile +++ head/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: head/archivers/rubygem-ruby-xz/Makefile =================================================================== --- head/archivers/rubygem-ruby-xz/Makefile +++ head/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 Index: head/archivers/rubygem-rubyzip/Makefile =================================================================== --- head/archivers/rubygem-rubyzip/Makefile +++ head/archivers/rubygem-rubyzip/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/archivers/rubygem-rubyzip2/Makefile =================================================================== --- head/archivers/rubygem-rubyzip2/Makefile +++ head/archivers/rubygem-rubyzip2/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/audio/rubygem-librmpd/Makefile =================================================================== --- head/audio/rubygem-librmpd/Makefile +++ head/audio/rubygem-librmpd/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/audio/rubygem-ruby-mp3info/Makefile =================================================================== --- head/audio/rubygem-ruby-mp3info/Makefile +++ head/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 Index: head/audio/rubygem-ruby-ogginfo/Makefile =================================================================== --- head/audio/rubygem-ruby-ogginfo/Makefile +++ head/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 Index: head/audio/rubygem-ruby-shout/Makefile =================================================================== --- head/audio/rubygem-ruby-shout/Makefile +++ head/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 Index: head/benchmarks/rubygem-benchmark-ips/Makefile =================================================================== --- head/benchmarks/rubygem-benchmark-ips/Makefile +++ head/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 Index: head/benchmarks/rubygem-railsbench/Makefile =================================================================== --- head/benchmarks/rubygem-railsbench/Makefile +++ head/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: head/comms/rubygem-callsign/Makefile =================================================================== --- head/comms/rubygem-callsign/Makefile +++ head/comms/rubygem-callsign/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/comms/rubygem-ruby-termios/Makefile =================================================================== --- head/comms/rubygem-ruby-termios/Makefile +++ head/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 Index: head/converters/rubygem-bsdconv/Makefile =================================================================== --- head/converters/rubygem-bsdconv/Makefile +++ head/converters/rubygem-bsdconv/Makefile @@ -19,7 +19,6 @@ GEM_NAME= ${DISTNAME} USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-activemodel/Makefile =================================================================== --- head/databases/rubygem-activemodel/Makefile +++ head/databases/rubygem-activemodel/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-activemodel4/Makefile =================================================================== --- head/databases/rubygem-activemodel4/Makefile +++ head/databases/rubygem-activemodel4/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-activerecord-jdbc-adapter/Makefile =================================================================== --- head/databases/rubygem-activerecord-jdbc-adapter/Makefile +++ head/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 Index: head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile =================================================================== --- head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile +++ head/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 Index: head/databases/rubygem-activerecord-mysql-adapter/Makefile =================================================================== --- head/databases/rubygem-activerecord-mysql-adapter/Makefile +++ head/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 Index: head/databases/rubygem-activerecord-session_store/Makefile =================================================================== --- head/databases/rubygem-activerecord-session_store/Makefile +++ head/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 Index: head/databases/rubygem-activerecord/Makefile =================================================================== --- head/databases/rubygem-activerecord/Makefile +++ head/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: head/databases/rubygem-activerecord4/Makefile =================================================================== --- head/databases/rubygem-activerecord4/Makefile +++ head/databases/rubygem-activerecord4/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-after_commit_queue/Makefile =================================================================== --- head/databases/rubygem-after_commit_queue/Makefile +++ head/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 Index: head/databases/rubygem-amalgalite/Makefile =================================================================== --- head/databases/rubygem-amalgalite/Makefile +++ head/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: head/databases/rubygem-arel-helpers/Makefile =================================================================== --- head/databases/rubygem-arel-helpers/Makefile +++ head/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 Index: head/databases/rubygem-arel/Makefile =================================================================== --- head/databases/rubygem-arel/Makefile +++ head/databases/rubygem-arel/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-arel3/Makefile =================================================================== --- head/databases/rubygem-arel3/Makefile +++ head/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: head/databases/rubygem-arel5/Makefile =================================================================== --- head/databases/rubygem-arel5/Makefile +++ head/databases/rubygem-arel5/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-arel6/Makefile =================================================================== --- head/databases/rubygem-arel6/Makefile +++ head/databases/rubygem-arel6/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-awesome_nested_set/Makefile =================================================================== --- head/databases/rubygem-awesome_nested_set/Makefile +++ head/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 Index: head/databases/rubygem-bdb1/Makefile =================================================================== --- head/databases/rubygem-bdb1/Makefile +++ head/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 Index: head/databases/rubygem-bigrecord/Makefile =================================================================== --- head/databases/rubygem-bigrecord/Makefile +++ head/databases/rubygem-bigrecord/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-couchrest/Makefile =================================================================== --- head/databases/rubygem-couchrest/Makefile +++ head/databases/rubygem-couchrest/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-data_objects/Makefile =================================================================== --- head/databases/rubygem-data_objects/Makefile +++ head/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 Index: head/databases/rubygem-datamapper/Makefile =================================================================== --- head/databases/rubygem-datamapper/Makefile +++ head/databases/rubygem-datamapper/Makefile @@ -25,7 +25,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-dbd-mysql/Makefile =================================================================== --- head/databases/rubygem-dbd-mysql/Makefile +++ head/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 Index: head/databases/rubygem-dbd-odbc/Makefile =================================================================== --- head/databases/rubygem-dbd-odbc/Makefile +++ head/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 Index: head/databases/rubygem-dbd-pg/Makefile =================================================================== --- head/databases/rubygem-dbd-pg/Makefile +++ head/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 Index: head/databases/rubygem-dbd-sqlite3/Makefile =================================================================== --- head/databases/rubygem-dbd-sqlite3/Makefile +++ head/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 Index: head/databases/rubygem-dbi/Makefile =================================================================== --- head/databases/rubygem-dbi/Makefile +++ head/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: head/databases/rubygem-dm-active_model/Makefile =================================================================== --- head/databases/rubygem-dm-active_model/Makefile +++ head/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 Index: head/databases/rubygem-dm-aggregates/Makefile =================================================================== --- head/databases/rubygem-dm-aggregates/Makefile +++ head/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 Index: head/databases/rubygem-dm-chunked_query/Makefile =================================================================== --- head/databases/rubygem-dm-chunked_query/Makefile +++ head/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 Index: head/databases/rubygem-dm-constraints/Makefile =================================================================== --- head/databases/rubygem-dm-constraints/Makefile +++ head/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 Index: head/databases/rubygem-dm-core/Makefile =================================================================== --- head/databases/rubygem-dm-core/Makefile +++ head/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 Index: head/databases/rubygem-dm-devise/Makefile =================================================================== --- head/databases/rubygem-dm-devise/Makefile +++ head/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 Index: head/databases/rubygem-dm-do-adapter/Makefile =================================================================== --- head/databases/rubygem-dm-do-adapter/Makefile +++ head/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 Index: head/databases/rubygem-dm-migrations/Makefile =================================================================== --- head/databases/rubygem-dm-migrations/Makefile +++ head/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 Index: head/databases/rubygem-dm-mysql-adapter/Makefile =================================================================== --- head/databases/rubygem-dm-mysql-adapter/Makefile +++ head/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 Index: head/databases/rubygem-dm-observer/Makefile =================================================================== --- head/databases/rubygem-dm-observer/Makefile +++ head/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 Index: head/databases/rubygem-dm-pager/Makefile =================================================================== --- head/databases/rubygem-dm-pager/Makefile +++ head/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 Index: head/databases/rubygem-dm-paperclip/Makefile =================================================================== --- head/databases/rubygem-dm-paperclip/Makefile +++ head/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 Index: head/databases/rubygem-dm-postgres-adapter/Makefile =================================================================== --- head/databases/rubygem-dm-postgres-adapter/Makefile +++ head/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 Index: head/databases/rubygem-dm-rails/Makefile =================================================================== --- head/databases/rubygem-dm-rails/Makefile +++ head/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 Index: head/databases/rubygem-dm-serializer/Makefile =================================================================== --- head/databases/rubygem-dm-serializer/Makefile +++ head/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 Index: head/databases/rubygem-dm-timestamps/Makefile =================================================================== --- head/databases/rubygem-dm-timestamps/Makefile +++ head/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 Index: head/databases/rubygem-dm-transactions/Makefile =================================================================== --- head/databases/rubygem-dm-transactions/Makefile +++ head/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 Index: head/databases/rubygem-dm-types/Makefile =================================================================== --- head/databases/rubygem-dm-types/Makefile +++ head/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 Index: head/databases/rubygem-dm-validations/Makefile =================================================================== --- head/databases/rubygem-dm-validations/Makefile +++ head/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 Index: head/databases/rubygem-do_mysql/Makefile =================================================================== --- head/databases/rubygem-do_mysql/Makefile +++ head/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 Index: head/databases/rubygem-do_postgres/Makefile =================================================================== --- head/databases/rubygem-do_postgres/Makefile +++ head/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 Index: head/databases/rubygem-do_sqlite3/Makefile =================================================================== --- head/databases/rubygem-do_sqlite3/Makefile +++ head/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: head/databases/rubygem-em-redis-unified/Makefile =================================================================== --- head/databases/rubygem-em-redis-unified/Makefile +++ head/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 Index: head/databases/rubygem-familia/Makefile =================================================================== --- head/databases/rubygem-familia/Makefile +++ head/databases/rubygem-familia/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-globalid/Makefile =================================================================== --- head/databases/rubygem-globalid/Makefile +++ head/databases/rubygem-globalid/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-her/Makefile =================================================================== --- head/databases/rubygem-her/Makefile +++ head/databases/rubygem-her/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-hiredis/Makefile =================================================================== --- head/databases/rubygem-hiredis/Makefile +++ head/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 Index: head/databases/rubygem-jdbc-mysql/Makefile =================================================================== --- head/databases/rubygem-jdbc-mysql/Makefile +++ head/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 Index: head/databases/rubygem-leo_manager_client/Makefile =================================================================== --- head/databases/rubygem-leo_manager_client/Makefile +++ head/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 Index: head/databases/rubygem-memcache-client/Makefile =================================================================== --- head/databases/rubygem-memcache-client/Makefile +++ head/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: head/databases/rubygem-memcache/Makefile =================================================================== --- head/databases/rubygem-memcache/Makefile +++ head/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 Index: head/databases/rubygem-mysql/Makefile =================================================================== --- head/databases/rubygem-mysql/Makefile +++ head/databases/rubygem-mysql/Makefile @@ -14,7 +14,6 @@ USE_MYSQL= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-mysql2/Makefile =================================================================== --- head/databases/rubygem-mysql2/Makefile +++ head/databases/rubygem-mysql2/Makefile @@ -13,7 +13,6 @@ USE_MYSQL= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-openid-redis-store/Makefile =================================================================== --- head/databases/rubygem-openid-redis-store/Makefile +++ head/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 Index: head/databases/rubygem-paranoia/Makefile =================================================================== --- head/databases/rubygem-paranoia/Makefile +++ head/databases/rubygem-paranoia/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-pg/Makefile =================================================================== --- head/databases/rubygem-pg/Makefile +++ head/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 Index: head/databases/rubygem-rbase/Makefile =================================================================== --- head/databases/rubygem-rbase/Makefile +++ head/databases/rubygem-rbase/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-redis-actionpack/Makefile =================================================================== --- head/databases/rubygem-redis-actionpack/Makefile +++ head/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 Index: head/databases/rubygem-redis-namespace/Makefile =================================================================== --- head/databases/rubygem-redis-namespace/Makefile +++ head/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 Index: head/databases/rubygem-redis/Makefile =================================================================== --- head/databases/rubygem-redis/Makefile +++ head/databases/rubygem-redis/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/databases/rubygem-rubyrep/Makefile =================================================================== --- head/databases/rubygem-rubyrep/Makefile +++ head/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: head/databases/rubygem-seed-fu/Makefile =================================================================== --- head/databases/rubygem-seed-fu/Makefile +++ head/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 Index: head/databases/rubygem-sqlite3-ruby/Makefile =================================================================== --- head/databases/rubygem-sqlite3-ruby/Makefile +++ head/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: head/databases/rubygem-sqlite3/Makefile =================================================================== --- head/databases/rubygem-sqlite3/Makefile +++ head/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 Index: head/databases/rubygem-state_machines-activemodel/Makefile =================================================================== --- head/databases/rubygem-state_machines-activemodel/Makefile +++ head/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 Index: head/databases/rubygem-state_machines-activerecord/Makefile =================================================================== --- head/databases/rubygem-state_machines-activerecord/Makefile +++ head/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 Index: head/databases/rubygem-tarantool/Makefile =================================================================== --- head/databases/rubygem-tarantool/Makefile +++ head/databases/rubygem-tarantool/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/deskutils/rubygem-shellplay/Makefile =================================================================== --- head/deskutils/rubygem-shellplay/Makefile +++ head/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 Index: head/deskutils/rubygem-taskjuggler/Makefile =================================================================== --- head/deskutils/rubygem-taskjuggler/Makefile +++ head/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: head/devel/rubygem-CFPropertyList/Makefile =================================================================== --- head/devel/rubygem-CFPropertyList/Makefile +++ head/devel/rubygem-CFPropertyList/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-abstract/Makefile =================================================================== --- head/devel/rubygem-abstract/Makefile +++ head/devel/rubygem-abstract/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-actionpack-action_caching/Makefile =================================================================== --- head/devel/rubygem-actionpack-action_caching/Makefile +++ head/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 Index: head/devel/rubygem-actionview/Makefile =================================================================== --- head/devel/rubygem-actionview/Makefile +++ head/devel/rubygem-actionview/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-active_scaffold/Makefile =================================================================== --- head/devel/rubygem-active_scaffold/Makefile +++ head/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 Index: head/devel/rubygem-activejob/Makefile =================================================================== --- head/devel/rubygem-activejob/Makefile +++ head/devel/rubygem-activejob/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-activemessaging/Makefile =================================================================== --- head/devel/rubygem-activemessaging/Makefile +++ head/devel/rubygem-activemessaging/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-activerecord-deprecated_finders/Makefile =================================================================== --- head/devel/rubygem-activerecord-deprecated_finders/Makefile +++ head/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 Index: head/devel/rubygem-activesupport/Makefile =================================================================== --- head/devel/rubygem-activesupport/Makefile +++ head/devel/rubygem-activesupport/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-activesupport4/Makefile =================================================================== --- head/devel/rubygem-activesupport4/Makefile +++ head/devel/rubygem-activesupport4/Makefile @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-akismet/Makefile =================================================================== --- head/devel/rubygem-akismet/Makefile +++ head/devel/rubygem-akismet/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-algebrick/Makefile =================================================================== --- head/devel/rubygem-algebrick/Makefile +++ head/devel/rubygem-algebrick/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-algorithms/Makefile =================================================================== --- head/devel/rubygem-algorithms/Makefile +++ head/devel/rubygem-algorithms/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-allison/Makefile =================================================================== --- head/devel/rubygem-allison/Makefile +++ head/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: head/devel/rubygem-analogger/Makefile =================================================================== --- head/devel/rubygem-analogger/Makefile +++ head/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: head/devel/rubygem-annoy/Makefile =================================================================== --- head/devel/rubygem-annoy/Makefile +++ head/devel/rubygem-annoy/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ansi/Makefile =================================================================== --- head/devel/rubygem-ansi/Makefile +++ head/devel/rubygem-ansi/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-apipie-bindings/Makefile =================================================================== --- head/devel/rubygem-apipie-bindings/Makefile +++ head/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 Index: head/devel/rubygem-apipie-params/Makefile =================================================================== --- head/devel/rubygem-apipie-params/Makefile +++ head/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 Index: head/devel/rubygem-app_config/Makefile =================================================================== --- head/devel/rubygem-app_config/Makefile +++ head/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 Index: head/devel/rubygem-arr-pm/Makefile =================================================================== --- head/devel/rubygem-arr-pm/Makefile +++ head/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 Index: head/devel/rubygem-arrayfields/Makefile =================================================================== --- head/devel/rubygem-arrayfields/Makefile +++ head/devel/rubygem-arrayfields/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ascii85/Makefile =================================================================== --- head/devel/rubygem-ascii85/Makefile +++ head/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: head/devel/rubygem-asetus/Makefile =================================================================== --- head/devel/rubygem-asetus/Makefile +++ head/devel/rubygem-asetus/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-aspectr/Makefile =================================================================== --- head/devel/rubygem-aspectr/Makefile +++ head/devel/rubygem-aspectr/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ast/Makefile =================================================================== --- head/devel/rubygem-ast/Makefile +++ head/devel/rubygem-ast/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-astrolabe/Makefile =================================================================== --- head/devel/rubygem-astrolabe/Makefile +++ head/devel/rubygem-astrolabe/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-atomic/Makefile =================================================================== --- head/devel/rubygem-atomic/Makefile +++ head/devel/rubygem-atomic/Makefile @@ -12,7 +12,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-atoulme-antwrap/Makefile =================================================================== --- head/devel/rubygem-atoulme-antwrap/Makefile +++ head/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 Index: head/devel/rubygem-attic/Makefile =================================================================== --- head/devel/rubygem-attic/Makefile +++ head/devel/rubygem-attic/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-attr_required/Makefile =================================================================== --- head/devel/rubygem-attr_required/Makefile +++ head/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 Index: head/devel/rubygem-authlogic/Makefile =================================================================== --- head/devel/rubygem-authlogic/Makefile +++ head/devel/rubygem-authlogic/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-awesome_print/Makefile =================================================================== --- head/devel/rubygem-awesome_print/Makefile +++ head/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 Index: head/devel/rubygem-aws-sdk-core/Makefile =================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile +++ head/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: head/devel/rubygem-aws-sdk-resources/Makefile =================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile +++ head/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 Index: head/devel/rubygem-aws-sdk-v1/Makefile =================================================================== --- head/devel/rubygem-aws-sdk-v1/Makefile +++ head/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: head/devel/rubygem-aws-sdk/Makefile =================================================================== --- head/devel/rubygem-aws-sdk/Makefile +++ head/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 Index: head/devel/rubygem-axiom-types/Makefile =================================================================== --- head/devel/rubygem-axiom-types/Makefile +++ head/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 Index: head/devel/rubygem-backports/Makefile =================================================================== --- head/devel/rubygem-backports/Makefile +++ head/devel/rubygem-backports/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-bacon/Makefile =================================================================== --- head/devel/rubygem-bacon/Makefile +++ head/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: head/devel/rubygem-benelux/Makefile =================================================================== --- head/devel/rubygem-benelux/Makefile +++ head/devel/rubygem-benelux/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-bin_utils/Makefile =================================================================== --- head/devel/rubygem-bin_utils/Makefile +++ head/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 Index: head/devel/rubygem-bindata/Makefile =================================================================== --- head/devel/rubygem-bindata/Makefile +++ head/devel/rubygem-bindata/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-binding_of_caller/Makefile =================================================================== --- head/devel/rubygem-binding_of_caller/Makefile +++ head/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 Index: head/devel/rubygem-bio/Makefile =================================================================== --- head/devel/rubygem-bio/Makefile +++ head/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: head/devel/rubygem-blankslate/Makefile =================================================================== --- head/devel/rubygem-blankslate/Makefile +++ head/devel/rubygem-blankslate/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-blobstore_client/Makefile =================================================================== --- head/devel/rubygem-blobstore_client/Makefile +++ head/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: head/devel/rubygem-blockenspiel/Makefile =================================================================== --- head/devel/rubygem-blockenspiel/Makefile +++ head/devel/rubygem-blockenspiel/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-bones/Makefile =================================================================== --- head/devel/rubygem-bones/Makefile +++ head/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: head/devel/rubygem-bosh-template/Makefile =================================================================== --- head/devel/rubygem-bosh-template/Makefile +++ head/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: head/devel/rubygem-bosh_common/Makefile =================================================================== --- head/devel/rubygem-bosh_common/Makefile +++ head/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 Index: head/devel/rubygem-bson/Makefile =================================================================== --- head/devel/rubygem-bson/Makefile +++ head/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 Index: head/devel/rubygem-bson1/Makefile =================================================================== --- head/devel/rubygem-bson1/Makefile +++ head/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: head/devel/rubygem-buftok/Makefile =================================================================== --- head/devel/rubygem-buftok/Makefile +++ head/devel/rubygem-buftok/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-bugspots/Makefile =================================================================== --- head/devel/rubygem-bugspots/Makefile +++ head/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: head/devel/rubygem-builder/Makefile =================================================================== --- head/devel/rubygem-builder/Makefile +++ head/devel/rubygem-builder/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-builder32/Makefile =================================================================== --- head/devel/rubygem-builder32/Makefile +++ head/devel/rubygem-builder32/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-byebug/Makefile =================================================================== --- head/devel/rubygem-byebug/Makefile +++ head/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: head/devel/rubygem-cabin/Makefile =================================================================== --- head/devel/rubygem-cabin/Makefile +++ head/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 Index: head/devel/rubygem-caesars/Makefile =================================================================== --- head/devel/rubygem-caesars/Makefile +++ head/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 Index: head/devel/rubygem-cairo-gobject/Makefile =================================================================== --- head/devel/rubygem-cairo-gobject/Makefile +++ head/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 Index: head/devel/rubygem-capybara/Makefile =================================================================== --- head/devel/rubygem-capybara/Makefile +++ head/devel/rubygem-capybara/Makefile @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-celluloid-essentials/Makefile =================================================================== --- head/devel/rubygem-celluloid-essentials/Makefile +++ head/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 Index: head/devel/rubygem-celluloid-extras/Makefile =================================================================== --- head/devel/rubygem-celluloid-extras/Makefile +++ head/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 Index: head/devel/rubygem-celluloid-fsm/Makefile =================================================================== --- head/devel/rubygem-celluloid-fsm/Makefile +++ head/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 Index: head/devel/rubygem-celluloid-io/Makefile =================================================================== --- head/devel/rubygem-celluloid-io/Makefile +++ head/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 Index: head/devel/rubygem-celluloid-pool/Makefile =================================================================== --- head/devel/rubygem-celluloid-pool/Makefile +++ head/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 Index: head/devel/rubygem-celluloid-supervision/Makefile =================================================================== --- head/devel/rubygem-celluloid-supervision/Makefile +++ head/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 Index: head/devel/rubygem-celluloid/Makefile =================================================================== --- head/devel/rubygem-celluloid/Makefile +++ head/devel/rubygem-celluloid/Makefile @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cf-uaa-lib/Makefile =================================================================== --- head/devel/rubygem-cf-uaa-lib/Makefile +++ head/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 Index: head/devel/rubygem-childprocess/Makefile =================================================================== --- head/devel/rubygem-childprocess/Makefile +++ head/devel/rubygem-childprocess/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-chronic/Makefile =================================================================== --- head/devel/rubygem-chronic/Makefile +++ head/devel/rubygem-chronic/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-clamp/Makefile =================================================================== --- head/devel/rubygem-clamp/Makefile +++ head/devel/rubygem-clamp/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-classifier-reborn/Makefile =================================================================== --- head/devel/rubygem-classifier-reborn/Makefile +++ head/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 Index: head/devel/rubygem-classifier/Makefile =================================================================== --- head/devel/rubygem-classifier/Makefile +++ head/devel/rubygem-classifier/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-climate_control/Makefile =================================================================== --- head/devel/rubygem-climate_control/Makefile +++ head/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 Index: head/devel/rubygem-clio/Makefile =================================================================== --- head/devel/rubygem-clio/Makefile +++ head/devel/rubygem-clio/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cliprompt/Makefile =================================================================== --- head/devel/rubygem-cliprompt/Makefile +++ head/devel/rubygem-cliprompt/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cloudfiles/Makefile =================================================================== --- head/devel/rubygem-cloudfiles/Makefile +++ head/devel/rubygem-cloudfiles/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cocaine/Makefile =================================================================== --- head/devel/rubygem-cocaine/Makefile +++ head/devel/rubygem-cocaine/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-coercible/Makefile =================================================================== --- head/devel/rubygem-coercible/Makefile +++ head/devel/rubygem-coercible/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-coffee-rails/Makefile =================================================================== --- head/devel/rubygem-coffee-rails/Makefile +++ head/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: head/devel/rubygem-coffee-rails4/Makefile =================================================================== --- head/devel/rubygem-coffee-rails4/Makefile +++ head/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 Index: head/devel/rubygem-coffee-script-source/Makefile =================================================================== --- head/devel/rubygem-coffee-script-source/Makefile +++ head/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 Index: head/devel/rubygem-coffee-script/Makefile =================================================================== --- head/devel/rubygem-coffee-script/Makefile +++ head/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 Index: head/devel/rubygem-colorize/Makefile =================================================================== --- head/devel/rubygem-colorize/Makefile +++ head/devel/rubygem-colorize/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-columnize/Makefile =================================================================== --- head/devel/rubygem-columnize/Makefile +++ head/devel/rubygem-columnize/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-commander/Makefile =================================================================== --- head/devel/rubygem-commander/Makefile +++ head/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: head/devel/rubygem-concurrent-ruby-edge/Makefile =================================================================== --- head/devel/rubygem-concurrent-ruby-edge/Makefile +++ head/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 Index: head/devel/rubygem-concurrent-ruby/Makefile =================================================================== --- head/devel/rubygem-concurrent-ruby/Makefile +++ head/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 Index: head/devel/rubygem-configatron/Makefile =================================================================== --- head/devel/rubygem-configatron/Makefile +++ head/devel/rubygem-configatron/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-configstruct/Makefile =================================================================== --- head/devel/rubygem-configstruct/Makefile +++ head/devel/rubygem-configstruct/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-configuration/Makefile =================================================================== --- head/devel/rubygem-configuration/Makefile +++ head/devel/rubygem-configuration/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cool.io/Makefile =================================================================== --- head/devel/rubygem-cool.io/Makefile +++ head/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 Index: head/devel/rubygem-corefines/Makefile =================================================================== --- head/devel/rubygem-corefines/Makefile +++ head/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 Index: head/devel/rubygem-crack/Makefile =================================================================== --- head/devel/rubygem-crack/Makefile +++ head/devel/rubygem-crack/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cri/Makefile =================================================================== --- head/devel/rubygem-cri/Makefile +++ head/devel/rubygem-cri/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cucumber-core/Makefile =================================================================== --- head/devel/rubygem-cucumber-core/Makefile +++ head/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 Index: head/devel/rubygem-cucumber-wire/Makefile =================================================================== --- head/devel/rubygem-cucumber-wire/Makefile +++ head/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 Index: head/devel/rubygem-cucumber/Makefile =================================================================== --- head/devel/rubygem-cucumber/Makefile +++ head/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: head/devel/rubygem-curses/Makefile =================================================================== --- head/devel/rubygem-curses/Makefile +++ head/devel/rubygem-curses/Makefile @@ -12,7 +12,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-cyoi/Makefile =================================================================== --- head/devel/rubygem-cyoi/Makefile +++ head/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: head/devel/rubygem-daemon_controller/Makefile =================================================================== --- head/devel/rubygem-daemon_controller/Makefile +++ head/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 Index: head/devel/rubygem-daemons/Makefile =================================================================== --- head/devel/rubygem-daemons/Makefile +++ head/devel/rubygem-daemons/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-debug_inspector/Makefile =================================================================== --- head/devel/rubygem-debug_inspector/Makefile +++ head/devel/rubygem-debug_inspector/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-debugger-linecache/Makefile =================================================================== --- head/devel/rubygem-debugger-linecache/Makefile +++ head/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 Index: head/devel/rubygem-debugger-xml/Makefile =================================================================== --- head/devel/rubygem-debugger-xml/Makefile +++ head/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: head/devel/rubygem-deep_merge/Makefile =================================================================== --- head/devel/rubygem-deep_merge/Makefile +++ head/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 Index: head/devel/rubygem-deep_test/Makefile =================================================================== --- head/devel/rubygem-deep_test/Makefile +++ head/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: head/devel/rubygem-deface/Makefile =================================================================== --- head/devel/rubygem-deface/Makefile +++ head/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 Index: head/devel/rubygem-default_value_for/Makefile =================================================================== --- head/devel/rubygem-default_value_for/Makefile +++ head/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 Index: head/devel/rubygem-delayed_job/Makefile =================================================================== --- head/devel/rubygem-delayed_job/Makefile +++ head/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 Index: head/devel/rubygem-delayer-deferred/Makefile =================================================================== --- head/devel/rubygem-delayer-deferred/Makefile +++ head/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 Index: head/devel/rubygem-delayer/Makefile =================================================================== --- head/devel/rubygem-delayer/Makefile +++ head/devel/rubygem-delayer/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-deprecated/Makefile =================================================================== --- head/devel/rubygem-deprecated/Makefile +++ head/devel/rubygem-deprecated/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-deprecated2/Makefile =================================================================== --- head/devel/rubygem-deprecated2/Makefile +++ head/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: head/devel/rubygem-descendants_tracker/Makefile =================================================================== --- head/devel/rubygem-descendants_tracker/Makefile +++ head/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 Index: head/devel/rubygem-devise-async/Makefile =================================================================== --- head/devel/rubygem-devise-async/Makefile +++ head/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 Index: head/devel/rubygem-devise/Makefile =================================================================== --- head/devel/rubygem-devise/Makefile +++ head/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: head/devel/rubygem-directory_watcher/Makefile =================================================================== --- head/devel/rubygem-directory_watcher/Makefile +++ head/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 Index: head/devel/rubygem-ditz/Makefile =================================================================== --- head/devel/rubygem-ditz/Makefile +++ head/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: head/devel/rubygem-docile/Makefile =================================================================== --- head/devel/rubygem-docile/Makefile +++ head/devel/rubygem-docile/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-drydock/Makefile =================================================================== --- head/devel/rubygem-drydock/Makefile +++ head/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 Index: head/devel/rubygem-dynflow/Makefile =================================================================== --- head/devel/rubygem-dynflow/Makefile +++ head/devel/rubygem-dynflow/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-edavis10-object_daddy/Makefile =================================================================== --- head/devel/rubygem-edavis10-object_daddy/Makefile +++ head/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 Index: head/devel/rubygem-elif/Makefile =================================================================== --- head/devel/rubygem-elif/Makefile +++ head/devel/rubygem-elif/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-enumerize/Makefile =================================================================== --- head/devel/rubygem-enumerize/Makefile +++ head/devel/rubygem-enumerize/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-equalizer/Makefile =================================================================== --- head/devel/rubygem-equalizer/Makefile +++ head/devel/rubygem-equalizer/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-errand/Makefile =================================================================== --- head/devel/rubygem-errand/Makefile +++ head/devel/rubygem-errand/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-event-bus/Makefile =================================================================== --- head/devel/rubygem-event-bus/Makefile +++ head/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 Index: head/devel/rubygem-eventmachine/Makefile =================================================================== --- head/devel/rubygem-eventmachine/Makefile +++ head/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 Index: head/devel/rubygem-excon/Makefile =================================================================== --- head/devel/rubygem-excon/Makefile +++ head/devel/rubygem-excon/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-execjs/Makefile =================================================================== --- head/devel/rubygem-execjs/Makefile +++ head/devel/rubygem-execjs/Makefile @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-patch: @${REINPLACE_CMD} -e 's#%%LOCALBASE%%#${LOCALBASE}#' \ Index: head/devel/rubygem-extlib/Makefile =================================================================== --- head/devel/rubygem-extlib/Makefile +++ head/devel/rubygem-extlib/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-facets/Makefile =================================================================== --- head/devel/rubygem-facets/Makefile +++ head/devel/rubygem-facets/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-faraday_middleware-multi_json/Makefile =================================================================== --- head/devel/rubygem-faraday_middleware-multi_json/Makefile +++ head/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 Index: head/devel/rubygem-fast-stemmer/Makefile =================================================================== --- head/devel/rubygem-fast-stemmer/Makefile +++ head/devel/rubygem-fast-stemmer/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-fast_gettext/Makefile =================================================================== --- head/devel/rubygem-fast_gettext/Makefile +++ head/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 Index: head/devel/rubygem-fast_stack/Makefile =================================================================== --- head/devel/rubygem-fast_stack/Makefile +++ head/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 Index: head/devel/rubygem-fast_xor/Makefile =================================================================== --- head/devel/rubygem-fast_xor/Makefile +++ head/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 Index: head/devel/rubygem-fastercsv/Makefile =================================================================== --- head/devel/rubygem-fastercsv/Makefile +++ head/devel/rubygem-fastercsv/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-fastri/Makefile =================================================================== --- head/devel/rubygem-fastri/Makefile +++ head/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: head/devel/rubygem-fastthread/Makefile =================================================================== --- head/devel/rubygem-fastthread/Makefile +++ head/devel/rubygem-fastthread/Makefile @@ -12,7 +12,6 @@ LICENSE= LGPL21 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-fattr/Makefile =================================================================== --- head/devel/rubygem-fattr/Makefile +++ head/devel/rubygem-fattr/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ffi-compiler/Makefile =================================================================== --- head/devel/rubygem-ffi-compiler/Makefile +++ head/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 Index: head/devel/rubygem-ffi-yajl/Makefile =================================================================== --- head/devel/rubygem-ffi-yajl/Makefile +++ head/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: head/devel/rubygem-ffi/Makefile =================================================================== --- head/devel/rubygem-ffi/Makefile +++ head/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 Index: head/devel/rubygem-file-tail/Makefile =================================================================== --- head/devel/rubygem-file-tail/Makefile +++ head/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 Index: head/devel/rubygem-flexmock/Makefile =================================================================== --- head/devel/rubygem-flexmock/Makefile +++ head/devel/rubygem-flexmock/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-fluent-logger/Makefile =================================================================== --- head/devel/rubygem-fluent-logger/Makefile +++ head/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: head/devel/rubygem-fog-core/Makefile =================================================================== --- head/devel/rubygem-fog-core/Makefile +++ head/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 Index: head/devel/rubygem-fog-json/Makefile =================================================================== --- head/devel/rubygem-fog-json/Makefile +++ head/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 Index: head/devel/rubygem-fog/Makefile =================================================================== --- head/devel/rubygem-fog/Makefile +++ head/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: head/devel/rubygem-font-awesome-rails-rails4/Makefile =================================================================== --- head/devel/rubygem-font-awesome-rails-rails4/Makefile +++ head/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 Index: head/devel/rubygem-font-awesome-rails/Makefile =================================================================== --- head/devel/rubygem-font-awesome-rails/Makefile +++ head/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 Index: head/devel/rubygem-foreigner/Makefile =================================================================== --- head/devel/rubygem-foreigner/Makefile +++ head/devel/rubygem-foreigner/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-foreman/Makefile =================================================================== --- head/devel/rubygem-foreman/Makefile +++ head/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: head/devel/rubygem-formatador/Makefile =================================================================== --- head/devel/rubygem-formatador/Makefile +++ head/devel/rubygem-formatador/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gdata/Makefile =================================================================== --- head/devel/rubygem-gdata/Makefile +++ head/devel/rubygem-gdata/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gem_plugin/Makefile =================================================================== --- head/devel/rubygem-gem_plugin/Makefile +++ head/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: head/devel/rubygem-gemcutter/Makefile =================================================================== --- head/devel/rubygem-gemcutter/Makefile +++ head/devel/rubygem-gemcutter/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gemnasium-gitlab-service/Makefile =================================================================== --- head/devel/rubygem-gemnasium-gitlab-service/Makefile +++ head/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 Index: head/devel/rubygem-gems/Makefile =================================================================== --- head/devel/rubygem-gems/Makefile +++ head/devel/rubygem-gems/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-generator_spec-rails4/Makefile =================================================================== --- head/devel/rubygem-generator_spec-rails4/Makefile +++ head/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 Index: head/devel/rubygem-generator_spec/Makefile =================================================================== --- head/devel/rubygem-generator_spec/Makefile +++ head/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 Index: head/devel/rubygem-georuby/Makefile =================================================================== --- head/devel/rubygem-georuby/Makefile +++ head/devel/rubygem-georuby/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-get_process_mem/Makefile =================================================================== --- head/devel/rubygem-get_process_mem/Makefile +++ head/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 Index: head/devel/rubygem-getopt/Makefile =================================================================== --- head/devel/rubygem-getopt/Makefile +++ head/devel/rubygem-getopt/Makefile @@ -13,7 +13,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gettext/Makefile =================================================================== --- head/devel/rubygem-gettext/Makefile +++ head/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: head/devel/rubygem-gh/Makefile =================================================================== --- head/devel/rubygem-gh/Makefile +++ head/devel/rubygem-gh/Makefile @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gibbler/Makefile =================================================================== --- head/devel/rubygem-gibbler/Makefile +++ head/devel/rubygem-gibbler/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gio2/Makefile =================================================================== --- head/devel/rubygem-gio2/Makefile +++ head/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 Index: head/devel/rubygem-git-version-bump/Makefile =================================================================== --- head/devel/rubygem-git-version-bump/Makefile +++ head/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: head/devel/rubygem-git/Makefile =================================================================== --- head/devel/rubygem-git/Makefile +++ head/devel/rubygem-git/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-github_api/Makefile =================================================================== --- head/devel/rubygem-github_api/Makefile +++ head/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 Index: head/devel/rubygem-gitlab-pygments.rb/Makefile =================================================================== --- head/devel/rubygem-gitlab-pygments.rb/Makefile +++ head/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 Index: head/devel/rubygem-gitlab_git/Makefile =================================================================== --- head/devel/rubygem-gitlab_git/Makefile +++ head/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 Index: head/devel/rubygem-gitlab_meta/Makefile =================================================================== --- head/devel/rubygem-gitlab_meta/Makefile +++ head/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: head/devel/rubygem-glib2/Makefile =================================================================== --- head/devel/rubygem-glib2/Makefile +++ head/devel/rubygem-glib2/Makefile @@ -14,7 +14,6 @@ USE_GNOME= glib20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-gobject-introspection/Makefile =================================================================== --- head/devel/rubygem-gobject-introspection/Makefile +++ head/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 Index: head/devel/rubygem-graf/Makefile =================================================================== --- head/devel/rubygem-graf/Makefile +++ head/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 Index: head/devel/rubygem-grape-entity/Makefile =================================================================== --- head/devel/rubygem-grape-entity/Makefile +++ head/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 Index: head/devel/rubygem-grape-swagger/Makefile =================================================================== --- head/devel/rubygem-grape-swagger/Makefile +++ head/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 Index: head/devel/rubygem-grape/Makefile =================================================================== --- head/devel/rubygem-grape/Makefile +++ head/devel/rubygem-grape/Makefile @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-grit/Makefile =================================================================== --- head/devel/rubygem-grit/Makefile +++ head/devel/rubygem-grit/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-guess_html_encoding/Makefile =================================================================== --- head/devel/rubygem-guess_html_encoding/Makefile +++ head/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 Index: head/devel/rubygem-gyoku/Makefile =================================================================== --- head/devel/rubygem-gyoku/Makefile +++ head/devel/rubygem-gyoku/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hashdiff/Makefile =================================================================== --- head/devel/rubygem-hashdiff/Makefile +++ head/devel/rubygem-hashdiff/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hashery/Makefile =================================================================== --- head/devel/rubygem-hashery/Makefile +++ head/devel/rubygem-hashery/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hashie/Makefile =================================================================== --- head/devel/rubygem-hashie/Makefile +++ head/devel/rubygem-hashie/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hashie2/Makefile =================================================================== --- head/devel/rubygem-hashie2/Makefile +++ head/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: head/devel/rubygem-highline/Makefile =================================================================== --- head/devel/rubygem-highline/Makefile +++ head/devel/rubygem-highline/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hike/Makefile =================================================================== --- head/devel/rubygem-hike/Makefile +++ head/devel/rubygem-hike/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hitimes/Makefile =================================================================== --- head/devel/rubygem-hitimes/Makefile +++ head/devel/rubygem-hitimes/Makefile @@ -12,7 +12,6 @@ LICENSE= ISCL USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-hoe/Makefile =================================================================== --- head/devel/rubygem-hoe/Makefile +++ head/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: head/devel/rubygem-holidays/Makefile =================================================================== --- head/devel/rubygem-holidays/Makefile +++ head/devel/rubygem-holidays/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-i18n/Makefile =================================================================== --- head/devel/rubygem-i18n/Makefile +++ head/devel/rubygem-i18n/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-icalendar/Makefile =================================================================== --- head/devel/rubygem-icalendar/Makefile +++ head/devel/rubygem-icalendar/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ice_cube/Makefile =================================================================== --- head/devel/rubygem-ice_cube/Makefile +++ head/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 Index: head/devel/rubygem-ice_nine/Makefile =================================================================== --- head/devel/rubygem-ice_nine/Makefile +++ head/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 Index: head/devel/rubygem-inflecto/Makefile =================================================================== --- head/devel/rubygem-inflecto/Makefile +++ head/devel/rubygem-inflecto/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-instance_storage/Makefile =================================================================== --- head/devel/rubygem-instance_storage/Makefile +++ head/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 Index: head/devel/rubygem-interact/Makefile =================================================================== --- head/devel/rubygem-interact/Makefile +++ head/devel/rubygem-interact/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-iobuffer/Makefile =================================================================== --- head/devel/rubygem-iobuffer/Makefile +++ head/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 Index: head/devel/rubygem-jammit/Makefile =================================================================== --- head/devel/rubygem-jammit/Makefile +++ head/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: head/devel/rubygem-jbuilder/Makefile =================================================================== --- head/devel/rubygem-jbuilder/Makefile +++ head/devel/rubygem-jbuilder/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-jekyll-coffeescript/Makefile =================================================================== --- head/devel/rubygem-jekyll-coffeescript/Makefile +++ head/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 Index: head/devel/rubygem-jeweler/Makefile =================================================================== --- head/devel/rubygem-jeweler/Makefile +++ head/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: head/devel/rubygem-jmespath/Makefile =================================================================== --- head/devel/rubygem-jmespath/Makefile +++ head/devel/rubygem-jmespath/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-jquery-ui-themes/Makefile =================================================================== --- head/devel/rubygem-jquery-ui-themes/Makefile +++ head/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 Index: head/devel/rubygem-jruby-jars/Makefile =================================================================== --- head/devel/rubygem-jruby-jars/Makefile +++ head/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 Index: head/devel/rubygem-json/Makefile =================================================================== --- head/devel/rubygem-json/Makefile +++ head/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 Index: head/devel/rubygem-json_pure/Makefile =================================================================== --- head/devel/rubygem-json_pure/Makefile +++ head/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 Index: head/devel/rubygem-kafo/Makefile =================================================================== --- head/devel/rubygem-kafo/Makefile +++ head/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: head/devel/rubygem-kafo_parsers/Makefile =================================================================== --- head/devel/rubygem-kafo_parsers/Makefile +++ head/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 Index: head/devel/rubygem-kafo_wizards/Makefile =================================================================== --- head/devel/rubygem-kafo_wizards/Makefile +++ head/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 Index: head/devel/rubygem-kgio/Makefile =================================================================== --- head/devel/rubygem-kgio/Makefile +++ head/devel/rubygem-kgio/Makefile @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-launchy/Makefile =================================================================== --- head/devel/rubygem-launchy/Makefile +++ head/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: head/devel/rubygem-launchy22/Makefile =================================================================== --- head/devel/rubygem-launchy22/Makefile +++ head/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: head/devel/rubygem-librarian/Makefile =================================================================== --- head/devel/rubygem-librarian/Makefile +++ head/devel/rubygem-librarian/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-librarianp/Makefile =================================================================== --- head/devel/rubygem-librarianp/Makefile +++ head/devel/rubygem-librarianp/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-libyajl2/Makefile =================================================================== --- head/devel/rubygem-libyajl2/Makefile +++ head/devel/rubygem-libyajl2/Makefile @@ -11,7 +11,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-licensee/Makefile =================================================================== --- head/devel/rubygem-licensee/Makefile +++ head/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: head/devel/rubygem-listen/Makefile =================================================================== --- head/devel/rubygem-listen/Makefile +++ head/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: head/devel/rubygem-little-plugger/Makefile =================================================================== --- head/devel/rubygem-little-plugger/Makefile +++ head/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 Index: head/devel/rubygem-locale/Makefile =================================================================== --- head/devel/rubygem-locale/Makefile +++ head/devel/rubygem-locale/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-lockfile/Makefile =================================================================== --- head/devel/rubygem-lockfile/Makefile +++ head/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: head/devel/rubygem-logging/Makefile =================================================================== --- head/devel/rubygem-logging/Makefile +++ head/devel/rubygem-logging/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-logster/Makefile =================================================================== --- head/devel/rubygem-logster/Makefile +++ head/devel/rubygem-logster/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-loquacious/Makefile =================================================================== --- head/devel/rubygem-loquacious/Makefile +++ head/devel/rubygem-loquacious/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-lru_redux/Makefile =================================================================== --- head/devel/rubygem-lru_redux/Makefile +++ head/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 Index: head/devel/rubygem-lumberjack/Makefile =================================================================== --- head/devel/rubygem-lumberjack/Makefile +++ head/devel/rubygem-lumberjack/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-main/Makefile =================================================================== --- head/devel/rubygem-main/Makefile +++ head/devel/rubygem-main/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-map/Makefile =================================================================== --- head/devel/rubygem-map/Makefile +++ head/devel/rubygem-map/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-memoist/Makefile =================================================================== --- head/devel/rubygem-memoist/Makefile +++ head/devel/rubygem-memoist/Makefile @@ -14,7 +14,6 @@ NO_ARCHI= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-memoizable/Makefile =================================================================== --- head/devel/rubygem-memoizable/Makefile +++ head/devel/rubygem-memoizable/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-memoize/Makefile =================================================================== --- head/devel/rubygem-memoize/Makefile +++ head/devel/rubygem-memoize/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-mercenary/Makefile =================================================================== --- head/devel/rubygem-mercenary/Makefile +++ head/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 Index: head/devel/rubygem-message_bus/Makefile =================================================================== --- head/devel/rubygem-message_bus/Makefile +++ head/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 Index: head/devel/rubygem-metaclass/Makefile =================================================================== --- head/devel/rubygem-metaclass/Makefile +++ head/devel/rubygem-metaclass/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-metaid/Makefile =================================================================== --- head/devel/rubygem-metaid/Makefile +++ head/devel/rubygem-metaid/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-method_source/Makefile =================================================================== --- head/devel/rubygem-method_source/Makefile +++ head/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 Index: head/devel/rubygem-minitest/Makefile =================================================================== --- head/devel/rubygem-minitest/Makefile +++ head/devel/rubygem-minitest/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-minitest4/Makefile =================================================================== --- head/devel/rubygem-minitest4/Makefile +++ head/devel/rubygem-minitest4/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-mixlib-authentication/Makefile =================================================================== --- head/devel/rubygem-mixlib-authentication/Makefile +++ head/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 Index: head/devel/rubygem-mixlib-cli/Makefile =================================================================== --- head/devel/rubygem-mixlib-cli/Makefile +++ head/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 Index: head/devel/rubygem-mixlib-config/Makefile =================================================================== --- head/devel/rubygem-mixlib-config/Makefile +++ head/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 Index: head/devel/rubygem-mixlib-log/Makefile =================================================================== --- head/devel/rubygem-mixlib-log/Makefile +++ head/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 Index: head/devel/rubygem-mixlib-shellout/Makefile =================================================================== --- head/devel/rubygem-mixlib-shellout/Makefile +++ head/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 Index: head/devel/rubygem-mkrf/Makefile =================================================================== --- head/devel/rubygem-mkrf/Makefile +++ head/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 Index: head/devel/rubygem-mocha/Makefile =================================================================== --- head/devel/rubygem-mocha/Makefile +++ head/devel/rubygem-mocha/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-moneta/Makefile =================================================================== --- head/devel/rubygem-moneta/Makefile +++ head/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 Index: head/devel/rubygem-moneta06/Makefile =================================================================== --- head/devel/rubygem-moneta06/Makefile +++ head/devel/rubygem-moneta06/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-mongo/Makefile =================================================================== --- head/devel/rubygem-mongo/Makefile +++ head/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: head/devel/rubygem-msgpack/Makefile =================================================================== --- head/devel/rubygem-msgpack/Makefile +++ head/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: head/devel/rubygem-mspec/Makefile =================================================================== --- head/devel/rubygem-mspec/Makefile +++ head/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: head/devel/rubygem-multi_json/Makefile =================================================================== --- head/devel/rubygem-multi_json/Makefile +++ head/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: head/devel/rubygem-multi_test/Makefile =================================================================== --- head/devel/rubygem-multi_test/Makefile +++ head/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 Index: head/devel/rubygem-murmurhash3/Makefile =================================================================== --- head/devel/rubygem-murmurhash3/Makefile +++ head/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 Index: head/devel/rubygem-mustache/Makefile =================================================================== --- head/devel/rubygem-mustache/Makefile +++ head/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: head/devel/rubygem-mutter/Makefile =================================================================== --- head/devel/rubygem-mutter/Makefile +++ head/devel/rubygem-mutter/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-naught/Makefile =================================================================== --- head/devel/rubygem-naught/Makefile +++ head/devel/rubygem-naught/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-needle/Makefile =================================================================== --- head/devel/rubygem-needle/Makefile +++ head/devel/rubygem-needle/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-nenv/Makefile =================================================================== --- head/devel/rubygem-nenv/Makefile +++ head/devel/rubygem-nenv/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-nesty/Makefile =================================================================== --- head/devel/rubygem-nesty/Makefile +++ head/devel/rubygem-nesty/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-netaddr/Makefile =================================================================== --- head/devel/rubygem-netaddr/Makefile +++ head/devel/rubygem-netaddr/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-newrelic-grape/Makefile =================================================================== --- head/devel/rubygem-newrelic-grape/Makefile +++ head/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 Index: head/devel/rubygem-newrelic_rpm/Makefile =================================================================== --- head/devel/rubygem-newrelic_rpm/Makefile +++ head/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: head/devel/rubygem-nice-ffi/Makefile =================================================================== --- head/devel/rubygem-nice-ffi/Makefile +++ head/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 Index: head/devel/rubygem-nio4r/Makefile =================================================================== --- head/devel/rubygem-nio4r/Makefile +++ head/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 Index: head/devel/rubygem-nori/Makefile =================================================================== --- head/devel/rubygem-nori/Makefile +++ head/devel/rubygem-nori/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-notiffany/Makefile =================================================================== --- head/devel/rubygem-notiffany/Makefile +++ head/devel/rubygem-notiffany/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-notify/Makefile =================================================================== --- head/devel/rubygem-notify/Makefile +++ head/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: head/devel/rubygem-nprogress-rails/Makefile =================================================================== --- head/devel/rubygem-nprogress-rails/Makefile +++ head/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 Index: head/devel/rubygem-octopress-hooks/Makefile =================================================================== --- head/devel/rubygem-octopress-hooks/Makefile +++ head/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 Index: head/devel/rubygem-oj/Makefile =================================================================== --- head/devel/rubygem-oj/Makefile +++ head/devel/rubygem-oj/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-omniauth_crowd/Makefile =================================================================== --- head/devel/rubygem-omniauth_crowd/Makefile +++ head/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 Index: head/devel/rubygem-open3_backport/Makefile =================================================================== --- head/devel/rubygem-open3_backport/Makefile +++ head/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 Index: head/devel/rubygem-open4/Makefile =================================================================== --- head/devel/rubygem-open4/Makefile +++ head/devel/rubygem-open4/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-orm_adapter/Makefile =================================================================== --- head/devel/rubygem-orm_adapter/Makefile +++ head/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 Index: head/devel/rubygem-p4ruby/Makefile =================================================================== --- head/devel/rubygem-p4ruby/Makefile +++ head/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: head/devel/rubygem-paint/Makefile =================================================================== --- head/devel/rubygem-paint/Makefile +++ head/devel/rubygem-paint/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-paperclip/Makefile =================================================================== --- head/devel/rubygem-paperclip/Makefile +++ head/devel/rubygem-paperclip/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-parser/Makefile =================================================================== --- head/devel/rubygem-parser/Makefile +++ head/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: head/devel/rubygem-piston/Makefile =================================================================== --- head/devel/rubygem-piston/Makefile +++ head/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 Index: head/devel/rubygem-pkg-config/Makefile =================================================================== --- head/devel/rubygem-pkg-config/Makefile +++ head/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 Index: head/devel/rubygem-platform/Makefile =================================================================== --- head/devel/rubygem-platform/Makefile +++ head/devel/rubygem-platform/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-plist/Makefile =================================================================== --- head/devel/rubygem-plist/Makefile +++ head/devel/rubygem-plist/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-pluggaloid/Makefile =================================================================== --- head/devel/rubygem-pluggaloid/Makefile +++ head/devel/rubygem-pluggaloid/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-polyamorous/Makefile =================================================================== --- head/devel/rubygem-polyamorous/Makefile +++ head/devel/rubygem-polyamorous/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-polyglot/Makefile =================================================================== --- head/devel/rubygem-polyglot/Makefile +++ head/devel/rubygem-polyglot/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-popen4/Makefile =================================================================== --- head/devel/rubygem-popen4/Makefile +++ head/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 Index: head/devel/rubygem-posix-spawn/Makefile =================================================================== --- head/devel/rubygem-posix-spawn/Makefile +++ head/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: head/devel/rubygem-power_assert/Makefile =================================================================== --- head/devel/rubygem-power_assert/Makefile +++ head/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 Index: head/devel/rubygem-powerbar/Makefile =================================================================== --- head/devel/rubygem-powerbar/Makefile +++ head/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: head/devel/rubygem-powerpack/Makefile =================================================================== --- head/devel/rubygem-powerpack/Makefile +++ head/devel/rubygem-powerpack/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-progressbar/Makefile =================================================================== --- head/devel/rubygem-progressbar/Makefile +++ head/devel/rubygem-progressbar/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-protected_attributes/Makefile =================================================================== --- head/devel/rubygem-protected_attributes/Makefile +++ head/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 Index: head/devel/rubygem-prototype-rails/Makefile =================================================================== --- head/devel/rubygem-prototype-rails/Makefile +++ head/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 Index: head/devel/rubygem-pry-rails/Makefile =================================================================== --- head/devel/rubygem-pry-rails/Makefile +++ head/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 Index: head/devel/rubygem-pry-remote-em/Makefile =================================================================== --- head/devel/rubygem-pry-remote-em/Makefile +++ head/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: head/devel/rubygem-pry/Makefile =================================================================== --- head/devel/rubygem-pry/Makefile +++ head/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: head/devel/rubygem-ptreloaded/Makefile =================================================================== --- head/devel/rubygem-ptreloaded/Makefile +++ head/devel/rubygem-ptreloaded/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-pygments.rb/Makefile =================================================================== --- head/devel/rubygem-pygments.rb/Makefile +++ head/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 Index: head/devel/rubygem-r18n-core/Makefile =================================================================== --- head/devel/rubygem-r18n-core/Makefile +++ head/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 Index: head/devel/rubygem-racc/Makefile =================================================================== --- head/devel/rubygem-racc/Makefile +++ head/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 Index: head/devel/rubygem-rack-mini-profiler/Makefile =================================================================== --- head/devel/rubygem-rack-mini-profiler/Makefile +++ head/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 Index: head/devel/rubygem-rack-raw-upload/Makefile =================================================================== --- head/devel/rubygem-rack-raw-upload/Makefile +++ head/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 Index: head/devel/rubygem-rails-deprecated_sanitizer/Makefile =================================================================== --- head/devel/rubygem-rails-deprecated_sanitizer/Makefile +++ head/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 Index: head/devel/rubygem-rails-observers/Makefile =================================================================== --- head/devel/rubygem-rails-observers/Makefile +++ head/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 Index: head/devel/rubygem-rainbow/Makefile =================================================================== --- head/devel/rubygem-rainbow/Makefile +++ head/devel/rubygem-rainbow/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rake-compiler/Makefile =================================================================== --- head/devel/rubygem-rake-compiler/Makefile +++ head/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: head/devel/rubygem-rake/Makefile =================================================================== --- head/devel/rubygem-rake/Makefile +++ head/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: head/devel/rubygem-ransack/Makefile =================================================================== --- head/devel/rubygem-ransack/Makefile +++ head/devel/rubygem-ransack/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rapt/Makefile =================================================================== --- head/devel/rubygem-rapt/Makefile +++ head/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: head/devel/rubygem-rash/Makefile =================================================================== --- head/devel/rubygem-rash/Makefile +++ head/devel/rubygem-rash/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rb-fsevent/Makefile =================================================================== --- head/devel/rubygem-rb-fsevent/Makefile +++ head/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 Index: head/devel/rubygem-rb-inotify/Makefile =================================================================== --- head/devel/rubygem-rb-inotify/Makefile +++ head/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 Index: head/devel/rubygem-rb-kqueue/Makefile =================================================================== --- head/devel/rubygem-rb-kqueue/Makefile +++ head/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 Index: head/devel/rubygem-rbtrace/Makefile =================================================================== --- head/devel/rubygem-rbtrace/Makefile +++ head/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: head/devel/rubygem-rdoc/Makefile =================================================================== --- head/devel/rubygem-rdoc/Makefile +++ head/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: head/devel/rubygem-rdoc3/Makefile =================================================================== --- head/devel/rubygem-rdoc3/Makefile +++ head/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: head/devel/rubygem-readwritesettings/Makefile =================================================================== --- head/devel/rubygem-readwritesettings/Makefile +++ head/devel/rubygem-readwritesettings/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-recaptcha/Makefile =================================================================== --- head/devel/rubygem-recaptcha/Makefile +++ head/devel/rubygem-recaptcha/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-redis-activesupport/Makefile =================================================================== --- head/devel/rubygem-redis-activesupport/Makefile +++ head/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 Index: head/devel/rubygem-redis-store/Makefile =================================================================== --- head/devel/rubygem-redis-store/Makefile +++ head/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 Index: head/devel/rubygem-redmine_plugin_support/Makefile =================================================================== --- head/devel/rubygem-redmine_plugin_support/Makefile +++ head/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 Index: head/devel/rubygem-ref/Makefile =================================================================== --- head/devel/rubygem-ref/Makefile +++ head/devel/rubygem-ref/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-request_store/Makefile =================================================================== --- head/devel/rubygem-request_store/Makefile +++ head/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 Index: head/devel/rubygem-require_all/Makefile =================================================================== --- head/devel/rubygem-require_all/Makefile +++ head/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 Index: head/devel/rubygem-retryable/Makefile =================================================================== --- head/devel/rubygem-retryable/Makefile +++ head/devel/rubygem-retryable/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rgl/Makefile =================================================================== --- head/devel/rubygem-rgl/Makefile +++ head/devel/rubygem-rgl/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rodzilla/Makefile =================================================================== --- head/devel/rubygem-rodzilla/Makefile +++ head/devel/rubygem-rodzilla/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rotp/Makefile =================================================================== --- head/devel/rubygem-rotp/Makefile +++ head/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: head/devel/rubygem-rr/Makefile =================================================================== --- head/devel/rubygem-rr/Makefile +++ head/devel/rubygem-rr/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rrd-ffi/Makefile =================================================================== --- head/devel/rubygem-rrd-ffi/Makefile +++ head/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 Index: head/devel/rubygem-rscm/Makefile =================================================================== --- head/devel/rubygem-rscm/Makefile +++ head/devel/rubygem-rscm/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rspec-core/Makefile =================================================================== --- head/devel/rubygem-rspec-core/Makefile +++ head/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: head/devel/rubygem-rspec-expectations/Makefile =================================================================== --- head/devel/rubygem-rspec-expectations/Makefile +++ head/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 Index: head/devel/rubygem-rspec-logsplit/Makefile =================================================================== --- head/devel/rubygem-rspec-logsplit/Makefile +++ head/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 Index: head/devel/rubygem-rspec-mocks/Makefile =================================================================== --- head/devel/rubygem-rspec-mocks/Makefile +++ head/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 Index: head/devel/rubygem-rspec-rails/Makefile =================================================================== --- head/devel/rubygem-rspec-rails/Makefile +++ head/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 Index: head/devel/rubygem-rspec-support/Makefile =================================================================== --- head/devel/rubygem-rspec-support/Makefile +++ head/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 Index: head/devel/rubygem-rspec/Makefile =================================================================== --- head/devel/rubygem-rspec/Makefile +++ head/devel/rubygem-rspec/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rubigen/Makefile =================================================================== --- head/devel/rubygem-rubigen/Makefile +++ head/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: head/devel/rubygem-rubocop/Makefile =================================================================== --- head/devel/rubygem-rubocop/Makefile +++ head/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: head/devel/rubygem-ruby-atmos-pure/Makefile =================================================================== --- head/devel/rubygem-ruby-atmos-pure/Makefile +++ head/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 Index: head/devel/rubygem-ruby-bugzilla/Makefile =================================================================== --- head/devel/rubygem-ruby-bugzilla/Makefile +++ head/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: head/devel/rubygem-ruby-filemagic/Makefile =================================================================== --- head/devel/rubygem-ruby-filemagic/Makefile +++ head/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 Index: head/devel/rubygem-ruby-fogbugz/Makefile =================================================================== --- head/devel/rubygem-ruby-fogbugz/Makefile +++ head/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 Index: head/devel/rubygem-ruby-libvirt/Makefile =================================================================== --- head/devel/rubygem-ruby-libvirt/Makefile +++ head/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 Index: head/devel/rubygem-ruby-ole/Makefile =================================================================== --- head/devel/rubygem-ruby-ole/Makefile +++ head/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: head/devel/rubygem-ruby-prof/Makefile =================================================================== --- head/devel/rubygem-ruby-prof/Makefile +++ head/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: head/devel/rubygem-ruby-progressbar/Makefile =================================================================== --- head/devel/rubygem-ruby-progressbar/Makefile +++ head/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 Index: head/devel/rubygem-ruby-sdl-ffi/Makefile =================================================================== --- head/devel/rubygem-ruby-sdl-ffi/Makefile +++ head/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 Index: head/devel/rubygem-ruby2ruby/Makefile =================================================================== --- head/devel/rubygem-ruby2ruby/Makefile +++ head/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: head/devel/rubygem-ruby_parser/Makefile =================================================================== --- head/devel/rubygem-ruby_parser/Makefile +++ head/devel/rubygem-ruby_parser/Makefile @@ -13,13 +13,11 @@ RUN_DEPENDS= rubygem-sexp_processor>=4.1:devel/rubygem-sexp_processor -USES= shebangfix -USE_RUBY= yes -USE_RUBYGEMS= yes NO_ARCH= yes +USE_RUBY= yes +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/ruby_parse* -RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ruby_parse \ bin/ruby_parse_extract_error Index: head/devel/rubygem-rubygame/Makefile =================================================================== --- head/devel/rubygem-rubygame/Makefile +++ head/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 Index: head/devel/rubygem-rubygems-mirror/Makefile =================================================================== --- head/devel/rubygem-rubygems-mirror/Makefile +++ head/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 Index: head/devel/rubygem-rubygems-tasks/Makefile =================================================================== --- head/devel/rubygem-rubygems-tasks/Makefile +++ head/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 Index: head/devel/rubygem-rubygems-test/Makefile =================================================================== --- head/devel/rubygem-rubygems-test/Makefile +++ head/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 Index: head/devel/rubygem-rubyinline/Makefile =================================================================== --- head/devel/rubygem-rubyinline/Makefile +++ head/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: head/devel/rubygem-rubyinlineaccel/Makefile =================================================================== --- head/devel/rubygem-rubyinlineaccel/Makefile +++ head/devel/rubygem-rubyinlineaccel/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-rubytree/Makefile =================================================================== --- head/devel/rubygem-rubytree/Makefile +++ head/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 Index: head/devel/rubygem-rufus-scheduler/Makefile =================================================================== --- head/devel/rubygem-rufus-scheduler/Makefile +++ head/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 Index: head/devel/rubygem-rugged/Makefile =================================================================== --- head/devel/rubygem-rugged/Makefile +++ head/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 Index: head/devel/rubygem-runt/Makefile =================================================================== --- head/devel/rubygem-runt/Makefile +++ head/devel/rubygem-runt/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-ruport/Makefile =================================================================== --- head/devel/rubygem-ruport/Makefile +++ head/devel/rubygem-ruport/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-safe_yaml/Makefile =================================================================== --- head/devel/rubygem-safe_yaml/Makefile +++ head/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: head/devel/rubygem-sdoc/Makefile =================================================================== --- head/devel/rubygem-sdoc/Makefile +++ head/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: head/devel/rubygem-semantic_puppet/Makefile =================================================================== --- head/devel/rubygem-semantic_puppet/Makefile +++ head/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 Index: head/devel/rubygem-semi_semantic/Makefile =================================================================== --- head/devel/rubygem-semi_semantic/Makefile +++ head/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 Index: head/devel/rubygem-sentry-raven/Makefile =================================================================== --- head/devel/rubygem-sentry-raven/Makefile +++ head/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 Index: head/devel/rubygem-sequel/Makefile =================================================================== --- head/devel/rubygem-sequel/Makefile +++ head/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: head/devel/rubygem-sequel3/Makefile =================================================================== --- head/devel/rubygem-sequel3/Makefile +++ head/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: head/devel/rubygem-settingslogic/Makefile =================================================================== --- head/devel/rubygem-settingslogic/Makefile +++ head/devel/rubygem-settingslogic/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-sexp_processor/Makefile =================================================================== --- head/devel/rubygem-sexp_processor/Makefile +++ head/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 Index: head/devel/rubygem-shoulda-context/Makefile =================================================================== --- head/devel/rubygem-shoulda-context/Makefile +++ head/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: head/devel/rubygem-shoulda-matchers/Makefile =================================================================== --- head/devel/rubygem-shoulda-matchers/Makefile +++ head/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: head/devel/rubygem-shoulda/Makefile =================================================================== --- head/devel/rubygem-shoulda/Makefile +++ head/devel/rubygem-shoulda/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-sidekiq-cron/Makefile =================================================================== --- head/devel/rubygem-sidekiq-cron/Makefile +++ head/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 Index: head/devel/rubygem-sidekiq/Makefile =================================================================== --- head/devel/rubygem-sidekiq/Makefile +++ head/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: head/devel/rubygem-sidetiq/Makefile =================================================================== --- head/devel/rubygem-sidetiq/Makefile +++ head/devel/rubygem-sidetiq/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-sigdump/Makefile =================================================================== --- head/devel/rubygem-sigdump/Makefile +++ head/devel/rubygem-sigdump/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-simple_form/Makefile =================================================================== --- head/devel/rubygem-simple_form/Makefile +++ head/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 Index: head/devel/rubygem-simplecov/Makefile =================================================================== --- head/devel/rubygem-simplecov/Makefile +++ head/devel/rubygem-simplecov/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-slack-notifier/Makefile =================================================================== --- head/devel/rubygem-slack-notifier/Makefile +++ head/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 Index: head/devel/rubygem-slim/Makefile =================================================================== --- head/devel/rubygem-slim/Makefile +++ head/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: head/devel/rubygem-slop/Makefile =================================================================== --- head/devel/rubygem-slop/Makefile +++ head/devel/rubygem-slop/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-slop3/Makefile =================================================================== --- head/devel/rubygem-slop3/Makefile +++ head/devel/rubygem-slop3/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-soap4r/Makefile =================================================================== --- head/devel/rubygem-soap4r/Makefile +++ head/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: head/devel/rubygem-spring/Makefile =================================================================== --- head/devel/rubygem-spring/Makefile +++ head/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: head/devel/rubygem-sprockets-helpers/Makefile =================================================================== --- head/devel/rubygem-sprockets-helpers/Makefile +++ head/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 Index: head/devel/rubygem-sprockets-rails/Makefile =================================================================== --- head/devel/rubygem-sprockets-rails/Makefile +++ head/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 Index: head/devel/rubygem-sprockets-sass/Makefile =================================================================== --- head/devel/rubygem-sprockets-sass/Makefile +++ head/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 Index: head/devel/rubygem-sprockets/Makefile =================================================================== --- head/devel/rubygem-sprockets/Makefile +++ head/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: head/devel/rubygem-sprockets211/Makefile =================================================================== --- head/devel/rubygem-sprockets211/Makefile +++ head/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: head/devel/rubygem-sprockets22/Makefile =================================================================== --- head/devel/rubygem-sprockets22/Makefile +++ head/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: head/devel/rubygem-sprockets3/Makefile =================================================================== --- head/devel/rubygem-sprockets3/Makefile +++ head/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: head/devel/rubygem-spruz/Makefile =================================================================== --- head/devel/rubygem-spruz/Makefile +++ head/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: head/devel/rubygem-state_machine/Makefile =================================================================== --- head/devel/rubygem-state_machine/Makefile +++ head/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 Index: head/devel/rubygem-state_machines/Makefile =================================================================== --- head/devel/rubygem-state_machines/Makefile +++ head/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 Index: head/devel/rubygem-statsd/Makefile =================================================================== --- head/devel/rubygem-statsd/Makefile +++ head/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: head/devel/rubygem-stella/Makefile =================================================================== --- head/devel/rubygem-stella/Makefile +++ head/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: head/devel/rubygem-stemmer/Makefile =================================================================== --- head/devel/rubygem-stemmer/Makefile +++ head/devel/rubygem-stemmer/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-stomp/Makefile =================================================================== --- head/devel/rubygem-stomp/Makefile +++ head/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: head/devel/rubygem-storable/Makefile =================================================================== --- head/devel/rubygem-storable/Makefile +++ head/devel/rubygem-storable/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-stream/Makefile =================================================================== --- head/devel/rubygem-stream/Makefile +++ head/devel/rubygem-stream/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-streetaddress/Makefile =================================================================== --- head/devel/rubygem-streetaddress/Makefile +++ head/devel/rubygem-streetaddress/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-stringex/Makefile =================================================================== --- head/devel/rubygem-stringex/Makefile +++ head/devel/rubygem-stringex/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-structured_warnings/Makefile =================================================================== --- head/devel/rubygem-structured_warnings/Makefile +++ head/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 Index: head/devel/rubygem-subexec/Makefile =================================================================== --- head/devel/rubygem-subexec/Makefile +++ head/devel/rubygem-subexec/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-sugar-high/Makefile =================================================================== --- head/devel/rubygem-sugar-high/Makefile +++ head/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 Index: head/devel/rubygem-sumbur/Makefile =================================================================== --- head/devel/rubygem-sumbur/Makefile +++ head/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 Index: head/devel/rubygem-sundawg_country_codes/Makefile =================================================================== --- head/devel/rubygem-sundawg_country_codes/Makefile +++ head/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 Index: head/devel/rubygem-svn2git/Makefile =================================================================== --- head/devel/rubygem-svn2git/Makefile +++ head/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 Index: head/devel/rubygem-sysinfo/Makefile =================================================================== --- head/devel/rubygem-sysinfo/Makefile +++ head/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: head/devel/rubygem-systemu/Makefile =================================================================== --- head/devel/rubygem-systemu/Makefile +++ head/devel/rubygem-systemu/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-table_print/Makefile =================================================================== --- head/devel/rubygem-table_print/Makefile +++ head/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 Index: head/devel/rubygem-tdiff/Makefile =================================================================== --- head/devel/rubygem-tdiff/Makefile +++ head/devel/rubygem-tdiff/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-templater/Makefile =================================================================== --- head/devel/rubygem-templater/Makefile +++ head/devel/rubygem-templater/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-temple/Makefile =================================================================== --- head/devel/rubygem-temple/Makefile +++ head/devel/rubygem-temple/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-term-ansicolor/Makefile =================================================================== --- head/devel/rubygem-term-ansicolor/Makefile +++ head/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: head/devel/rubygem-test-unit/Makefile =================================================================== --- head/devel/rubygem-test-unit/Makefile +++ head/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 Index: head/devel/rubygem-thor/Makefile =================================================================== --- head/devel/rubygem-thor/Makefile +++ head/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: head/devel/rubygem-thread_safe/Makefile =================================================================== --- head/devel/rubygem-thread_safe/Makefile +++ head/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 Index: head/devel/rubygem-thread_safe1/Makefile =================================================================== --- head/devel/rubygem-thread_safe1/Makefile +++ head/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: head/devel/rubygem-thrift/Makefile =================================================================== --- head/devel/rubygem-thrift/Makefile +++ head/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: head/devel/rubygem-tilt/Makefile =================================================================== --- head/devel/rubygem-tilt/Makefile +++ head/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: head/devel/rubygem-tilt1/Makefile =================================================================== --- head/devel/rubygem-tilt1/Makefile +++ head/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: head/devel/rubygem-timers/Makefile =================================================================== --- head/devel/rubygem-timers/Makefile +++ head/devel/rubygem-timers/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-tins/Makefile =================================================================== --- head/devel/rubygem-tins/Makefile +++ head/devel/rubygem-tins/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-titlecase/Makefile =================================================================== --- head/devel/rubygem-titlecase/Makefile +++ head/devel/rubygem-titlecase/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-toml/Makefile =================================================================== --- head/devel/rubygem-toml/Makefile +++ head/devel/rubygem-toml/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-transaction-simple/Makefile =================================================================== --- head/devel/rubygem-transaction-simple/Makefile +++ head/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 Index: head/devel/rubygem-travis/Makefile =================================================================== --- head/devel/rubygem-travis/Makefile +++ head/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: head/devel/rubygem-treetop/Makefile =================================================================== --- head/devel/rubygem-treetop/Makefile +++ head/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: head/devel/rubygem-trollop/Makefile =================================================================== --- head/devel/rubygem-trollop/Makefile +++ head/devel/rubygem-trollop/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-trollop1/Makefile =================================================================== --- head/devel/rubygem-trollop1/Makefile +++ head/devel/rubygem-trollop1/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-turn/Makefile =================================================================== --- head/devel/rubygem-turn/Makefile +++ head/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: head/devel/rubygem-typed-array/Makefile =================================================================== --- head/devel/rubygem-typed-array/Makefile +++ head/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 Index: head/devel/rubygem-tzinfo/Makefile =================================================================== --- head/devel/rubygem-tzinfo/Makefile +++ head/devel/rubygem-tzinfo/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-tzinfo03/Makefile =================================================================== --- head/devel/rubygem-tzinfo03/Makefile +++ head/devel/rubygem-tzinfo03/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-unicode-display_width/Makefile =================================================================== --- head/devel/rubygem-unicode-display_width/Makefile +++ head/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 Index: head/devel/rubygem-unicode/Makefile =================================================================== --- head/devel/rubygem-unicode/Makefile +++ head/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 Index: head/devel/rubygem-uuid/Makefile =================================================================== --- head/devel/rubygem-uuid/Makefile +++ head/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: head/devel/rubygem-uuidtools/Makefile =================================================================== --- head/devel/rubygem-uuidtools/Makefile +++ head/devel/rubygem-uuidtools/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-validatable/Makefile =================================================================== --- head/devel/rubygem-validatable/Makefile +++ head/devel/rubygem-validatable/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-versionomy/Makefile =================================================================== --- head/devel/rubygem-versionomy/Makefile +++ head/devel/rubygem-versionomy/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-virtus/Makefile =================================================================== --- head/devel/rubygem-virtus/Makefile +++ head/devel/rubygem-virtus/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-warbler/Makefile =================================================================== --- head/devel/rubygem-warbler/Makefile +++ head/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: head/devel/rubygem-warden/Makefile =================================================================== --- head/devel/rubygem-warden/Makefile +++ head/devel/rubygem-warden/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-wdm/Makefile =================================================================== --- head/devel/rubygem-wdm/Makefile +++ head/devel/rubygem-wdm/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-web-console/Makefile =================================================================== --- head/devel/rubygem-web-console/Makefile +++ head/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 Index: head/devel/rubygem-webby/Makefile =================================================================== --- head/devel/rubygem-webby/Makefile +++ head/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 Index: head/devel/rubygem-wmi-lite/Makefile =================================================================== --- head/devel/rubygem-wmi-lite/Makefile +++ head/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 Index: head/devel/rubygem-xpath/Makefile =================================================================== --- head/devel/rubygem-xpath/Makefile +++ head/devel/rubygem-xpath/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-yajl-ruby/Makefile =================================================================== --- head/devel/rubygem-yajl-ruby/Makefile +++ head/devel/rubygem-yajl-ruby/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/devel/rubygem-yui-compressor/Makefile =================================================================== --- head/devel/rubygem-yui-compressor/Makefile +++ head/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 Index: head/devel/rubygem-zentest/Makefile =================================================================== --- head/devel/rubygem-zentest/Makefile +++ head/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: head/dns/rubygem-dnsruby/Makefile =================================================================== --- head/dns/rubygem-dnsruby/Makefile +++ head/dns/rubygem-dnsruby/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/dns/rubygem-net-dns/Makefile =================================================================== --- head/dns/rubygem-net-dns/Makefile +++ head/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 Index: head/dns/rubygem-public_suffix/Makefile =================================================================== --- head/dns/rubygem-public_suffix/Makefile +++ head/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: head/dns/rubygem-public_suffix_service/Makefile =================================================================== --- head/dns/rubygem-public_suffix_service/Makefile +++ head/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: head/emulators/rubygem-fission/Makefile =================================================================== --- head/emulators/rubygem-fission/Makefile +++ head/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: head/finance/rubygem-money/Makefile =================================================================== --- head/finance/rubygem-money/Makefile +++ head/finance/rubygem-money/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/ftp/rubygem-curb/Makefile =================================================================== --- head/ftp/rubygem-curb/Makefile +++ head/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 Index: head/games/lolcat/Makefile =================================================================== --- head/games/lolcat/Makefile +++ head/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: head/games/rubygem-fortune_gem/Makefile =================================================================== --- head/games/rubygem-fortune_gem/Makefile +++ head/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 Index: head/graphics/rubygem-cairo/Makefile =================================================================== --- head/graphics/rubygem-cairo/Makefile +++ head/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 Index: head/graphics/rubygem-captcha/Makefile =================================================================== --- head/graphics/rubygem-captcha/Makefile +++ head/graphics/rubygem-captcha/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-chunky_png/Makefile =================================================================== --- head/graphics/rubygem-chunky_png/Makefile +++ head/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 Index: head/graphics/rubygem-clutter-gtk/Makefile =================================================================== --- head/graphics/rubygem-clutter-gtk/Makefile +++ head/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 Index: head/graphics/rubygem-clutter/Makefile =================================================================== --- head/graphics/rubygem-clutter/Makefile +++ head/graphics/rubygem-clutter/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-dragonfly/Makefile =================================================================== --- head/graphics/rubygem-dragonfly/Makefile +++ head/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: head/graphics/rubygem-emoji/Makefile =================================================================== --- head/graphics/rubygem-emoji/Makefile +++ head/graphics/rubygem-emoji/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-exifr/Makefile =================================================================== --- head/graphics/rubygem-exifr/Makefile +++ head/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: head/graphics/rubygem-ezprint/Makefile =================================================================== --- head/graphics/rubygem-ezprint/Makefile +++ head/graphics/rubygem-ezprint/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-fastimage/Makefile =================================================================== --- head/graphics/rubygem-fastimage/Makefile +++ head/graphics/rubygem-fastimage/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-flamegraph/Makefile =================================================================== --- head/graphics/rubygem-flamegraph/Makefile +++ head/graphics/rubygem-flamegraph/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-gd2/Makefile =================================================================== --- head/graphics/rubygem-gd2/Makefile +++ head/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: head/graphics/rubygem-gdk_pixbuf2/Makefile =================================================================== --- head/graphics/rubygem-gdk_pixbuf2/Makefile +++ head/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 Index: head/graphics/rubygem-gemojione/Makefile =================================================================== --- head/graphics/rubygem-gemojione/Makefile +++ head/graphics/rubygem-gemojione/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-geokit/Makefile =================================================================== --- head/graphics/rubygem-geokit/Makefile +++ head/graphics/rubygem-geokit/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-gitlab_emoji/Makefile =================================================================== --- head/graphics/rubygem-gitlab_emoji/Makefile +++ head/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 Index: head/graphics/rubygem-goocanvas/Makefile =================================================================== --- head/graphics/rubygem-goocanvas/Makefile +++ head/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 Index: head/graphics/rubygem-gruff/Makefile =================================================================== --- head/graphics/rubygem-gruff/Makefile +++ head/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: head/graphics/rubygem-image_science/Makefile =================================================================== --- head/graphics/rubygem-image_science/Makefile +++ head/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: head/graphics/rubygem-imagesize/Makefile =================================================================== --- head/graphics/rubygem-imagesize/Makefile +++ head/graphics/rubygem-imagesize/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-mini_magick/Makefile =================================================================== --- head/graphics/rubygem-mini_magick/Makefile +++ head/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: head/graphics/rubygem-objectdetect/Makefile =================================================================== --- head/graphics/rubygem-objectdetect/Makefile +++ head/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: head/graphics/rubygem-opengl/Makefile =================================================================== --- head/graphics/rubygem-opengl/Makefile +++ head/graphics/rubygem-opengl/Makefile @@ -15,7 +15,6 @@ USE_GL= glut USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-pdfkit/Makefile =================================================================== --- head/graphics/rubygem-pdfkit/Makefile +++ head/graphics/rubygem-pdfkit/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-png/Makefile =================================================================== --- head/graphics/rubygem-png/Makefile +++ head/graphics/rubygem-png/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-railroad/Makefile =================================================================== --- head/graphics/rubygem-railroad/Makefile +++ head/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: head/graphics/rubygem-rmagick/Makefile =================================================================== --- head/graphics/rubygem-rmagick/Makefile +++ head/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: head/graphics/rubygem-rsvg2/Makefile =================================================================== --- head/graphics/rubygem-rsvg2/Makefile +++ head/graphics/rubygem-rsvg2/Makefile @@ -15,7 +15,6 @@ USE_GNOME= librsvg2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/graphics/rubygem-ruby-graphviz/Makefile =================================================================== --- head/graphics/rubygem-ruby-graphviz/Makefile +++ head/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: head/graphics/rubygem-scruffy/Makefile =================================================================== --- head/graphics/rubygem-scruffy/Makefile +++ head/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: head/irc/rubygem-cinch/Makefile =================================================================== --- head/irc/rubygem-cinch/Makefile +++ head/irc/rubygem-cinch/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/irc/rubygem-cogbot/Makefile =================================================================== --- head/irc/rubygem-cogbot/Makefile +++ head/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: head/irc/rubygem-lita-irc/Makefile =================================================================== --- head/irc/rubygem-lita-irc/Makefile +++ head/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 Index: head/irc/rubygem-net-irc/Makefile =================================================================== --- head/irc/rubygem-net-irc/Makefile +++ head/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 Index: head/japanese/rubygem-jpmobile-ipaddresses/Makefile =================================================================== --- head/japanese/rubygem-jpmobile-ipaddresses/Makefile +++ head/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 Index: head/japanese/rubygem-jpmobile-terminfo/Makefile =================================================================== --- head/japanese/rubygem-jpmobile-terminfo/Makefile +++ head/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 Index: head/japanese/rubygem-jpmobile/Makefile =================================================================== --- head/japanese/rubygem-jpmobile/Makefile +++ head/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: head/japanese/rubygem-jpmobile4/Makefile =================================================================== --- head/japanese/rubygem-jpmobile4/Makefile +++ head/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: head/japanese/rubygem-mail-iso-2022-jp/Makefile =================================================================== --- head/japanese/rubygem-mail-iso-2022-jp/Makefile +++ head/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 Index: head/japanese/rubygem-myrurema/Makefile =================================================================== --- head/japanese/rubygem-myrurema/Makefile +++ head/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: head/java/rubygem-rjb/Makefile =================================================================== --- head/java/rubygem-rjb/Makefile +++ head/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: head/mail/rubygem-actionmailer/Makefile =================================================================== --- head/mail/rubygem-actionmailer/Makefile +++ head/mail/rubygem-actionmailer/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-actionmailer4/Makefile =================================================================== --- head/mail/rubygem-actionmailer4/Makefile +++ head/mail/rubygem-actionmailer4/Makefile @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-email_reply_parser-discourse/Makefile =================================================================== --- head/mail/rubygem-email_reply_parser-discourse/Makefile +++ head/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 Index: head/mail/rubygem-email_reply_parser/Makefile =================================================================== --- head/mail/rubygem-email_reply_parser/Makefile +++ head/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 Index: head/mail/rubygem-exception_notification/Makefile =================================================================== --- head/mail/rubygem-exception_notification/Makefile +++ head/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 Index: head/mail/rubygem-larch/Makefile =================================================================== --- head/mail/rubygem-larch/Makefile +++ head/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: head/mail/rubygem-mail/Makefile =================================================================== --- head/mail/rubygem-mail/Makefile +++ head/mail/rubygem-mail/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-mail25/Makefile =================================================================== --- head/mail/rubygem-mail25/Makefile +++ head/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: head/mail/rubygem-mail_room/Makefile =================================================================== --- head/mail/rubygem-mail_room/Makefile +++ head/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: head/mail/rubygem-mailboxer/Makefile =================================================================== --- head/mail/rubygem-mailboxer/Makefile +++ head/mail/rubygem-mailboxer/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-mailfactory/Makefile =================================================================== --- head/mail/rubygem-mailfactory/Makefile +++ head/mail/rubygem-mailfactory/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-pony/Makefile =================================================================== --- head/mail/rubygem-pony/Makefile +++ head/mail/rubygem-pony/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-premailer-rails/Makefile =================================================================== --- head/mail/rubygem-premailer-rails/Makefile +++ head/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 Index: head/mail/rubygem-premailer/Makefile =================================================================== --- head/mail/rubygem-premailer/Makefile +++ head/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: head/mail/rubygem-rmail/Makefile =================================================================== --- head/mail/rubygem-rmail/Makefile +++ head/mail/rubygem-rmail/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-roadie-rails/Makefile =================================================================== --- head/mail/rubygem-roadie-rails/Makefile +++ head/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 Index: head/mail/rubygem-roadie/Makefile =================================================================== --- head/mail/rubygem-roadie/Makefile +++ head/mail/rubygem-roadie/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/mail/rubygem-ruby-qmail/Makefile =================================================================== --- head/mail/rubygem-ruby-qmail/Makefile +++ head/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 Index: head/mail/rubygem-tmail/Makefile =================================================================== --- head/mail/rubygem-tmail/Makefile +++ head/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 Index: head/mail/rubygem-vmail/Makefile =================================================================== --- head/mail/rubygem-vmail/Makefile +++ head/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: head/math/rubygem-expression_parser/Makefile =================================================================== --- head/math/rubygem-expression_parser/Makefile +++ head/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 Index: head/math/rubygem-fftw3/Makefile =================================================================== --- head/math/rubygem-fftw3/Makefile +++ head/math/rubygem-fftw3/Makefile @@ -14,7 +14,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/math/rubygem-narray/Makefile =================================================================== --- head/math/rubygem-narray/Makefile +++ head/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: head/math/rubygem-narray_miss/Makefile =================================================================== --- head/math/rubygem-narray_miss/Makefile +++ head/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 Index: head/math/rubygem-numru-misc/Makefile =================================================================== --- head/math/rubygem-numru-misc/Makefile +++ head/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 Index: head/math/rubygem-numru-units/Makefile =================================================================== --- head/math/rubygem-numru-units/Makefile +++ head/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 Index: head/math/rubygem-rb-gsl/Makefile =================================================================== --- head/math/rubygem-rb-gsl/Makefile +++ head/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 Index: head/misc/rubygem-dotenv/Makefile =================================================================== --- head/misc/rubygem-dotenv/Makefile +++ head/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: head/misc/rubygem-iesd/Makefile =================================================================== --- head/misc/rubygem-iesd/Makefile +++ head/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: head/misc/rubygem-mime-types-data/Makefile =================================================================== --- head/misc/rubygem-mime-types-data/Makefile +++ head/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 Index: head/misc/rubygem-mime-types/Makefile =================================================================== --- head/misc/rubygem-mime-types/Makefile +++ head/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 Index: head/misc/rubygem-mime-types1/Makefile =================================================================== --- head/misc/rubygem-mime-types1/Makefile +++ head/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: head/misc/rubygem-mimemagic/Makefile =================================================================== --- head/misc/rubygem-mimemagic/Makefile +++ head/misc/rubygem-mimemagic/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/misc/rubygem-rabbit/Makefile =================================================================== --- head/misc/rubygem-rabbit/Makefile +++ head/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: head/misc/rubygem-vpim/Makefile =================================================================== --- head/misc/rubygem-vpim/Makefile +++ head/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: head/multimedia/rubygem-clutter-gstreamer/Makefile =================================================================== --- head/multimedia/rubygem-clutter-gstreamer/Makefile +++ head/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 Index: head/multimedia/rubygem-flvtool2/Makefile =================================================================== --- head/multimedia/rubygem-flvtool2/Makefile +++ head/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: head/multimedia/rubygem-gstreamer/Makefile =================================================================== --- head/multimedia/rubygem-gstreamer/Makefile +++ head/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 Index: head/net-im/rubygem-earthquake/Makefile =================================================================== --- head/net-im/rubygem-earthquake/Makefile +++ head/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: head/net-im/rubygem-hipchat/Makefile =================================================================== --- head/net-im/rubygem-hipchat/Makefile +++ head/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 Index: head/net-im/rubygem-lita/Makefile =================================================================== --- head/net-im/rubygem-lita/Makefile +++ head/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: head/net-im/rubygem-termtter/Makefile =================================================================== --- head/net-im/rubygem-termtter/Makefile +++ head/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: head/net-im/rubygem-tinder/Makefile =================================================================== --- head/net-im/rubygem-tinder/Makefile +++ head/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 Index: head/net-mgmt/rubygem-blimpy/Makefile =================================================================== --- head/net-mgmt/rubygem-blimpy/Makefile +++ head/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: head/net-mgmt/rubygem-snmp/Makefile =================================================================== --- head/net-mgmt/rubygem-snmp/Makefile +++ head/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 Index: head/net-mgmt/rubygem-visage-app/Makefile =================================================================== --- head/net-mgmt/rubygem-visage-app/Makefile +++ head/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: head/net/rubygem-amazon-ec2/Makefile =================================================================== --- head/net/rubygem-amazon-ec2/Makefile +++ head/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 Index: head/net/rubygem-amq-protocol/Makefile =================================================================== --- head/net/rubygem-amq-protocol/Makefile +++ head/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 Index: head/net/rubygem-amqp-utils/Makefile =================================================================== --- head/net/rubygem-amqp-utils/Makefile +++ head/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: head/net/rubygem-amqp/Makefile =================================================================== --- head/net/rubygem-amqp/Makefile +++ head/net/rubygem-amqp/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-aws-s3/Makefile =================================================================== --- head/net/rubygem-aws-s3/Makefile +++ head/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 Index: head/net/rubygem-aws-ses/Makefile =================================================================== --- head/net/rubygem-aws-ses/Makefile +++ head/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 Index: head/net/rubygem-bunny/Makefile =================================================================== --- head/net/rubygem-bunny/Makefile +++ head/net/rubygem-bunny/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-connection_pool/Makefile =================================================================== --- head/net/rubygem-connection_pool/Makefile +++ head/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 Index: head/net/rubygem-dogapi/Makefile =================================================================== --- head/net/rubygem-dogapi/Makefile +++ head/net/rubygem-dogapi/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-domain_name/Makefile =================================================================== --- head/net/rubygem-domain_name/Makefile +++ head/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 Index: head/net/rubygem-dropbox-sdk/Makefile =================================================================== --- head/net/rubygem-dropbox-sdk/Makefile +++ head/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 Index: head/net/rubygem-epp-client-afnic/Makefile =================================================================== --- head/net/rubygem-epp-client-afnic/Makefile +++ head/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 Index: head/net/rubygem-epp-client-base/Makefile =================================================================== --- head/net/rubygem-epp-client-base/Makefile +++ head/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 Index: head/net/rubygem-epp-client-rgp/Makefile =================================================================== --- head/net/rubygem-epp-client-rgp/Makefile +++ head/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 Index: head/net/rubygem-epp-client-secdns/Makefile =================================================================== --- head/net/rubygem-epp-client-secdns/Makefile +++ head/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 Index: head/net/rubygem-epp-client-smallregistry/Makefile =================================================================== --- head/net/rubygem-epp-client-smallregistry/Makefile +++ head/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 Index: head/net/rubygem-fog-aliyun/Makefile =================================================================== --- head/net/rubygem-fog-aliyun/Makefile +++ head/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 Index: head/net/rubygem-fog-atmos/Makefile =================================================================== --- head/net/rubygem-fog-atmos/Makefile +++ head/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 Index: head/net/rubygem-fog-aws/Makefile =================================================================== --- head/net/rubygem-fog-aws/Makefile +++ head/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 Index: head/net/rubygem-fog-brightbox/Makefile =================================================================== --- head/net/rubygem-fog-brightbox/Makefile +++ head/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 Index: head/net/rubygem-fog-cloudatcost/Makefile =================================================================== --- head/net/rubygem-fog-cloudatcost/Makefile +++ head/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 Index: head/net/rubygem-fog-dynect/Makefile =================================================================== --- head/net/rubygem-fog-dynect/Makefile +++ head/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 Index: head/net/rubygem-fog-ecloud/Makefile =================================================================== --- head/net/rubygem-fog-ecloud/Makefile +++ head/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 Index: head/net/rubygem-fog-google/Makefile =================================================================== --- head/net/rubygem-fog-google/Makefile +++ head/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 Index: head/net/rubygem-fog-local/Makefile =================================================================== --- head/net/rubygem-fog-local/Makefile +++ head/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 Index: head/net/rubygem-fog-openstack/Makefile =================================================================== --- head/net/rubygem-fog-openstack/Makefile +++ head/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 Index: head/net/rubygem-fog-powerdns/Makefile =================================================================== --- head/net/rubygem-fog-powerdns/Makefile +++ head/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 Index: head/net/rubygem-fog-profitbricks/Makefile =================================================================== --- head/net/rubygem-fog-profitbricks/Makefile +++ head/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 Index: head/net/rubygem-fog-rackspace/Makefile =================================================================== --- head/net/rubygem-fog-rackspace/Makefile +++ head/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 Index: head/net/rubygem-fog-radosgw/Makefile =================================================================== --- head/net/rubygem-fog-radosgw/Makefile +++ head/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 Index: head/net/rubygem-fog-riakcs/Makefile =================================================================== --- head/net/rubygem-fog-riakcs/Makefile +++ head/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 Index: head/net/rubygem-fog-sakuracloud/Makefile =================================================================== --- head/net/rubygem-fog-sakuracloud/Makefile +++ head/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 Index: head/net/rubygem-fog-serverlove/Makefile =================================================================== --- head/net/rubygem-fog-serverlove/Makefile +++ head/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 Index: head/net/rubygem-fog-softlayer/Makefile =================================================================== --- head/net/rubygem-fog-softlayer/Makefile +++ head/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 Index: head/net/rubygem-fog-storm_on_demand/Makefile =================================================================== --- head/net/rubygem-fog-storm_on_demand/Makefile +++ head/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 Index: head/net/rubygem-fog-terremark/Makefile =================================================================== --- head/net/rubygem-fog-terremark/Makefile +++ head/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 Index: head/net/rubygem-fog-vmfusion/Makefile =================================================================== --- head/net/rubygem-fog-vmfusion/Makefile +++ head/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 Index: head/net/rubygem-fog-voxel/Makefile =================================================================== --- head/net/rubygem-fog-voxel/Makefile +++ head/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 Index: head/net/rubygem-fog-vsphere/Makefile =================================================================== --- head/net/rubygem-fog-vsphere/Makefile +++ head/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 Index: head/net/rubygem-fog-xenserver/Makefile =================================================================== --- head/net/rubygem-fog-xenserver/Makefile +++ head/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 Index: head/net/rubygem-geoip/Makefile =================================================================== --- head/net/rubygem-geoip/Makefile +++ head/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: head/net/rubygem-gitlab_omniauth-ldap/Makefile =================================================================== --- head/net/rubygem-gitlab_omniauth-ldap/Makefile +++ head/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 Index: head/net/rubygem-http_parser.rb/Makefile =================================================================== --- head/net/rubygem-http_parser.rb/Makefile +++ head/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 Index: head/net/rubygem-httpauth/Makefile =================================================================== --- head/net/rubygem-httpauth/Makefile +++ head/net/rubygem-httpauth/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-ipaddress/Makefile =================================================================== --- head/net/rubygem-ipaddress/Makefile +++ head/net/rubygem-ipaddress/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-iproto/Makefile =================================================================== --- head/net/rubygem-iproto/Makefile +++ head/net/rubygem-iproto/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-lita-gems/Makefile =================================================================== --- head/net/rubygem-lita-gems/Makefile +++ head/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 Index: head/net/rubygem-macaddr/Makefile =================================================================== --- head/net/rubygem-macaddr/Makefile +++ head/net/rubygem-macaddr/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-net-ldap/Makefile =================================================================== --- head/net/rubygem-net-ldap/Makefile +++ head/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 Index: head/net/rubygem-net-netrc/Makefile =================================================================== --- head/net/rubygem-net-netrc/Makefile +++ head/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 Index: head/net/rubygem-net-ping/Makefile =================================================================== --- head/net/rubygem-net-ping/Makefile +++ head/net/rubygem-net-ping/Makefile @@ -11,7 +11,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-netrc/Makefile =================================================================== --- head/net/rubygem-netrc/Makefile +++ head/net/rubygem-netrc/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-network_interface/Makefile =================================================================== --- head/net/rubygem-network_interface/Makefile +++ head/net/rubygem-network_interface/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: head/net/rubygem-oauth/Makefile =================================================================== --- head/net/rubygem-oauth/Makefile +++ head/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: head/net/rubygem-oauth2/Makefile =================================================================== --- head/net/rubygem-oauth2/Makefile +++ head/net/rubygem-oauth2/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-octokit/Makefile =================================================================== --- head/net/rubygem-octokit/Makefile +++ head/net/rubygem-octokit/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-octopress-deploy/Makefile =================================================================== --- head/net/rubygem-octopress-deploy/Makefile +++ head/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 Index: head/net/rubygem-omniauth-auth0/Makefile =================================================================== --- head/net/rubygem-omniauth-auth0/Makefile +++ head/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 Index: head/net/rubygem-omniauth-azure-oauth2/Makefile =================================================================== --- head/net/rubygem-omniauth-azure-oauth2/Makefile +++ head/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 Index: head/net/rubygem-omniauth-facebook/Makefile =================================================================== --- head/net/rubygem-omniauth-facebook/Makefile +++ head/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 Index: head/net/rubygem-omniauth-github-discourse/Makefile =================================================================== --- head/net/rubygem-omniauth-github-discourse/Makefile +++ head/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 Index: head/net/rubygem-omniauth-github/Makefile =================================================================== --- head/net/rubygem-omniauth-github/Makefile +++ head/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 Index: head/net/rubygem-omniauth-google-oauth2/Makefile =================================================================== --- head/net/rubygem-omniauth-google-oauth2/Makefile +++ head/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 Index: head/net/rubygem-omniauth-oauth/Makefile =================================================================== --- head/net/rubygem-omniauth-oauth/Makefile +++ head/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 Index: head/net/rubygem-omniauth-oauth2/Makefile =================================================================== --- head/net/rubygem-omniauth-oauth2/Makefile +++ head/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 Index: head/net/rubygem-omniauth-openid/Makefile =================================================================== --- head/net/rubygem-omniauth-openid/Makefile +++ head/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 Index: head/net/rubygem-omniauth-twitter/Makefile =================================================================== --- head/net/rubygem-omniauth-twitter/Makefile +++ head/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 Index: head/net/rubygem-open-uri-cached/Makefile =================================================================== --- head/net/rubygem-open-uri-cached/Makefile +++ head/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 Index: head/net/rubygem-opennebula/Makefile =================================================================== --- head/net/rubygem-opennebula/Makefile +++ head/net/rubygem-opennebula/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-packetfu/Makefile =================================================================== --- head/net/rubygem-packetfu/Makefile +++ head/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 Index: head/net/rubygem-pcaprub/Makefile =================================================================== --- head/net/rubygem-pcaprub/Makefile +++ head/net/rubygem-pcaprub/Makefile @@ -11,7 +11,6 @@ LICENSE= LGPL21 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: head/net/rubygem-rabbiter/Makefile =================================================================== --- head/net/rubygem-rabbiter/Makefile +++ head/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 Index: head/net/rubygem-rbvmomi/Makefile =================================================================== --- head/net/rubygem-rbvmomi/Makefile +++ head/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: head/net/rubygem-right_aws/Makefile =================================================================== --- head/net/rubygem-right_aws/Makefile +++ head/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: head/net/rubygem-right_flexiscale/Makefile =================================================================== --- head/net/rubygem-right_flexiscale/Makefile +++ head/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 Index: head/net/rubygem-right_gogrid/Makefile =================================================================== --- head/net/rubygem-right_gogrid/Makefile +++ head/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 Index: head/net/rubygem-right_http_connection/Makefile =================================================================== --- head/net/rubygem-right_http_connection/Makefile +++ head/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 Index: head/net/rubygem-right_slicehost/Makefile =================================================================== --- head/net/rubygem-right_slicehost/Makefile +++ head/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 Index: head/net/rubygem-rsync/Makefile =================================================================== --- head/net/rubygem-rsync/Makefile +++ head/net/rubygem-rsync/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-ruby-growl/Makefile =================================================================== --- head/net/rubygem-ruby-growl/Makefile +++ head/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: head/net/rubygem-ruby-openid/Makefile =================================================================== --- head/net/rubygem-ruby-openid/Makefile +++ head/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 Index: head/net/rubygem-ruby-yadis/Makefile =================================================================== --- head/net/rubygem-ruby-yadis/Makefile +++ head/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 Index: head/net/rubygem-rubyntlm/Makefile =================================================================== --- head/net/rubygem-rubyntlm/Makefile +++ head/net/rubygem-rubyntlm/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-rubytter/Makefile =================================================================== --- head/net/rubygem-rubytter/Makefile +++ head/net/rubygem-rubytter/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-rudy/Makefile =================================================================== --- head/net/rubygem-rudy/Makefile +++ head/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: head/net/rubygem-rye/Makefile =================================================================== --- head/net/rubygem-rye/Makefile +++ head/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 Index: head/net/rubygem-simple_oauth/Makefile =================================================================== --- head/net/rubygem-simple_oauth/Makefile +++ head/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 Index: head/net/rubygem-stompserver/Makefile =================================================================== --- head/net/rubygem-stompserver/Makefile +++ head/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: head/net/rubygem-t/Makefile =================================================================== --- head/net/rubygem-t/Makefile +++ head/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: head/net/rubygem-tweetstream/Makefile =================================================================== --- head/net/rubygem-tweetstream/Makefile +++ head/net/rubygem-tweetstream/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-twitter-stream/Makefile =================================================================== --- head/net/rubygem-twitter-stream/Makefile +++ head/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 Index: head/net/rubygem-twitter/Makefile =================================================================== --- head/net/rubygem-twitter/Makefile +++ head/net/rubygem-twitter/Makefile @@ -25,7 +25,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/net/rubygem-twitter4r/Makefile =================================================================== --- head/net/rubygem-twitter4r/Makefile +++ head/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: head/net/rubygem-uri-redis/Makefile =================================================================== --- head/net/rubygem-uri-redis/Makefile +++ head/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 Index: head/net/rubygem-whois/Makefile =================================================================== --- head/net/rubygem-whois/Makefile +++ head/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: head/print/rubygem-afm/Makefile =================================================================== --- head/print/rubygem-afm/Makefile +++ head/print/rubygem-afm/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/print/rubygem-color-tools/Makefile =================================================================== --- head/print/rubygem-color-tools/Makefile +++ head/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 Index: head/print/rubygem-color/Makefile =================================================================== --- head/print/rubygem-color/Makefile +++ head/print/rubygem-color/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/print/rubygem-pdf-core/Makefile =================================================================== --- head/print/rubygem-pdf-core/Makefile +++ head/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 Index: head/print/rubygem-pdf-reader/Makefile =================================================================== --- head/print/rubygem-pdf-reader/Makefile +++ head/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: head/print/rubygem-pdf-writer/Makefile =================================================================== --- head/print/rubygem-pdf-writer/Makefile +++ head/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: head/print/rubygem-prawn-core/Makefile =================================================================== --- head/print/rubygem-prawn-core/Makefile +++ head/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 Index: head/print/rubygem-prawn-flexible-table/Makefile =================================================================== --- head/print/rubygem-prawn-flexible-table/Makefile +++ head/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 Index: head/print/rubygem-prawn-format/Makefile =================================================================== --- head/print/rubygem-prawn-format/Makefile +++ head/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 Index: head/print/rubygem-prawn-graph/Makefile =================================================================== --- head/print/rubygem-prawn-graph/Makefile +++ head/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 Index: head/print/rubygem-prawn-js/Makefile =================================================================== --- head/print/rubygem-prawn-js/Makefile +++ head/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 Index: head/print/rubygem-prawn-layout/Makefile =================================================================== --- head/print/rubygem-prawn-layout/Makefile +++ head/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 Index: head/print/rubygem-prawn-security/Makefile =================================================================== --- head/print/rubygem-prawn-security/Makefile +++ head/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 Index: head/print/rubygem-prawn-svg/Makefile =================================================================== --- head/print/rubygem-prawn-svg/Makefile +++ head/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 Index: head/print/rubygem-prawn/Makefile =================================================================== --- head/print/rubygem-prawn/Makefile +++ head/print/rubygem-prawn/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/print/rubygem-rbpdf-font/Makefile =================================================================== --- head/print/rubygem-rbpdf-font/Makefile +++ head/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 Index: head/print/rubygem-rbpdf/Makefile =================================================================== --- head/print/rubygem-rbpdf/Makefile +++ head/print/rubygem-rbpdf/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/print/rubygem-ttfunk/Makefile =================================================================== --- head/print/rubygem-ttfunk/Makefile +++ head/print/rubygem-ttfunk/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/russian/rubygem-russian/Makefile =================================================================== --- head/russian/rubygem-russian/Makefile +++ head/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 Index: head/science/rubygem-ai4r/Makefile =================================================================== --- head/science/rubygem-ai4r/Makefile +++ head/science/rubygem-ai4r/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/science/rubygem-cdo/Makefile =================================================================== --- head/science/rubygem-cdo/Makefile +++ head/science/rubygem-cdo/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/science/rubygem-ruby-dcl/Makefile =================================================================== --- head/science/rubygem-ruby-dcl/Makefile +++ head/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 Index: head/science/rubygem-ruby-netcdf/Makefile =================================================================== --- head/science/rubygem-ruby-netcdf/Makefile +++ head/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 Index: head/security/ruby-hmac/Makefile =================================================================== --- head/security/ruby-hmac/Makefile +++ head/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 Index: head/security/rubygem-attr_encrypted/Makefile =================================================================== --- head/security/rubygem-attr_encrypted/Makefile +++ head/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 Index: head/security/rubygem-bcrypt-ruby/Makefile =================================================================== --- head/security/rubygem-bcrypt-ruby/Makefile +++ head/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 Index: head/security/rubygem-bcrypt/Makefile =================================================================== --- head/security/rubygem-bcrypt/Makefile +++ head/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 Index: head/security/rubygem-devise-two-factor/Makefile =================================================================== --- head/security/rubygem-devise-two-factor/Makefile +++ head/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 Index: head/security/rubygem-doorkeeper/Makefile =================================================================== --- head/security/rubygem-doorkeeper/Makefile +++ head/security/rubygem-doorkeeper/Makefile @@ -24,7 +24,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-encryptor/Makefile =================================================================== --- head/security/rubygem-encryptor/Makefile +++ head/security/rubygem-encryptor/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: head/security/rubygem-ezcrypto/Makefile =================================================================== --- head/security/rubygem-ezcrypto/Makefile +++ head/security/rubygem-ezcrypto/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-gpgr/Makefile =================================================================== --- head/security/rubygem-gpgr/Makefile +++ head/security/rubygem-gpgr/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-gssapi/Makefile =================================================================== --- head/security/rubygem-gssapi/Makefile +++ head/security/rubygem-gssapi/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-jugyo-twitter_oauth/Makefile =================================================================== --- head/security/rubygem-jugyo-twitter_oauth/Makefile +++ head/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 Index: head/security/rubygem-metasploit-concern/Makefile =================================================================== --- head/security/rubygem-metasploit-concern/Makefile +++ head/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: head/security/rubygem-metasploit-credential/Makefile =================================================================== --- head/security/rubygem-metasploit-credential/Makefile +++ head/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: head/security/rubygem-metasploit-model/Makefile =================================================================== --- head/security/rubygem-metasploit-model/Makefile +++ head/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: head/security/rubygem-metasploit-payloads/Makefile =================================================================== --- head/security/rubygem-metasploit-payloads/Makefile +++ head/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: head/security/rubygem-metasploit_data_models/Makefile =================================================================== --- head/security/rubygem-metasploit_data_models/Makefile +++ head/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: head/security/rubygem-net-scp/Makefile =================================================================== --- head/security/rubygem-net-scp/Makefile +++ head/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 Index: head/security/rubygem-net-sftp/Makefile =================================================================== --- head/security/rubygem-net-sftp/Makefile +++ head/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 Index: head/security/rubygem-net-ssh-gateway/Makefile =================================================================== --- head/security/rubygem-net-ssh-gateway/Makefile +++ head/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 Index: head/security/rubygem-net-ssh-multi/Makefile =================================================================== --- head/security/rubygem-net-ssh-multi/Makefile +++ head/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 Index: head/security/rubygem-net-ssh/Makefile =================================================================== --- head/security/rubygem-net-ssh/Makefile +++ head/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: head/security/rubygem-nmap-parser/Makefile =================================================================== --- head/security/rubygem-nmap-parser/Makefile +++ head/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 Index: head/security/rubygem-omniauth-bitbucket/Makefile =================================================================== --- head/security/rubygem-omniauth-bitbucket/Makefile +++ head/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 Index: head/security/rubygem-omniauth-cas3/Makefile =================================================================== --- head/security/rubygem-omniauth-cas3/Makefile +++ head/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 Index: head/security/rubygem-omniauth-gitlab/Makefile =================================================================== --- head/security/rubygem-omniauth-gitlab/Makefile +++ head/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 Index: head/security/rubygem-omniauth-multipassword/Makefile =================================================================== --- head/security/rubygem-omniauth-multipassword/Makefile +++ head/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 Index: head/security/rubygem-omniauth-saml/Makefile =================================================================== --- head/security/rubygem-omniauth-saml/Makefile +++ head/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 Index: head/security/rubygem-omniauth-shibboleth/Makefile =================================================================== --- head/security/rubygem-omniauth-shibboleth/Makefile +++ head/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 Index: head/security/rubygem-omniauth/Makefile =================================================================== --- head/security/rubygem-omniauth/Makefile +++ head/security/rubygem-omniauth/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-origami/Makefile =================================================================== --- head/security/rubygem-origami/Makefile +++ head/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: head/security/rubygem-pyu-ruby-sasl/Makefile =================================================================== --- head/security/rubygem-pyu-ruby-sasl/Makefile +++ head/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 Index: head/security/rubygem-rack-oauth2/Makefile =================================================================== --- head/security/rubygem-rack-oauth2/Makefile +++ head/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 Index: head/security/rubygem-razorback-scriptNugget/Makefile =================================================================== --- head/security/rubygem-razorback-scriptNugget/Makefile +++ head/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 Index: head/security/rubygem-recog/Makefile =================================================================== --- head/security/rubygem-recog/Makefile +++ head/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: head/security/rubygem-roauth/Makefile =================================================================== --- head/security/rubygem-roauth/Makefile +++ head/security/rubygem-roauth/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-ruby-hmac/Makefile =================================================================== --- head/security/rubygem-ruby-hmac/Makefile +++ head/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 Index: head/security/rubygem-ruby-rc4/Makefile =================================================================== --- head/security/rubygem-ruby-rc4/Makefile +++ head/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 Index: head/security/rubygem-ruby-saml/Makefile =================================================================== --- head/security/rubygem-ruby-saml/Makefile +++ head/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 Index: head/security/rubygem-scrypt/Makefile =================================================================== --- head/security/rubygem-scrypt/Makefile +++ head/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: head/security/rubygem-six/Makefile =================================================================== --- head/security/rubygem-six/Makefile +++ head/security/rubygem-six/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-sshkey/Makefile =================================================================== --- head/security/rubygem-sshkey/Makefile +++ head/security/rubygem-sshkey/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-sshkit/Makefile =================================================================== --- head/security/rubygem-sshkit/Makefile +++ head/security/rubygem-sshkit/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/security/rubygem-twitter_oauth/Makefile =================================================================== --- head/security/rubygem-twitter_oauth/Makefile +++ head/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 Index: head/sysutils/puppet-lint/Makefile =================================================================== --- head/sysutils/puppet-lint/Makefile +++ head/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: head/sysutils/rhc/Makefile =================================================================== --- head/sysutils/rhc/Makefile +++ head/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: head/sysutils/rubygem-SyslogLogger/Makefile =================================================================== --- head/sysutils/rubygem-SyslogLogger/Makefile +++ head/sysutils/rubygem-SyslogLogger/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-backup/Makefile =================================================================== --- head/sysutils/rubygem-backup/Makefile +++ head/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: head/sysutils/rubygem-bosh-gen/Makefile =================================================================== --- head/sysutils/rubygem-bosh-gen/Makefile +++ head/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: head/sysutils/rubygem-bosh_cli/Makefile =================================================================== --- head/sysutils/rubygem-bosh_cli/Makefile +++ head/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: head/sysutils/rubygem-bundler/Makefile =================================================================== --- head/sysutils/rubygem-bundler/Makefile +++ head/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: head/sysutils/rubygem-bundler_ext/Makefile =================================================================== --- head/sysutils/rubygem-bundler_ext/Makefile +++ head/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 Index: head/sysutils/rubygem-capistrano-ext/Makefile =================================================================== --- head/sysutils/rubygem-capistrano-ext/Makefile +++ head/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 Index: head/sysutils/rubygem-capistrano/Makefile =================================================================== --- head/sysutils/rubygem-capistrano/Makefile +++ head/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: head/sysutils/rubygem-chef-api/Makefile =================================================================== --- head/sysutils/rubygem-chef-api/Makefile +++ head/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 Index: head/sysutils/rubygem-chef-zero/Makefile =================================================================== --- head/sysutils/rubygem-chef-zero/Makefile +++ head/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 Index: head/sysutils/rubygem-chef/Makefile =================================================================== --- head/sysutils/rubygem-chef/Makefile +++ head/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: head/sysutils/rubygem-facter/Makefile =================================================================== --- head/sysutils/rubygem-facter/Makefile +++ head/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: head/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile =================================================================== --- head/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile +++ head/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 Index: head/sysutils/rubygem-fluent-plugin-config-expander/Makefile =================================================================== --- head/sysutils/rubygem-fluent-plugin-config-expander/Makefile +++ head/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 Index: head/sysutils/rubygem-fluent-plugin-file-alternative/Makefile =================================================================== --- head/sysutils/rubygem-fluent-plugin-file-alternative/Makefile +++ head/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 Index: head/sysutils/rubygem-fluent-plugin-tail-asis/Makefile =================================================================== --- head/sysutils/rubygem-fluent-plugin-tail-asis/Makefile +++ head/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 Index: head/sysutils/rubygem-fluentd/Makefile =================================================================== --- head/sysutils/rubygem-fluentd/Makefile +++ head/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: head/sysutils/rubygem-fluentd010/Makefile =================================================================== --- head/sysutils/rubygem-fluentd010/Makefile +++ head/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: head/sysutils/rubygem-fssm/Makefile =================================================================== --- head/sysutils/rubygem-fssm/Makefile +++ head/sysutils/rubygem-fssm/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-god/Makefile =================================================================== --- head/sysutils/rubygem-god/Makefile +++ head/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: head/sysutils/rubygem-guard-compat/Makefile =================================================================== --- head/sysutils/rubygem-guard-compat/Makefile +++ head/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 Index: head/sysutils/rubygem-guard-livereload/Makefile =================================================================== --- head/sysutils/rubygem-guard-livereload/Makefile +++ head/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 Index: head/sysutils/rubygem-guard-minitest/Makefile =================================================================== --- head/sysutils/rubygem-guard-minitest/Makefile +++ head/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 Index: head/sysutils/rubygem-guard-rspec/Makefile =================================================================== --- head/sysutils/rubygem-guard-rspec/Makefile +++ head/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 Index: head/sysutils/rubygem-guard/Makefile =================================================================== --- head/sysutils/rubygem-guard/Makefile +++ head/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: head/sysutils/rubygem-hammer_cli/Makefile =================================================================== --- head/sysutils/rubygem-hammer_cli/Makefile +++ head/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: head/sysutils/rubygem-hammer_cli_foreman/Makefile =================================================================== --- head/sysutils/rubygem-hammer_cli_foreman/Makefile +++ head/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: head/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile =================================================================== --- head/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile +++ head/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: head/sysutils/rubygem-hammer_cli_foreman_salt/Makefile =================================================================== --- head/sysutils/rubygem-hammer_cli_foreman_salt/Makefile +++ head/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: head/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile =================================================================== --- head/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile +++ head/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: head/sysutils/rubygem-hiera-file/Makefile =================================================================== --- head/sysutils/rubygem-hiera-file/Makefile +++ head/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: head/sysutils/rubygem-hiera/Makefile =================================================================== --- head/sysutils/rubygem-hiera/Makefile +++ head/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: head/sysutils/rubygem-hiera1/Makefile =================================================================== --- head/sysutils/rubygem-hiera1/Makefile +++ head/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: head/sysutils/rubygem-hieracles/Makefile =================================================================== --- head/sysutils/rubygem-hieracles/Makefile +++ head/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: head/sysutils/rubygem-librarian-puppet/Makefile =================================================================== --- head/sysutils/rubygem-librarian-puppet/Makefile +++ head/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 Index: head/sysutils/rubygem-log4r/Makefile =================================================================== --- head/sysutils/rubygem-log4r/Makefile +++ head/sysutils/rubygem-log4r/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-logify/Makefile =================================================================== --- head/sysutils/rubygem-logify/Makefile +++ head/sysutils/rubygem-logify/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-mogilefs-client/Makefile =================================================================== --- head/sysutils/rubygem-mogilefs-client/Makefile +++ head/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: head/sysutils/rubygem-mothra/Makefile =================================================================== --- head/sysutils/rubygem-mothra/Makefile +++ head/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 Index: head/sysutils/rubygem-murder/Makefile =================================================================== --- head/sysutils/rubygem-murder/Makefile +++ head/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 Index: head/sysutils/rubygem-ohai/Makefile =================================================================== --- head/sysutils/rubygem-ohai/Makefile +++ head/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: head/sysutils/rubygem-parallel/Makefile =================================================================== --- head/sysutils/rubygem-parallel/Makefile +++ head/sysutils/rubygem-parallel/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-puppet_forge/Makefile =================================================================== --- head/sysutils/rubygem-puppet_forge/Makefile +++ head/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 Index: head/sysutils/rubygem-puppet_forge1/Makefile =================================================================== --- head/sysutils/rubygem-puppet_forge1/Makefile +++ head/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 Index: head/sysutils/rubygem-r10k/Makefile =================================================================== --- head/sysutils/rubygem-r10k/Makefile +++ head/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: head/sysutils/rubygem-rubyipmi/Makefile =================================================================== --- head/sysutils/rubygem-rubyipmi/Makefile +++ head/sysutils/rubygem-rubyipmi/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-shellany/Makefile =================================================================== --- head/sysutils/rubygem-shellany/Makefile +++ head/sysutils/rubygem-shellany/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-smart_proxy_chef/Makefile =================================================================== --- head/sysutils/rubygem-smart_proxy_chef/Makefile +++ head/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: head/sysutils/rubygem-smart_proxy_dynflow/Makefile =================================================================== --- head/sysutils/rubygem-smart_proxy_dynflow/Makefile +++ head/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: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile =================================================================== --- head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile +++ head/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: head/sysutils/rubygem-smart_proxy_salt/Makefile =================================================================== --- head/sysutils/rubygem-smart_proxy_salt/Makefile +++ head/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: head/sysutils/rubygem-sys-admin/Makefile =================================================================== --- head/sysutils/rubygem-sys-admin/Makefile +++ head/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 Index: head/sysutils/rubygem-sys-cpu/Makefile =================================================================== --- head/sysutils/rubygem-sys-cpu/Makefile +++ head/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 Index: head/sysutils/rubygem-sys-filesystem/Makefile =================================================================== --- head/sysutils/rubygem-sys-filesystem/Makefile +++ head/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 Index: head/sysutils/rubygem-sys-host/Makefile =================================================================== --- head/sysutils/rubygem-sys-host/Makefile +++ head/sysutils/rubygem-sys-host/Makefile @@ -12,7 +12,6 @@ LICENSE= ART20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/sysutils/rubygem-sys-proctable/Makefile =================================================================== --- head/sysutils/rubygem-sys-proctable/Makefile +++ head/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 Index: head/sysutils/rubygem-sys-uname/Makefile =================================================================== --- head/sysutils/rubygem-sys-uname/Makefile +++ head/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 Index: head/sysutils/rubygem-sys-uptime/Makefile =================================================================== --- head/sysutils/rubygem-sys-uptime/Makefile +++ head/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 Index: head/sysutils/rubygem-teamocil/Makefile =================================================================== --- head/sysutils/rubygem-teamocil/Makefile +++ head/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: head/sysutils/rubygem-winrm-fs/Makefile =================================================================== --- head/sysutils/rubygem-winrm-fs/Makefile +++ head/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: head/sysutils/rubygem-winrm/Makefile =================================================================== --- head/sysutils/rubygem-winrm/Makefile +++ head/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: head/sysutils/rubygem-yell/Makefile =================================================================== --- head/sysutils/rubygem-yell/Makefile +++ head/sysutils/rubygem-yell/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-actionpack-xml_parser/Makefile =================================================================== --- head/textproc/rubygem-actionpack-xml_parser/Makefile +++ head/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 Index: head/textproc/rubygem-albino/Makefile =================================================================== --- head/textproc/rubygem-albino/Makefile +++ head/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 Index: head/textproc/rubygem-amatch/Makefile =================================================================== --- head/textproc/rubygem-amatch/Makefile +++ head/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: head/textproc/rubygem-asciidoctor/Makefile =================================================================== --- head/textproc/rubygem-asciidoctor/Makefile +++ head/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: head/textproc/rubygem-autoprefixer-rails/Makefile =================================================================== --- head/textproc/rubygem-autoprefixer-rails/Makefile +++ head/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 Index: head/textproc/rubygem-babosa/Makefile =================================================================== --- head/textproc/rubygem-babosa/Makefile +++ head/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 Index: head/textproc/rubygem-charlock_holmes/Makefile =================================================================== --- head/textproc/rubygem-charlock_holmes/Makefile +++ head/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 Index: head/textproc/rubygem-coderay/Makefile =================================================================== --- head/textproc/rubygem-coderay/Makefile +++ head/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: head/textproc/rubygem-colorator/Makefile =================================================================== --- head/textproc/rubygem-colorator/Makefile +++ head/textproc/rubygem-colorator/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-colored/Makefile =================================================================== --- head/textproc/rubygem-colored/Makefile +++ head/textproc/rubygem-colored/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-compass-core/Makefile =================================================================== --- head/textproc/rubygem-compass-core/Makefile +++ head/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 Index: head/textproc/rubygem-compass-import-once/Makefile =================================================================== --- head/textproc/rubygem-compass-import-once/Makefile +++ head/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 Index: head/textproc/rubygem-compass-rails/Makefile =================================================================== --- head/textproc/rubygem-compass-rails/Makefile +++ head/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 Index: head/textproc/rubygem-compass/Makefile =================================================================== --- head/textproc/rubygem-compass/Makefile +++ head/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: head/textproc/rubygem-creole/Makefile =================================================================== --- head/textproc/rubygem-creole/Makefile +++ head/textproc/rubygem-creole/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-css_parser/Makefile =================================================================== --- head/textproc/rubygem-css_parser/Makefile +++ head/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 Index: head/textproc/rubygem-cssmin/Makefile =================================================================== --- head/textproc/rubygem-cssmin/Makefile +++ head/textproc/rubygem-cssmin/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-diff-lcs/Makefile =================================================================== --- head/textproc/rubygem-diff-lcs/Makefile +++ head/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: head/textproc/rubygem-diffy/Makefile =================================================================== --- head/textproc/rubygem-diffy/Makefile +++ head/textproc/rubygem-diffy/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-elasticsearch-api/Makefile =================================================================== --- head/textproc/rubygem-elasticsearch-api/Makefile +++ head/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 Index: head/textproc/rubygem-elasticsearch-transport/Makefile =================================================================== --- head/textproc/rubygem-elasticsearch-transport/Makefile +++ head/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 Index: head/textproc/rubygem-elasticsearch/Makefile =================================================================== --- head/textproc/rubygem-elasticsearch/Makefile +++ head/textproc/rubygem-elasticsearch/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-emot/Makefile =================================================================== --- head/textproc/rubygem-emot/Makefile +++ head/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: head/textproc/rubygem-escape_utils-rails4/Makefile =================================================================== --- head/textproc/rubygem-escape_utils-rails4/Makefile +++ head/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 Index: head/textproc/rubygem-escape_utils/Makefile =================================================================== --- head/textproc/rubygem-escape_utils/Makefile +++ head/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 Index: head/textproc/rubygem-ezamar/Makefile =================================================================== --- head/textproc/rubygem-ezamar/Makefile +++ head/textproc/rubygem-ezamar/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-fast_xs/Makefile =================================================================== --- head/textproc/rubygem-fast_xs/Makefile +++ head/textproc/rubygem-fast_xs/Makefile @@ -14,7 +14,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-fast_xs073/Makefile =================================================================== --- head/textproc/rubygem-fast_xs073/Makefile +++ head/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 Index: head/textproc/rubygem-ferret/Makefile =================================================================== --- head/textproc/rubygem-ferret/Makefile +++ head/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: head/textproc/rubygem-fog-xml/Makefile =================================================================== --- head/textproc/rubygem-fog-xml/Makefile +++ head/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 Index: head/textproc/rubygem-gemoji/Makefile =================================================================== --- head/textproc/rubygem-gemoji/Makefile +++ head/textproc/rubygem-gemoji/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-gherkin/Makefile =================================================================== --- head/textproc/rubygem-gherkin/Makefile +++ head/textproc/rubygem-gherkin/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-gherkin3/Makefile =================================================================== --- head/textproc/rubygem-gherkin3/Makefile +++ head/textproc/rubygem-gherkin3/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-github-linguist/Makefile =================================================================== --- head/textproc/rubygem-github-linguist/Makefile +++ head/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: head/textproc/rubygem-github-markdown/Makefile =================================================================== --- head/textproc/rubygem-github-markdown/Makefile +++ head/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 Index: head/textproc/rubygem-github-markup/Makefile =================================================================== --- head/textproc/rubygem-github-markup/Makefile +++ head/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: head/textproc/rubygem-gitlab-grit/Makefile =================================================================== --- head/textproc/rubygem-gitlab-grit/Makefile +++ head/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 Index: head/textproc/rubygem-gitlab-linguist/Makefile =================================================================== --- head/textproc/rubygem-gitlab-linguist/Makefile +++ head/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: head/textproc/rubygem-heredoc_unindent/Makefile =================================================================== --- head/textproc/rubygem-heredoc_unindent/Makefile +++ head/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 Index: head/textproc/rubygem-hikidoc/Makefile =================================================================== --- head/textproc/rubygem-hikidoc/Makefile +++ head/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: head/textproc/rubygem-html-pipeline-gitlab/Makefile =================================================================== --- head/textproc/rubygem-html-pipeline-gitlab/Makefile +++ head/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 Index: head/textproc/rubygem-html-pipeline/Makefile =================================================================== --- head/textproc/rubygem-html-pipeline/Makefile +++ head/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 Index: head/textproc/rubygem-html-pipeline1/Makefile =================================================================== --- head/textproc/rubygem-html-pipeline1/Makefile +++ head/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 Index: head/textproc/rubygem-htmlentities/Makefile =================================================================== --- head/textproc/rubygem-htmlentities/Makefile +++ head/textproc/rubygem-htmlentities/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-ini/Makefile =================================================================== --- head/textproc/rubygem-ini/Makefile +++ head/textproc/rubygem-ini/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-itextomml/Makefile =================================================================== --- head/textproc/rubygem-itextomml/Makefile +++ head/textproc/rubygem-itextomml/Makefile @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-jekyll-assets/Makefile =================================================================== --- head/textproc/rubygem-jekyll-assets/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-feed/Makefile =================================================================== --- head/textproc/rubygem-jekyll-feed/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-gist/Makefile =================================================================== --- head/textproc/rubygem-jekyll-gist/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-mentions/Makefile =================================================================== --- head/textproc/rubygem-jekyll-mentions/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-paginate/Makefile =================================================================== --- head/textproc/rubygem-jekyll-paginate/Makefile +++ head/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: head/textproc/rubygem-jekyll-redirect-from/Makefile =================================================================== --- head/textproc/rubygem-jekyll-redirect-from/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-sass-converter/Makefile =================================================================== --- head/textproc/rubygem-jekyll-sass-converter/Makefile +++ head/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 Index: head/textproc/rubygem-jekyll-sitemap/Makefile =================================================================== --- head/textproc/rubygem-jekyll-sitemap/Makefile +++ head/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 Index: head/textproc/rubygem-jemoji/Makefile =================================================================== --- head/textproc/rubygem-jemoji/Makefile +++ head/textproc/rubygem-jemoji/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-jsmin/Makefile =================================================================== --- head/textproc/rubygem-jsmin/Makefile +++ head/textproc/rubygem-jsmin/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-kramdown/Makefile =================================================================== --- head/textproc/rubygem-kramdown/Makefile +++ head/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: head/textproc/rubygem-kwalify/Makefile =================================================================== --- head/textproc/rubygem-kwalify/Makefile +++ head/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: head/textproc/rubygem-libxml-ruby/Makefile =================================================================== --- head/textproc/rubygem-libxml-ruby/Makefile +++ head/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 Index: head/textproc/rubygem-linguistics/Makefile =================================================================== --- head/textproc/rubygem-linguistics/Makefile +++ head/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: head/textproc/rubygem-liquid/Makefile =================================================================== --- head/textproc/rubygem-liquid/Makefile +++ head/textproc/rubygem-liquid/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-liquid2/Makefile =================================================================== --- head/textproc/rubygem-liquid2/Makefile +++ head/textproc/rubygem-liquid2/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-loggability/Makefile =================================================================== --- head/textproc/rubygem-loggability/Makefile +++ head/textproc/rubygem-loggability/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-loofah/Makefile =================================================================== --- head/textproc/rubygem-loofah/Makefile +++ head/textproc/rubygem-loofah/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-ltsv/Makefile =================================================================== --- head/textproc/rubygem-ltsv/Makefile +++ head/textproc/rubygem-ltsv/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-markaby/Makefile =================================================================== --- head/textproc/rubygem-markaby/Makefile +++ head/textproc/rubygem-markaby/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-multi_xml/Makefile =================================================================== --- head/textproc/rubygem-multi_xml/Makefile +++ head/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: head/textproc/rubygem-nokogiri-diff/Makefile =================================================================== --- head/textproc/rubygem-nokogiri-diff/Makefile +++ head/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 Index: head/textproc/rubygem-nokogiri/Makefile =================================================================== --- head/textproc/rubygem-nokogiri/Makefile +++ head/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: head/textproc/rubygem-nokogiri14/Makefile =================================================================== --- head/textproc/rubygem-nokogiri14/Makefile +++ head/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: head/textproc/rubygem-nokogumbo/Makefile =================================================================== --- head/textproc/rubygem-nokogumbo/Makefile +++ head/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 Index: head/textproc/rubygem-octopress-escape-code/Makefile =================================================================== --- head/textproc/rubygem-octopress-escape-code/Makefile +++ head/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 Index: head/textproc/rubygem-opml/Makefile =================================================================== --- head/textproc/rubygem-opml/Makefile +++ head/textproc/rubygem-opml/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-org-ruby/Makefile =================================================================== --- head/textproc/rubygem-org-ruby/Makefile +++ head/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: head/textproc/rubygem-parslet/Makefile =================================================================== --- head/textproc/rubygem-parslet/Makefile +++ head/textproc/rubygem-parslet/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-phone/Makefile =================================================================== --- head/textproc/rubygem-phone/Makefile +++ head/textproc/rubygem-phone/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-rails-dom-testing/Makefile =================================================================== --- head/textproc/rubygem-rails-dom-testing/Makefile +++ head/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 Index: head/textproc/rubygem-rails-html-sanitizer/Makefile =================================================================== --- head/textproc/rubygem-rails-html-sanitizer/Makefile +++ head/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 Index: head/textproc/rubygem-rak/Makefile =================================================================== --- head/textproc/rubygem-rak/Makefile +++ head/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: head/textproc/rubygem-rchardet/Makefile =================================================================== --- head/textproc/rubygem-rchardet/Makefile +++ head/textproc/rubygem-rchardet/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-rdiscount/Makefile =================================================================== --- head/textproc/rubygem-rdiscount/Makefile +++ head/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: head/textproc/rubygem-rdtool/Makefile =================================================================== --- head/textproc/rubygem-rdtool/Makefile +++ head/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: head/textproc/rubygem-redcarpet/Makefile =================================================================== --- head/textproc/rubygem-redcarpet/Makefile +++ head/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: head/textproc/rubygem-reverse_markdown/Makefile =================================================================== --- head/textproc/rubygem-reverse_markdown/Makefile +++ head/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 Index: head/textproc/rubygem-ri_cal/Makefile =================================================================== --- head/textproc/rubygem-ri_cal/Makefile +++ head/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: head/textproc/rubygem-rich/Makefile =================================================================== --- head/textproc/rubygem-rich/Makefile +++ head/textproc/rubygem-rich/Makefile @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-rmmseg-cpp/Makefile =================================================================== --- head/textproc/rubygem-rmmseg-cpp/Makefile +++ head/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: head/textproc/rubygem-rouge/Makefile =================================================================== --- head/textproc/rubygem-rouge/Makefile +++ head/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 Index: head/textproc/rubygem-rttool/Makefile =================================================================== --- head/textproc/rubygem-rttool/Makefile +++ head/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: head/textproc/rubygem-ruby-augeas/Makefile =================================================================== --- head/textproc/rubygem-ruby-augeas/Makefile +++ head/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 Index: head/textproc/rubygem-ruby-xslt/Makefile =================================================================== --- head/textproc/rubygem-ruby-xslt/Makefile +++ head/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 Index: head/textproc/rubygem-rubypants/Makefile =================================================================== --- head/textproc/rubygem-rubypants/Makefile +++ head/textproc/rubygem-rubypants/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-rugments/Makefile =================================================================== --- head/textproc/rubygem-rugments/Makefile +++ head/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: head/textproc/rubygem-sanitize/Makefile =================================================================== --- head/textproc/rubygem-sanitize/Makefile +++ head/textproc/rubygem-sanitize/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-sass-rails/Makefile =================================================================== --- head/textproc/rubygem-sass-rails/Makefile +++ head/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: head/textproc/rubygem-sass-rails4/Makefile =================================================================== --- head/textproc/rubygem-sass-rails4/Makefile +++ head/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 Index: head/textproc/rubygem-sass-rails5/Makefile =================================================================== --- head/textproc/rubygem-sass-rails5/Makefile +++ head/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 Index: head/textproc/rubygem-sass/Makefile =================================================================== --- head/textproc/rubygem-sass/Makefile +++ head/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: head/textproc/rubygem-sass32/Makefile =================================================================== --- head/textproc/rubygem-sass32/Makefile +++ head/textproc/rubygem-sass32/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-sax-machine/Makefile =================================================================== --- head/textproc/rubygem-sax-machine/Makefile +++ head/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 Index: head/textproc/rubygem-scss_lint/Makefile =================================================================== --- head/textproc/rubygem-scss_lint/Makefile +++ head/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: head/textproc/rubygem-shell2html/Makefile =================================================================== --- head/textproc/rubygem-shell2html/Makefile +++ head/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 Index: head/textproc/rubygem-simplecov-html/Makefile =================================================================== --- head/textproc/rubygem-simplecov-html/Makefile +++ head/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 Index: head/textproc/rubygem-spreadsheet/Makefile =================================================================== --- head/textproc/rubygem-spreadsheet/Makefile +++ head/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: head/textproc/rubygem-stamp/Makefile =================================================================== --- head/textproc/rubygem-stamp/Makefile +++ head/textproc/rubygem-stamp/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-string-scrub/Makefile =================================================================== --- head/textproc/rubygem-string-scrub/Makefile +++ head/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 Index: head/textproc/rubygem-syntax/Makefile =================================================================== --- head/textproc/rubygem-syntax/Makefile +++ head/textproc/rubygem-syntax/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-termcolor/Makefile =================================================================== --- head/textproc/rubygem-termcolor/Makefile +++ head/textproc/rubygem-termcolor/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-terminal-table/Makefile =================================================================== --- head/textproc/rubygem-terminal-table/Makefile +++ head/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 Index: head/textproc/rubygem-text/Makefile =================================================================== --- head/textproc/rubygem-text/Makefile +++ head/textproc/rubygem-text/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-tidy/Makefile =================================================================== --- head/textproc/rubygem-tidy/Makefile +++ head/textproc/rubygem-tidy/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-twitter-text/Makefile =================================================================== --- head/textproc/rubygem-twitter-text/Makefile +++ head/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 Index: head/textproc/rubygem-unf/Makefile =================================================================== --- head/textproc/rubygem-unf/Makefile +++ head/textproc/rubygem-unf/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-unf_ext/Makefile =================================================================== --- head/textproc/rubygem-unf_ext/Makefile +++ head/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 Index: head/textproc/rubygem-version_sorter/Makefile =================================================================== --- head/textproc/rubygem-version_sorter/Makefile +++ head/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 Index: head/textproc/rubygem-wikicloth/Makefile =================================================================== --- head/textproc/rubygem-wikicloth/Makefile +++ head/textproc/rubygem-wikicloth/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-xml-simple/Makefile =================================================================== --- head/textproc/rubygem-xml-simple/Makefile +++ head/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 Index: head/textproc/rubygem-ya2yaml/Makefile =================================================================== --- head/textproc/rubygem-ya2yaml/Makefile +++ head/textproc/rubygem-ya2yaml/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/textproc/rubygem-yard-chef/Makefile =================================================================== --- head/textproc/rubygem-yard-chef/Makefile +++ head/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 Index: head/textproc/rubygem-yard/Makefile =================================================================== --- head/textproc/rubygem-yard/Makefile +++ head/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: head/textproc/rubygem-zmq/Makefile =================================================================== --- head/textproc/rubygem-zmq/Makefile +++ head/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 Index: head/www/rubygem-ace-rails-ap/Makefile =================================================================== --- head/www/rubygem-ace-rails-ap/Makefile +++ head/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: head/www/rubygem-actionpack/Makefile =================================================================== --- head/www/rubygem-actionpack/Makefile +++ head/www/rubygem-actionpack/Makefile @@ -24,7 +24,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-actionpack4/Makefile =================================================================== --- head/www/rubygem-actionpack4/Makefile +++ head/www/rubygem-actionpack4/Makefile @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-activeresource/Makefile =================================================================== --- head/www/rubygem-activeresource/Makefile +++ head/www/rubygem-activeresource/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-activeresource4/Makefile =================================================================== --- head/www/rubygem-activeresource4/Makefile +++ head/www/rubygem-activeresource4/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-acts-as-taggable-on/Makefile =================================================================== --- head/www/rubygem-acts-as-taggable-on/Makefile +++ head/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: head/www/rubygem-acts-as-taggable-on3/Makefile =================================================================== --- head/www/rubygem-acts-as-taggable-on3/Makefile +++ head/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 Index: head/www/rubygem-acts_as_taggable/Makefile =================================================================== --- head/www/rubygem-acts_as_taggable/Makefile +++ head/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 Index: head/www/rubygem-addressable/Makefile =================================================================== --- head/www/rubygem-addressable/Makefile +++ head/www/rubygem-addressable/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-akami/Makefile =================================================================== --- head/www/rubygem-akami/Makefile +++ head/www/rubygem-akami/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-amazon-ecs/Makefile =================================================================== --- head/www/rubygem-amazon-ecs/Makefile +++ head/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 Index: head/www/rubygem-anemone/Makefile =================================================================== --- head/www/rubygem-anemone/Makefile +++ head/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: head/www/rubygem-asana/Makefile =================================================================== --- head/www/rubygem-asana/Makefile +++ head/www/rubygem-asana/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-async_sinatra/Makefile =================================================================== --- head/www/rubygem-async_sinatra/Makefile +++ head/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 Index: head/www/rubygem-bluecloth/Makefile =================================================================== --- head/www/rubygem-bluecloth/Makefile +++ head/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: head/www/rubygem-bootstrap-sass/Makefile =================================================================== --- head/www/rubygem-bootstrap-sass/Makefile +++ head/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 Index: head/www/rubygem-browser/Makefile =================================================================== --- head/www/rubygem-browser/Makefile +++ head/www/rubygem-browser/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-cal-heatmap-rails-rails4/Makefile =================================================================== --- head/www/rubygem-cal-heatmap-rails-rails4/Makefile +++ head/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 Index: head/www/rubygem-cal-heatmap-rails/Makefile =================================================================== --- head/www/rubygem-cal-heatmap-rails/Makefile +++ head/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 Index: head/www/rubygem-carrierwave/Makefile =================================================================== --- head/www/rubygem-carrierwave/Makefile +++ head/www/rubygem-carrierwave/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-cgi_multipart_eof_fix/Makefile =================================================================== --- head/www/rubygem-cgi_multipart_eof_fix/Makefile +++ head/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 Index: head/www/rubygem-chosen-rails/Makefile =================================================================== --- head/www/rubygem-chosen-rails/Makefile +++ head/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 Index: head/www/rubygem-cookiejar/Makefile =================================================================== --- head/www/rubygem-cookiejar/Makefile +++ head/www/rubygem-cookiejar/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-crass/Makefile =================================================================== --- head/www/rubygem-crass/Makefile +++ head/www/rubygem-crass/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-cuba/Makefile =================================================================== --- head/www/rubygem-cuba/Makefile +++ head/www/rubygem-cuba/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-d3_rails-rails4/Makefile =================================================================== --- head/www/rubygem-d3_rails-rails4/Makefile +++ head/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 Index: head/www/rubygem-d3_rails/Makefile =================================================================== --- head/www/rubygem-d3_rails/Makefile +++ head/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 Index: head/www/rubygem-dashing/Makefile =================================================================== --- head/www/rubygem-dashing/Makefile +++ head/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: head/www/rubygem-davclient/Makefile =================================================================== --- head/www/rubygem-davclient/Makefile +++ head/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: head/www/rubygem-domainatrix/Makefile =================================================================== --- head/www/rubygem-domainatrix/Makefile +++ head/www/rubygem-domainatrix/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-dropzonejs-rails/Makefile =================================================================== --- head/www/rubygem-dropzonejs-rails/Makefile +++ head/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 Index: head/www/rubygem-em-http-request/Makefile =================================================================== --- head/www/rubygem-em-http-request/Makefile +++ head/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 Index: head/www/rubygem-em-socksify/Makefile =================================================================== --- head/www/rubygem-em-socksify/Makefile +++ head/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 Index: head/www/rubygem-em-twitter/Makefile =================================================================== --- head/www/rubygem-em-twitter/Makefile +++ head/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 Index: head/www/rubygem-em-websocket/Makefile =================================================================== --- head/www/rubygem-em-websocket/Makefile +++ head/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 Index: head/www/rubygem-emk-sinatra-url-for/Makefile =================================================================== --- head/www/rubygem-emk-sinatra-url-for/Makefile +++ head/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 Index: head/www/rubygem-erubis/Makefile =================================================================== --- head/www/rubygem-erubis/Makefile +++ head/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: head/www/rubygem-ethon/Makefile =================================================================== --- head/www/rubygem-ethon/Makefile +++ head/www/rubygem-ethon/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-eventmachine_httpserver/Makefile =================================================================== --- head/www/rubygem-eventmachine_httpserver/Makefile +++ head/www/rubygem-eventmachine_httpserver/Makefile @@ -12,7 +12,6 @@ LICENSE= GPLv2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-faraday/Makefile =================================================================== --- head/www/rubygem-faraday/Makefile +++ head/www/rubygem-faraday/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-faraday_middleware/Makefile =================================================================== --- head/www/rubygem-faraday_middleware/Makefile +++ head/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 Index: head/www/rubygem-fcgi/Makefile =================================================================== --- head/www/rubygem-fcgi/Makefile +++ head/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 Index: head/www/rubygem-feed-normalizer/Makefile =================================================================== --- head/www/rubygem-feed-normalizer/Makefile +++ head/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 Index: head/www/rubygem-feedjira/Makefile =================================================================== --- head/www/rubygem-feedjira/Makefile +++ head/www/rubygem-feedjira/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-flowdock/Makefile =================================================================== --- head/www/rubygem-flowdock/Makefile +++ head/www/rubygem-flowdock/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-geminabox/Makefile =================================================================== --- head/www/rubygem-geminabox/Makefile +++ head/www/rubygem-geminabox/Makefile @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-gitlab-flowdock-git-hook/Makefile =================================================================== --- head/www/rubygem-gitlab-flowdock-git-hook/Makefile +++ head/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 Index: head/www/rubygem-gitlab-gollum-lib/Makefile =================================================================== --- head/www/rubygem-gitlab-gollum-lib/Makefile +++ head/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 Index: head/www/rubygem-gitlab-grack/Makefile =================================================================== --- head/www/rubygem-gitlab-grack/Makefile +++ head/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 Index: head/www/rubygem-gollum-grit_adapter/Makefile =================================================================== --- head/www/rubygem-gollum-grit_adapter/Makefile +++ head/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 Index: head/www/rubygem-gollum-lib/Makefile =================================================================== --- head/www/rubygem-gollum-lib/Makefile +++ head/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 Index: head/www/rubygem-gollum-rugged_adapter/Makefile =================================================================== --- head/www/rubygem-gollum-rugged_adapter/Makefile +++ head/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 Index: head/www/rubygem-gon-rails4/Makefile =================================================================== --- head/www/rubygem-gon-rails4/Makefile +++ head/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 Index: head/www/rubygem-gon/Makefile =================================================================== --- head/www/rubygem-gon/Makefile +++ head/www/rubygem-gon/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-hackpad-cli/Makefile =================================================================== --- head/www/rubygem-hackpad-cli/Makefile +++ head/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 Index: head/www/rubygem-haml-coderay/Makefile =================================================================== --- head/www/rubygem-haml-coderay/Makefile +++ head/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 Index: head/www/rubygem-haml-contrib/Makefile =================================================================== --- head/www/rubygem-haml-contrib/Makefile +++ head/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 Index: head/www/rubygem-haml-rails-rails4/Makefile =================================================================== --- head/www/rubygem-haml-rails-rails4/Makefile +++ head/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 Index: head/www/rubygem-haml-rails/Makefile =================================================================== --- head/www/rubygem-haml-rails/Makefile +++ head/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 Index: head/www/rubygem-haml/Makefile =================================================================== --- head/www/rubygem-haml/Makefile +++ head/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: head/www/rubygem-hashicorp-checkpoint/Makefile =================================================================== --- head/www/rubygem-hashicorp-checkpoint/Makefile +++ head/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 Index: head/www/rubygem-heroku-api/Makefile =================================================================== --- head/www/rubygem-heroku-api/Makefile +++ head/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 Index: head/www/rubygem-heroku-nav/Makefile =================================================================== --- head/www/rubygem-heroku-nav/Makefile +++ head/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: head/www/rubygem-heroku/Makefile =================================================================== --- head/www/rubygem-heroku/Makefile +++ head/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: head/www/rubygem-hpricot/Makefile =================================================================== --- head/www/rubygem-hpricot/Makefile +++ head/www/rubygem-hpricot/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-html2haml/Makefile =================================================================== --- head/www/rubygem-html2haml/Makefile +++ head/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 Index: head/www/rubygem-http-cookie/Makefile =================================================================== --- head/www/rubygem-http-cookie/Makefile +++ head/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 Index: head/www/rubygem-http-form_data/Makefile =================================================================== --- head/www/rubygem-http-form_data/Makefile +++ head/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 Index: head/www/rubygem-http/Makefile =================================================================== --- head/www/rubygem-http/Makefile +++ head/www/rubygem-http/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-http_router/Makefile =================================================================== --- head/www/rubygem-http_router/Makefile +++ head/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 Index: head/www/rubygem-httparty/Makefile =================================================================== --- head/www/rubygem-httparty/Makefile +++ head/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: head/www/rubygem-httpclient/Makefile =================================================================== --- head/www/rubygem-httpclient/Makefile +++ head/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: head/www/rubygem-httpi/Makefile =================================================================== --- head/www/rubygem-httpi/Makefile +++ head/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: head/www/rubygem-innate/Makefile =================================================================== --- head/www/rubygem-innate/Makefile +++ head/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 Index: head/www/rubygem-jekyll-watch/Makefile =================================================================== --- head/www/rubygem-jekyll-watch/Makefile +++ head/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 Index: head/www/rubygem-jekyll/Makefile =================================================================== --- head/www/rubygem-jekyll/Makefile +++ head/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: head/www/rubygem-jekyll2/Makefile =================================================================== --- head/www/rubygem-jekyll2/Makefile +++ head/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: head/www/rubygem-journey/Makefile =================================================================== --- head/www/rubygem-journey/Makefile +++ head/www/rubygem-journey/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-jquery-atwho-rails-rails4/Makefile =================================================================== --- head/www/rubygem-jquery-atwho-rails-rails4/Makefile +++ head/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 Index: head/www/rubygem-jquery-atwho-rails/Makefile =================================================================== --- head/www/rubygem-jquery-atwho-rails/Makefile +++ head/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 Index: head/www/rubygem-jquery-rails/Makefile =================================================================== --- head/www/rubygem-jquery-rails/Makefile +++ head/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 Index: head/www/rubygem-jquery-rails4/Makefile =================================================================== --- head/www/rubygem-jquery-rails4/Makefile +++ head/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 Index: head/www/rubygem-jquery-scrollto-rails/Makefile =================================================================== --- head/www/rubygem-jquery-scrollto-rails/Makefile +++ head/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 Index: head/www/rubygem-jquery-turbolinks/Makefile =================================================================== --- head/www/rubygem-jquery-turbolinks/Makefile +++ head/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 Index: head/www/rubygem-jquery-ui-rails-rails4/Makefile =================================================================== --- head/www/rubygem-jquery-ui-rails-rails4/Makefile +++ head/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 Index: head/www/rubygem-jquery-ui-rails/Makefile =================================================================== --- head/www/rubygem-jquery-ui-rails/Makefile +++ head/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 Index: head/www/rubygem-jruby-rack/Makefile =================================================================== --- head/www/rubygem-jruby-rack/Makefile +++ head/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 Index: head/www/rubygem-jsobfu/Makefile =================================================================== --- head/www/rubygem-jsobfu/Makefile +++ head/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 Index: head/www/rubygem-jwt/Makefile =================================================================== --- head/www/rubygem-jwt/Makefile +++ head/www/rubygem-jwt/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-kaminari-rails4/Makefile =================================================================== --- head/www/rubygem-kaminari-rails4/Makefile +++ head/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 Index: head/www/rubygem-kaminari/Makefile =================================================================== --- head/www/rubygem-kaminari/Makefile +++ head/www/rubygem-kaminari/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-kensa/Makefile =================================================================== --- head/www/rubygem-kensa/Makefile +++ head/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: head/www/rubygem-layout_yullio_generator/Makefile =================================================================== --- head/www/rubygem-layout_yullio_generator/Makefile +++ head/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 Index: head/www/rubygem-less/Makefile =================================================================== --- head/www/rubygem-less/Makefile +++ head/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: head/www/rubygem-lighthouse-api/Makefile =================================================================== --- head/www/rubygem-lighthouse-api/Makefile +++ head/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 Index: head/www/rubygem-maruku/Makefile =================================================================== --- head/www/rubygem-maruku/Makefile +++ head/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: head/www/rubygem-mechanize/Makefile =================================================================== --- head/www/rubygem-mechanize/Makefile +++ head/www/rubygem-mechanize/Makefile @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-mechanize26/Makefile =================================================================== --- head/www/rubygem-mechanize26/Makefile +++ head/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: head/www/rubygem-merb-assets/Makefile =================================================================== --- head/www/rubygem-merb-assets/Makefile +++ head/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 Index: head/www/rubygem-merb-core/Makefile =================================================================== --- head/www/rubygem-merb-core/Makefile +++ head/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: head/www/rubygem-merb-haml/Makefile =================================================================== --- head/www/rubygem-merb-haml/Makefile +++ head/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 Index: head/www/rubygem-merb-helpers/Makefile =================================================================== --- head/www/rubygem-merb-helpers/Makefile +++ head/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 Index: head/www/rubygem-merb-param-protection/Makefile =================================================================== --- head/www/rubygem-merb-param-protection/Makefile +++ head/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 Index: head/www/rubygem-mousetrap-rails/Makefile =================================================================== --- head/www/rubygem-mousetrap-rails/Makefile +++ head/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 Index: head/www/rubygem-multipart-post/Makefile =================================================================== --- head/www/rubygem-multipart-post/Makefile +++ head/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 Index: head/www/rubygem-nanoc/Makefile =================================================================== --- head/www/rubygem-nanoc/Makefile +++ head/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: head/www/rubygem-nested_form/Makefile =================================================================== --- head/www/rubygem-nested_form/Makefile +++ head/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 Index: head/www/rubygem-net-http-digest_auth/Makefile =================================================================== --- head/www/rubygem-net-http-digest_auth/Makefile +++ head/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 Index: head/www/rubygem-net-http-digest_auth11/Makefile =================================================================== --- head/www/rubygem-net-http-digest_auth11/Makefile +++ head/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: head/www/rubygem-net-http-persistent/Makefile =================================================================== --- head/www/rubygem-net-http-persistent/Makefile +++ head/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 Index: head/www/rubygem-net-http-persistent25/Makefile =================================================================== --- head/www/rubygem-net-http-persistent25/Makefile +++ head/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: head/www/rubygem-net-http-pipeline/Makefile =================================================================== --- head/www/rubygem-net-http-pipeline/Makefile +++ head/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 Index: head/www/rubygem-nicovideo/Makefile =================================================================== --- head/www/rubygem-nicovideo/Makefile +++ head/www/rubygem-nicovideo/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-ntlm-http/Makefile =================================================================== --- head/www/rubygem-ntlm-http/Makefile +++ head/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 Index: head/www/rubygem-octopress/Makefile =================================================================== --- head/www/rubygem-octopress/Makefile +++ head/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: head/www/rubygem-pagerduty/Makefile =================================================================== --- head/www/rubygem-pagerduty/Makefile +++ head/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 Index: head/www/rubygem-passenger/Makefile =================================================================== --- head/www/rubygem-passenger/Makefile +++ head/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 NOPORTDOCS= yes .include Index: head/www/rubygem-puma/Makefile =================================================================== --- head/www/rubygem-puma/Makefile +++ head/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: head/www/rubygem-pusher-client/Makefile =================================================================== --- head/www/rubygem-pusher-client/Makefile +++ head/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 Index: head/www/rubygem-rabbirack/Makefile =================================================================== --- head/www/rubygem-rabbirack/Makefile +++ head/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 Index: head/www/rubygem-rack-accept/Makefile =================================================================== --- head/www/rubygem-rack-accept/Makefile +++ head/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 Index: head/www/rubygem-rack-attack/Makefile =================================================================== --- head/www/rubygem-rack-attack/Makefile +++ head/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 Index: head/www/rubygem-rack-cache/Makefile =================================================================== --- head/www/rubygem-rack-cache/Makefile +++ head/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 Index: head/www/rubygem-rack-contrib/Makefile =================================================================== --- head/www/rubygem-rack-contrib/Makefile +++ head/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 Index: head/www/rubygem-rack-cors/Makefile =================================================================== --- head/www/rubygem-rack-cors/Makefile +++ head/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 Index: head/www/rubygem-rack-mount/Makefile =================================================================== --- head/www/rubygem-rack-mount/Makefile +++ head/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 Index: head/www/rubygem-rack-openid/Makefile =================================================================== --- head/www/rubygem-rack-openid/Makefile +++ head/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 Index: head/www/rubygem-rack-protection/Makefile =================================================================== --- head/www/rubygem-rack-protection/Makefile +++ head/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 Index: head/www/rubygem-rack-ssl/Makefile =================================================================== --- head/www/rubygem-rack-ssl/Makefile +++ head/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 Index: head/www/rubygem-rack-test/Makefile =================================================================== --- head/www/rubygem-rack-test/Makefile +++ head/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 Index: head/www/rubygem-rack/Makefile =================================================================== --- head/www/rubygem-rack/Makefile +++ head/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: head/www/rubygem-rack15/Makefile =================================================================== --- head/www/rubygem-rack15/Makefile +++ head/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: head/www/rubygem-rack16/Makefile =================================================================== --- head/www/rubygem-rack16/Makefile +++ head/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: head/www/rubygem-rails/Makefile =================================================================== --- head/www/rubygem-rails/Makefile +++ head/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: head/www/rubygem-rails4/Makefile =================================================================== --- head/www/rubygem-rails4/Makefile +++ head/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: head/www/rubygem-rails_autolink/Makefile =================================================================== --- head/www/rubygem-rails_autolink/Makefile +++ head/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 Index: head/www/rubygem-railties/Makefile =================================================================== --- head/www/rubygem-railties/Makefile +++ head/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: head/www/rubygem-railties4/Makefile =================================================================== --- head/www/rubygem-railties4/Makefile +++ head/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: head/www/rubygem-raindrops/Makefile =================================================================== --- head/www/rubygem-raindrops/Makefile +++ head/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: head/www/rubygem-ramaze/Makefile =================================================================== --- head/www/rubygem-ramaze/Makefile +++ head/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: head/www/rubygem-raphael-rails/Makefile =================================================================== --- head/www/rubygem-raphael-rails/Makefile +++ head/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 Index: head/www/rubygem-redcloth/Makefile =================================================================== --- head/www/rubygem-redcloth/Makefile +++ head/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: head/www/rubygem-redis-rack/Makefile =================================================================== --- head/www/rubygem-redis-rack/Makefile +++ head/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 Index: head/www/rubygem-redis-rails/Makefile =================================================================== --- head/www/rubygem-redis-rails/Makefile +++ head/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 Index: head/www/rubygem-redmine_acts_as_taggable_on/Makefile =================================================================== --- head/www/rubygem-redmine_acts_as_taggable_on/Makefile +++ head/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 Index: head/www/rubygem-responders-rails3/Makefile =================================================================== --- head/www/rubygem-responders-rails3/Makefile +++ head/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 Index: head/www/rubygem-responders/Makefile =================================================================== --- head/www/rubygem-responders/Makefile +++ head/www/rubygem-responders/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-rest-client/Makefile =================================================================== --- head/www/rubygem-rest-client/Makefile +++ head/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 Index: head/www/rubygem-rfacebook/Makefile =================================================================== --- head/www/rubygem-rfacebook/Makefile +++ head/www/rubygem-rfacebook/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-rfeedfinder/Makefile =================================================================== --- head/www/rubygem-rfeedfinder/Makefile +++ head/www/rubygem-rfeedfinder/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-rinku/Makefile =================================================================== --- head/www/rubygem-rinku/Makefile +++ head/www/rubygem-rinku/Makefile @@ -12,7 +12,6 @@ LICENSE= ISCL USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-rkelly-remix/Makefile =================================================================== --- head/www/rubygem-rkelly-remix/Makefile +++ head/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 Index: head/www/rubygem-robotex/Makefile =================================================================== --- head/www/rubygem-robotex/Makefile +++ head/www/rubygem-robotex/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-robots/Makefile =================================================================== --- head/www/rubygem-robots/Makefile +++ head/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: head/www/rubygem-rqrcode-rails3/Makefile =================================================================== --- head/www/rubygem-rqrcode-rails3/Makefile +++ head/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 Index: head/www/rubygem-rqrcode/Makefile =================================================================== --- head/www/rubygem-rqrcode/Makefile +++ head/www/rubygem-rqrcode/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-rtlit/Makefile =================================================================== --- head/www/rubygem-rtlit/Makefile +++ head/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: head/www/rubygem-ruby-readability/Makefile =================================================================== --- head/www/rubygem-ruby-readability/Makefile +++ head/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: head/www/rubygem-savon/Makefile =================================================================== --- head/www/rubygem-savon/Makefile +++ head/www/rubygem-savon/Makefile @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-sawyer/Makefile =================================================================== --- head/www/rubygem-sawyer/Makefile +++ head/www/rubygem-sawyer/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-scrapi/Makefile =================================================================== --- head/www/rubygem-scrapi/Makefile +++ head/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 Index: head/www/rubygem-select2-rails/Makefile =================================================================== --- head/www/rubygem-select2-rails/Makefile +++ head/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 Index: head/www/rubygem-selenium-webdriver/Makefile =================================================================== --- head/www/rubygem-selenium-webdriver/Makefile +++ head/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 Index: head/www/rubygem-semantic-ui-sass/Makefile =================================================================== --- head/www/rubygem-semantic-ui-sass/Makefile +++ head/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 Index: head/www/rubygem-simple-rss/Makefile =================================================================== --- head/www/rubygem-simple-rss/Makefile +++ head/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 Index: head/www/rubygem-sinatra-contrib/Makefile =================================================================== --- head/www/rubygem-sinatra-contrib/Makefile +++ head/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 Index: head/www/rubygem-sinatra-r18n/Makefile =================================================================== --- head/www/rubygem-sinatra-r18n/Makefile +++ head/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 Index: head/www/rubygem-sinatra-respond_to/Makefile =================================================================== --- head/www/rubygem-sinatra-respond_to/Makefile +++ head/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 Index: head/www/rubygem-sinatra/Makefile =================================================================== --- head/www/rubygem-sinatra/Makefile +++ head/www/rubygem-sinatra/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-task_list/Makefile =================================================================== --- head/www/rubygem-task_list/Makefile +++ head/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 Index: head/www/rubygem-thin/Makefile =================================================================== --- head/www/rubygem-thin/Makefile +++ head/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: head/www/rubygem-tinyatom/Makefile =================================================================== --- head/www/rubygem-tinyatom/Makefile +++ head/www/rubygem-tinyatom/Makefile @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-tinymce-rails/Makefile =================================================================== --- head/www/rubygem-tinymce-rails/Makefile +++ head/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 Index: head/www/rubygem-totoridipjp/Makefile =================================================================== --- head/www/rubygem-totoridipjp/Makefile +++ head/www/rubygem-totoridipjp/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-tumblr_client/Makefile =================================================================== --- head/www/rubygem-tumblr_client/Makefile +++ head/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: head/www/rubygem-turbolinks/Makefile =================================================================== --- head/www/rubygem-turbolinks/Makefile +++ head/www/rubygem-turbolinks/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-typhoeus/Makefile =================================================================== --- head/www/rubygem-typhoeus/Makefile +++ head/www/rubygem-typhoeus/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-uglifier/Makefile =================================================================== --- head/www/rubygem-uglifier/Makefile +++ head/www/rubygem-uglifier/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-underscore-rails/Makefile =================================================================== --- head/www/rubygem-underscore-rails/Makefile +++ head/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 Index: head/www/rubygem-unicorn-worker-killer/Makefile =================================================================== --- head/www/rubygem-unicorn-worker-killer/Makefile +++ head/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 Index: head/www/rubygem-unicorn/Makefile =================================================================== --- head/www/rubygem-unicorn/Makefile +++ head/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: head/www/rubygem-url-mount/Makefile =================================================================== --- head/www/rubygem-url-mount/Makefile +++ head/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 Index: head/www/rubygem-url_escape/Makefile =================================================================== --- head/www/rubygem-url_escape/Makefile +++ head/www/rubygem-url_escape/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-wasabi/Makefile =================================================================== --- head/www/rubygem-wasabi/Makefile +++ head/www/rubygem-wasabi/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-webkit-gtk/Makefile =================================================================== --- head/www/rubygem-webkit-gtk/Makefile +++ head/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 Index: head/www/rubygem-webkit-gtk2/Makefile =================================================================== --- head/www/rubygem-webkit-gtk2/Makefile +++ head/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 Index: head/www/rubygem-webmock/Makefile =================================================================== --- head/www/rubygem-webmock/Makefile +++ head/www/rubygem-webmock/Makefile @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-webrobots/Makefile =================================================================== --- head/www/rubygem-webrobots/Makefile +++ head/www/rubygem-webrobots/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-websocket/Makefile =================================================================== --- head/www/rubygem-websocket/Makefile +++ head/www/rubygem-websocket/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: head/www/rubygem-yapra/Makefile =================================================================== --- head/www/rubygem-yapra/Makefile +++ head/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: head/x11-toolkits/rubygem-gdk3/Makefile =================================================================== --- head/x11-toolkits/rubygem-gdk3/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-gtk2/Makefile =================================================================== --- head/x11-toolkits/rubygem-gtk2/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-gtk3/Makefile =================================================================== --- head/x11-toolkits/rubygem-gtk3/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-gtksourceview2/Makefile =================================================================== --- head/x11-toolkits/rubygem-gtksourceview2/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-gtksourceview3/Makefile =================================================================== --- head/x11-toolkits/rubygem-gtksourceview3/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-pango/Makefile =================================================================== --- head/x11-toolkits/rubygem-pango/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-poppler/Makefile =================================================================== --- head/x11-toolkits/rubygem-poppler/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-vte/Makefile =================================================================== --- head/x11-toolkits/rubygem-vte/Makefile +++ head/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 Index: head/x11-toolkits/rubygem-vte3/Makefile =================================================================== --- head/x11-toolkits/rubygem-vte3/Makefile +++ head/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