Index: Mk/Uses/gem.mk =================================================================== --- Mk/Uses/gem.mk (nonexistent) +++ Mk/Uses/gem.mk (working copy) @@ -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 Property changes on: Mk/Uses/gem.mk ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: Mk/bsd.ruby.mk =================================================================== --- Mk/bsd.ruby.mk (revision 414025) +++ Mk/bsd.ruby.mk (working copy) @@ -57,11 +57,8 @@ # documents from. If this is defined and not empty, # USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is # defined. -# USE_RUBYGEMS - Says that the port uses rubygems packaging system. -# RUBYGEM_AUTOPLIST - Generate packing list for rubygems based port -# automatically. +# USE_RUBYGEMS - Do not use this -- instead USES=gem # -# # [variables that each port should not (re)define] # # RUBY_PKGNAMEPREFIX - Common PKGNAMEPREFIX for ruby ports @@ -264,24 +261,6 @@ .if !defined(_INVALID_RUBY_VER) -.if defined(LANG) && !empty(LANG) -GEM_ENV+= LANG=${LANG} -.else -GEM_ENV+= LANG=en_US.UTF-8 -.endif - -.if defined(LC_ALL) && !empty(LC_ALL) -GEM_ENV+= LC_ALL=${LC_ALL} -.else -GEM_ENV+= LC_ALL=en_US.UTF-8 -.endif - -.if defined(LC_CTYPE) && !empty(LC_CTYPE) -GEM_ENV+= LC_CTYPE=${LC_CTYPE} -.else -GEM_ENV+= LC_CTYPE=UTF-8 -.endif - RUBY_DEFAULT_SUFFIX?= ${RUBY_DEFAULT_VER:S/.//} RUBY_DISTVERSION?= ${RUBY_VERSION} @@ -424,122 +403,6 @@ .endif # -# RubyGems support -# -.if defined(USE_RUBYGEMS) - -BUILD_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems -RUN_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems - -PKGNAMEPREFIX?= rubygem- -EXTRACT_SUFX= .gem -EXTRACT_ONLY= -DIST_SUBDIR= rubygem - -EXTRACT_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems -GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} -GEMS_DIR= ${GEMS_BASE_DIR}/gems -DOC_DIR= ${GEMS_BASE_DIR}/doc -CACHE_DIR= ${GEMS_BASE_DIR}/cache -SPEC_DIR= ${GEMS_BASE_DIR}/specifications -EXT_DIR= ${GEMS_BASE_DIR}/extensions -GEM_NAME?= ${PORTNAME}-${PORTVERSION} -GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME} -GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME} -GEM_SPEC?= ${SPEC_DIR}/${GEM_NAME}.gemspec -GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem - -PLIST_SUB+= PORTVERSION="${PORTVERSION}" \ - REV="${RUBY_GEM}" \ - GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \ - GEMS_DIR="${GEMS_DIR}" \ - DOC_DIR="${DOC_DIR}" \ - CACHE_DIR="${CACHE_DIR}" \ - SPEC_DIR="${SPEC_DIR}" \ - EXT_DIR="${EXT_DIR}" \ - PORT="${PORTNAME}-${PORTVERSION}" \ - GEM_NAME="${GEM_NAME}" \ - GEM_LIB_DIR="${GEM_LIB_DIR}" \ - GEM_DOC_DIR="${GEM_DOC_DIR}" \ - GEM_SPEC="${GEM_SPEC}" \ - GEM_CACHE="${GEM_CACHE}" \ - EXTRACT_SUFX="${EXTRACT_SUFX}" - -RUBYGEMBIN= ${LOCALBASE}/bin/gem${RUBY_VER:S/.//} - -. if defined(DISTFILES) -GEMFILES= ${DISTFILES:C/:[^:]+$//} -. else -GEMFILES= ${DISTNAME}${EXTRACT_SUFX} -. endif - -GEMSPEC= ${PORTNAME}.gemspec - -RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin -GEM_ENV+= RB_USER_INSTALL=yes -.if defined(NOPORTDOCS) -RUBYGEM_ARGS+= --no-rdoc --no-ri -.else -RUBYGEM_ARGS+= --rdoc --ri -.endif - -.if !target(do-extract) -do-extract: - @${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} - @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \ - if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ - ${ECHO_MSG} "===> Extraction failed unexpectedly."; \ - (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ - fi; \ - ${FALSE}; \ - fi) -.endif - -.if !target(do-build) -do-build: - @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \ - if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ - ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ - (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ - fi; \ - ${FALSE}; \ - fi) -.endif - -.if !target(do-install) -do-install: - (cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS}) - ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/ - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} + - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete - ${RM} -rf ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext \ - ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE} - ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE} -.if defined(NOPORTDOCS) - -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR} -.endif -.endif - -. if defined(RUBYGEM_AUTOPLIST) -. if !target(post-install-script) -post-install-script: - @${ECHO} ${GEM_SPEC} >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} -.endif - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} - @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \ - ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \ - fi -. endif -. endif - -.endif # USE_RUBYGEMS - -# # extconf.rb support # .if defined(USE_RUBY_EXTCONF) Index: accessibility/rubygem-atk/Makefile =================================================================== --- accessibility/rubygem-atk/Makefile (revision 414025) +++ accessibility/rubygem-atk/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= atk USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: archivers/rubygem-archive-tar-minitar/Makefile =================================================================== --- archivers/rubygem-archive-tar-minitar/Makefile (revision 414025) +++ archivers/rubygem-archive-tar-minitar/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/minitar Index: archivers/rubygem-archive-zip/Makefile =================================================================== --- archivers/rubygem-archive-zip/Makefile (revision 414025) +++ archivers/rubygem-archive-zip/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: archivers/rubygem-bzip2-ruby/Makefile =================================================================== --- archivers/rubygem-bzip2-ruby/Makefile (revision 414025) +++ archivers/rubygem-bzip2-ruby/Makefile (working copy) @@ -14,7 +14,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: archivers/rubygem-libarchive/Makefile =================================================================== --- archivers/rubygem-libarchive/Makefile (revision 414025) +++ archivers/rubygem-libarchive/Makefile (working copy) @@ -12,10 +12,8 @@ LICENSE= BSD3CLAUSE -USES= dos2unix libarchive USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= dos2unix gem:autoplist libarchive DOS2UNIX_FILES= ext/depend Index: archivers/rubygem-minitar/Makefile =================================================================== --- archivers/rubygem-minitar/Makefile (revision 414025) +++ archivers/rubygem-minitar/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/minitar Index: archivers/rubygem-ruby-xz/Makefile =================================================================== --- archivers/rubygem-ruby-xz/Makefile (revision 414025) +++ archivers/rubygem-ruby-xz/Makefile (working copy) @@ -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: archivers/rubygem-rubyzip/Makefile =================================================================== --- archivers/rubygem-rubyzip/Makefile (revision 414025) +++ archivers/rubygem-rubyzip/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: archivers/rubygem-rubyzip2/Makefile =================================================================== --- archivers/rubygem-rubyzip2/Makefile (revision 414025) +++ archivers/rubygem-rubyzip2/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: audio/rubygem-librmpd/Makefile =================================================================== --- audio/rubygem-librmpd/Makefile (revision 414025) +++ audio/rubygem-librmpd/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: audio/rubygem-ruby-mp3info/Makefile =================================================================== --- audio/rubygem-ruby-mp3info/Makefile (revision 414025) +++ audio/rubygem-ruby-mp3info/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: audio/rubygem-ruby-ogginfo/Makefile =================================================================== --- audio/rubygem-ruby-ogginfo/Makefile (revision 414025) +++ audio/rubygem-ruby-ogginfo/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: audio/rubygem-ruby-shout/Makefile =================================================================== --- audio/rubygem-ruby-shout/Makefile (revision 414025) +++ audio/rubygem-ruby-shout/Makefile (working copy) @@ -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: benchmarks/rubygem-benchmark-ips/Makefile =================================================================== --- benchmarks/rubygem-benchmark-ips/Makefile (revision 414025) +++ benchmarks/rubygem-benchmark-ips/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: benchmarks/rubygem-railsbench/Makefile =================================================================== --- benchmarks/rubygem-railsbench/Makefile (revision 414025) +++ benchmarks/rubygem-railsbench/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/railsbench Index: comms/rubygem-callsign/Makefile =================================================================== --- comms/rubygem-callsign/Makefile (revision 414025) +++ comms/rubygem-callsign/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: comms/rubygem-ruby-termios/Makefile =================================================================== --- comms/rubygem-ruby-termios/Makefile (revision 414025) +++ comms/rubygem-ruby-termios/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: converters/rubygem-bsdconv/Makefile =================================================================== --- converters/rubygem-bsdconv/Makefile (revision 414025) +++ converters/rubygem-bsdconv/Makefile (working copy) @@ -19,7 +19,6 @@ GEM_NAME= ${DISTNAME} USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activemodel/Makefile =================================================================== --- databases/rubygem-activemodel/Makefile (revision 414025) +++ databases/rubygem-activemodel/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activemodel4/Makefile =================================================================== --- databases/rubygem-activemodel4/Makefile (revision 414025) +++ databases/rubygem-activemodel4/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activerecord/Makefile =================================================================== --- databases/rubygem-activerecord/Makefile (revision 414025) +++ databases/rubygem-activerecord/Makefile (working copy) @@ -19,8 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 MYSQL_DESC= Use native MySQL bindings Index: databases/rubygem-activerecord-jdbc-adapter/Makefile =================================================================== --- databases/rubygem-activerecord-jdbc-adapter/Makefile (revision 414025) +++ databases/rubygem-activerecord-jdbc-adapter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activerecord-jdbcmysql-adapter/Makefile =================================================================== --- databases/rubygem-activerecord-jdbcmysql-adapter/Makefile (revision 414025) +++ databases/rubygem-activerecord-jdbcmysql-adapter/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activerecord-mysql-adapter/Makefile =================================================================== --- databases/rubygem-activerecord-mysql-adapter/Makefile (revision 414025) +++ databases/rubygem-activerecord-mysql-adapter/Makefile (working copy) @@ -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: databases/rubygem-activerecord-session_store/Makefile =================================================================== --- databases/rubygem-activerecord-session_store/Makefile (revision 414025) +++ databases/rubygem-activerecord-session_store/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-activerecord4/Makefile =================================================================== --- databases/rubygem-activerecord4/Makefile (revision 414025) +++ databases/rubygem-activerecord4/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-after_commit_queue/Makefile =================================================================== --- databases/rubygem-after_commit_queue/Makefile (revision 414025) +++ databases/rubygem-after_commit_queue/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-amalgalite/Makefile =================================================================== --- databases/rubygem-amalgalite/Makefile (revision 414025) +++ databases/rubygem-amalgalite/Makefile (working copy) @@ -15,8 +15,7 @@ RUN_DEPENDS= rubygem-arrayfields>=4.9:devel/rubygem-arrayfields USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/amalgalite-pack Index: databases/rubygem-arel/Makefile =================================================================== --- databases/rubygem-arel/Makefile (revision 414025) +++ databases/rubygem-arel/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-arel-helpers/Makefile =================================================================== --- databases/rubygem-arel-helpers/Makefile (revision 414025) +++ databases/rubygem-arel-helpers/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-arel3/Makefile =================================================================== --- databases/rubygem-arel3/Makefile (revision 414025) +++ databases/rubygem-arel3/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= ignore Index: databases/rubygem-arel5/Makefile =================================================================== --- databases/rubygem-arel5/Makefile (revision 414025) +++ databases/rubygem-arel5/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-arel6/Makefile =================================================================== --- databases/rubygem-arel6/Makefile (revision 414025) +++ databases/rubygem-arel6/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-awesome_nested_set/Makefile =================================================================== --- databases/rubygem-awesome_nested_set/Makefile (revision 414025) +++ databases/rubygem-awesome_nested_set/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-bdb1/Makefile =================================================================== --- databases/rubygem-bdb1/Makefile (revision 414025) +++ databases/rubygem-bdb1/Makefile (working copy) @@ -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: databases/rubygem-bigrecord/Makefile =================================================================== --- databases/rubygem-bigrecord/Makefile (revision 414025) +++ databases/rubygem-bigrecord/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-couchrest/Makefile =================================================================== --- databases/rubygem-couchrest/Makefile (revision 414025) +++ databases/rubygem-couchrest/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-data_objects/Makefile =================================================================== --- databases/rubygem-data_objects/Makefile (revision 414025) +++ databases/rubygem-data_objects/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-datamapper/Makefile =================================================================== --- databases/rubygem-datamapper/Makefile (revision 414025) +++ databases/rubygem-datamapper/Makefile (working copy) @@ -25,7 +25,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dbd-mysql/Makefile =================================================================== --- databases/rubygem-dbd-mysql/Makefile (revision 414025) +++ databases/rubygem-dbd-mysql/Makefile (working copy) @@ -14,7 +14,6 @@ rubygem-mysql>=0:databases/rubygem-mysql USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dbd-odbc/Makefile =================================================================== --- databases/rubygem-dbd-odbc/Makefile (revision 414025) +++ databases/rubygem-dbd-odbc/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dbd-pg/Makefile =================================================================== --- databases/rubygem-dbd-pg/Makefile (revision 414025) +++ databases/rubygem-dbd-pg/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dbd-sqlite3/Makefile =================================================================== --- databases/rubygem-dbd-sqlite3/Makefile (revision 414025) +++ databases/rubygem-dbd-sqlite3/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dbi/Makefile =================================================================== --- databases/rubygem-dbi/Makefile (revision 414025) +++ databases/rubygem-dbi/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/dbi bin/test_broken_dbi Index: databases/rubygem-dm-active_model/Makefile =================================================================== --- databases/rubygem-dm-active_model/Makefile (revision 414025) +++ databases/rubygem-dm-active_model/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-aggregates/Makefile =================================================================== --- databases/rubygem-dm-aggregates/Makefile (revision 414025) +++ databases/rubygem-dm-aggregates/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-chunked_query/Makefile =================================================================== --- databases/rubygem-dm-chunked_query/Makefile (revision 414025) +++ databases/rubygem-dm-chunked_query/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-constraints/Makefile =================================================================== --- databases/rubygem-dm-constraints/Makefile (revision 414025) +++ databases/rubygem-dm-constraints/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-core/Makefile =================================================================== --- databases/rubygem-dm-core/Makefile (revision 414025) +++ databases/rubygem-dm-core/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-devise/Makefile =================================================================== --- databases/rubygem-dm-devise/Makefile (revision 414025) +++ databases/rubygem-dm-devise/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-do-adapter/Makefile =================================================================== --- databases/rubygem-dm-do-adapter/Makefile (revision 414025) +++ databases/rubygem-dm-do-adapter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-migrations/Makefile =================================================================== --- databases/rubygem-dm-migrations/Makefile (revision 414025) +++ databases/rubygem-dm-migrations/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-mysql-adapter/Makefile =================================================================== --- databases/rubygem-dm-mysql-adapter/Makefile (revision 414025) +++ databases/rubygem-dm-mysql-adapter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-observer/Makefile =================================================================== --- databases/rubygem-dm-observer/Makefile (revision 414025) +++ databases/rubygem-dm-observer/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-pager/Makefile =================================================================== --- databases/rubygem-dm-pager/Makefile (revision 414025) +++ databases/rubygem-dm-pager/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-paperclip/Makefile =================================================================== --- databases/rubygem-dm-paperclip/Makefile (revision 414025) +++ databases/rubygem-dm-paperclip/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-postgres-adapter/Makefile =================================================================== --- databases/rubygem-dm-postgres-adapter/Makefile (revision 414025) +++ databases/rubygem-dm-postgres-adapter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-rails/Makefile =================================================================== --- databases/rubygem-dm-rails/Makefile (revision 414025) +++ databases/rubygem-dm-rails/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-serializer/Makefile =================================================================== --- databases/rubygem-dm-serializer/Makefile (revision 414025) +++ databases/rubygem-dm-serializer/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-timestamps/Makefile =================================================================== --- databases/rubygem-dm-timestamps/Makefile (revision 414025) +++ databases/rubygem-dm-timestamps/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-transactions/Makefile =================================================================== --- databases/rubygem-dm-transactions/Makefile (revision 414025) +++ databases/rubygem-dm-transactions/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-types/Makefile =================================================================== --- databases/rubygem-dm-types/Makefile (revision 414025) +++ databases/rubygem-dm-types/Makefile (working copy) @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-dm-validations/Makefile =================================================================== --- databases/rubygem-dm-validations/Makefile (revision 414025) +++ databases/rubygem-dm-validations/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-do_mysql/Makefile =================================================================== --- databases/rubygem-do_mysql/Makefile (revision 414025) +++ databases/rubygem-do_mysql/Makefile (working copy) @@ -13,7 +13,6 @@ USE_MYSQL= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-do_postgres/Makefile =================================================================== --- databases/rubygem-do_postgres/Makefile (revision 414025) +++ databases/rubygem-do_postgres/Makefile (working copy) @@ -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: databases/rubygem-do_sqlite3/Makefile =================================================================== --- databases/rubygem-do_sqlite3/Makefile (revision 414025) +++ databases/rubygem-do_sqlite3/Makefile (working copy) @@ -14,8 +14,7 @@ RUN_DEPENDS= rubygem-data_objects>=0.10.13:databases/rubygem-data_objects USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} Index: databases/rubygem-em-redis-unified/Makefile =================================================================== --- databases/rubygem-em-redis-unified/Makefile (revision 414025) +++ databases/rubygem-em-redis-unified/Makefile (working copy) @@ -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: databases/rubygem-familia/Makefile =================================================================== --- databases/rubygem-familia/Makefile (revision 414025) +++ databases/rubygem-familia/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-globalid/Makefile =================================================================== --- databases/rubygem-globalid/Makefile (revision 414025) +++ databases/rubygem-globalid/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-her/Makefile =================================================================== --- databases/rubygem-her/Makefile (revision 414025) +++ databases/rubygem-her/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-hiredis/Makefile =================================================================== --- databases/rubygem-hiredis/Makefile (revision 414025) +++ databases/rubygem-hiredis/Makefile (working copy) @@ -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: databases/rubygem-jdbc-mysql/Makefile =================================================================== --- databases/rubygem-jdbc-mysql/Makefile (revision 414025) +++ databases/rubygem-jdbc-mysql/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-leo_manager_client/Makefile =================================================================== --- databases/rubygem-leo_manager_client/Makefile (revision 414025) +++ databases/rubygem-leo_manager_client/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-memcache/Makefile =================================================================== --- databases/rubygem-memcache/Makefile (revision 414025) +++ databases/rubygem-memcache/Makefile (working copy) @@ -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: databases/rubygem-memcache-client/Makefile =================================================================== --- databases/rubygem-memcache-client/Makefile (revision 414025) +++ databases/rubygem-memcache-client/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/memcached_top Index: databases/rubygem-mysql/Makefile =================================================================== --- databases/rubygem-mysql/Makefile (revision 414025) +++ databases/rubygem-mysql/Makefile (working copy) @@ -14,7 +14,6 @@ USE_MYSQL= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-mysql2/Makefile =================================================================== --- databases/rubygem-mysql2/Makefile (revision 414025) +++ databases/rubygem-mysql2/Makefile (working copy) @@ -13,7 +13,6 @@ USE_MYSQL= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-openid-redis-store/Makefile =================================================================== --- databases/rubygem-openid-redis-store/Makefile (revision 414025) +++ databases/rubygem-openid-redis-store/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-paranoia/Makefile =================================================================== --- databases/rubygem-paranoia/Makefile (revision 414025) +++ databases/rubygem-paranoia/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-pg/Makefile =================================================================== --- databases/rubygem-pg/Makefile (revision 414025) +++ databases/rubygem-pg/Makefile (working copy) @@ -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: databases/rubygem-rbase/Makefile =================================================================== --- databases/rubygem-rbase/Makefile (revision 414025) +++ databases/rubygem-rbase/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-redis/Makefile =================================================================== --- databases/rubygem-redis/Makefile (revision 414025) +++ databases/rubygem-redis/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-redis-actionpack/Makefile =================================================================== --- databases/rubygem-redis-actionpack/Makefile (revision 414025) +++ databases/rubygem-redis-actionpack/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-redis-namespace/Makefile =================================================================== --- databases/rubygem-redis-namespace/Makefile (revision 414025) +++ databases/rubygem-redis-namespace/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-rubyrep/Makefile =================================================================== --- databases/rubygem-rubyrep/Makefile (revision 414025) +++ databases/rubygem-rubyrep/Makefile (working copy) @@ -21,9 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/rubyrep rubyrep USE_RC_SUBR= rubyrep Index: databases/rubygem-seed-fu/Makefile =================================================================== --- databases/rubygem-seed-fu/Makefile (revision 414025) +++ databases/rubygem-seed-fu/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-sqlite3/Makefile =================================================================== --- databases/rubygem-sqlite3/Makefile (revision 414025) +++ databases/rubygem-sqlite3/Makefile (working copy) @@ -17,7 +17,6 @@ CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-sqlite3-ruby/Makefile =================================================================== --- databases/rubygem-sqlite3-ruby/Makefile (revision 414025) +++ databases/rubygem-sqlite3-ruby/Makefile (working copy) @@ -19,8 +19,7 @@ CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sqlite3_ruby Index: databases/rubygem-state_machines-activemodel/Makefile =================================================================== --- databases/rubygem-state_machines-activemodel/Makefile (revision 414025) +++ databases/rubygem-state_machines-activemodel/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-state_machines-activerecord/Makefile =================================================================== --- databases/rubygem-state_machines-activerecord/Makefile (revision 414025) +++ databases/rubygem-state_machines-activerecord/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: databases/rubygem-tarantool/Makefile =================================================================== --- databases/rubygem-tarantool/Makefile (revision 414025) +++ databases/rubygem-tarantool/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: deskutils/rubygem-shellplay/Makefile =================================================================== --- deskutils/rubygem-shellplay/Makefile (revision 414025) +++ deskutils/rubygem-shellplay/Makefile (working copy) @@ -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: deskutils/rubygem-taskjuggler/Makefile =================================================================== --- deskutils/rubygem-taskjuggler/Makefile (revision 414025) +++ deskutils/rubygem-taskjuggler/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/tj3 \ bin/tj3client \ Index: devel/rubygem-CFPropertyList/Makefile =================================================================== --- devel/rubygem-CFPropertyList/Makefile (revision 414025) +++ devel/rubygem-CFPropertyList/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-abstract/Makefile =================================================================== --- devel/rubygem-abstract/Makefile (revision 414025) +++ devel/rubygem-abstract/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-actionpack-action_caching/Makefile =================================================================== --- devel/rubygem-actionpack-action_caching/Makefile (revision 414025) +++ devel/rubygem-actionpack-action_caching/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: devel/rubygem-actionview/Makefile =================================================================== --- devel/rubygem-actionview/Makefile (revision 414025) +++ devel/rubygem-actionview/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-active_scaffold/Makefile =================================================================== --- devel/rubygem-active_scaffold/Makefile (revision 414025) +++ devel/rubygem-active_scaffold/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-activejob/Makefile =================================================================== --- devel/rubygem-activejob/Makefile (revision 414025) +++ devel/rubygem-activejob/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-activemessaging/Makefile =================================================================== --- devel/rubygem-activemessaging/Makefile (revision 414025) +++ devel/rubygem-activemessaging/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-activerecord-deprecated_finders/Makefile =================================================================== --- devel/rubygem-activerecord-deprecated_finders/Makefile (revision 414025) +++ devel/rubygem-activerecord-deprecated_finders/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-activesupport/Makefile =================================================================== --- devel/rubygem-activesupport/Makefile (revision 414025) +++ devel/rubygem-activesupport/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-activesupport4/Makefile =================================================================== --- devel/rubygem-activesupport4/Makefile (revision 414025) +++ devel/rubygem-activesupport4/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-akismet/Makefile =================================================================== --- devel/rubygem-akismet/Makefile (revision 414025) +++ devel/rubygem-akismet/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-algebrick/Makefile =================================================================== --- devel/rubygem-algebrick/Makefile (revision 414025) +++ devel/rubygem-algebrick/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-algorithms/Makefile =================================================================== --- devel/rubygem-algorithms/Makefile (revision 414025) +++ devel/rubygem-algorithms/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-allison/Makefile =================================================================== --- devel/rubygem-allison/Makefile (revision 414025) +++ devel/rubygem-allison/Makefile (working copy) @@ -12,8 +12,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/allison Index: devel/rubygem-analogger/Makefile =================================================================== --- devel/rubygem-analogger/Makefile (revision 414025) +++ devel/rubygem-analogger/Makefile (working copy) @@ -17,9 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/analogger ruby_OLD_CMD= ruby Index: devel/rubygem-annoy/Makefile =================================================================== --- devel/rubygem-annoy/Makefile (revision 414025) +++ devel/rubygem-annoy/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ansi/Makefile =================================================================== --- devel/rubygem-ansi/Makefile (revision 414025) +++ devel/rubygem-ansi/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-apipie-bindings/Makefile =================================================================== --- devel/rubygem-apipie-bindings/Makefile (revision 414025) +++ devel/rubygem-apipie-bindings/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-apipie-params/Makefile =================================================================== --- devel/rubygem-apipie-params/Makefile (revision 414025) +++ devel/rubygem-apipie-params/Makefile (working copy) @@ -15,7 +15,6 @@ USE_RAKE= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-app_config/Makefile =================================================================== --- devel/rubygem-app_config/Makefile (revision 414025) +++ devel/rubygem-app_config/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-arr-pm/Makefile =================================================================== --- devel/rubygem-arr-pm/Makefile (revision 414025) +++ devel/rubygem-arr-pm/Makefile (working copy) @@ -10,7 +10,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-arrayfields/Makefile =================================================================== --- devel/rubygem-arrayfields/Makefile (revision 414025) +++ devel/rubygem-arrayfields/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ascii85/Makefile =================================================================== --- devel/rubygem-ascii85/Makefile (revision 414025) +++ devel/rubygem-ascii85/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ascii85 Index: devel/rubygem-asetus/Makefile =================================================================== --- devel/rubygem-asetus/Makefile (revision 414025) +++ devel/rubygem-asetus/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-aspectr/Makefile =================================================================== --- devel/rubygem-aspectr/Makefile (revision 414025) +++ devel/rubygem-aspectr/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ast/Makefile =================================================================== --- devel/rubygem-ast/Makefile (revision 414025) +++ devel/rubygem-ast/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-astrolabe/Makefile =================================================================== --- devel/rubygem-astrolabe/Makefile (revision 414025) +++ devel/rubygem-astrolabe/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-atomic/Makefile =================================================================== --- devel/rubygem-atomic/Makefile (revision 414025) +++ devel/rubygem-atomic/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-atoulme-antwrap/Makefile =================================================================== --- devel/rubygem-atoulme-antwrap/Makefile (revision 414025) +++ devel/rubygem-atoulme-antwrap/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: devel/rubygem-attic/Makefile =================================================================== --- devel/rubygem-attic/Makefile (revision 414025) +++ devel/rubygem-attic/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-attr_required/Makefile =================================================================== --- devel/rubygem-attr_required/Makefile (revision 414025) +++ devel/rubygem-attr_required/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-authlogic/Makefile =================================================================== --- devel/rubygem-authlogic/Makefile (revision 414025) +++ devel/rubygem-authlogic/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-awesome_print/Makefile =================================================================== --- devel/rubygem-awesome_print/Makefile (revision 414025) +++ devel/rubygem-awesome_print/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-aws-sdk/Makefile =================================================================== --- devel/rubygem-aws-sdk/Makefile (revision 414025) +++ devel/rubygem-aws-sdk/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-aws-sdk-core/Makefile =================================================================== --- devel/rubygem-aws-sdk-core/Makefile (revision 414025) +++ devel/rubygem-aws-sdk-core/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/aws.rb Index: devel/rubygem-aws-sdk-resources/Makefile =================================================================== --- devel/rubygem-aws-sdk-resources/Makefile (revision 414025) +++ devel/rubygem-aws-sdk-resources/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-aws-sdk-v1/Makefile =================================================================== --- devel/rubygem-aws-sdk-v1/Makefile (revision 414025) +++ devel/rubygem-aws-sdk-v1/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/aws-rb Index: devel/rubygem-axiom-types/Makefile =================================================================== --- devel/rubygem-axiom-types/Makefile (revision 414025) +++ devel/rubygem-axiom-types/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-backports/Makefile =================================================================== --- devel/rubygem-backports/Makefile (revision 414025) +++ devel/rubygem-backports/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bacon/Makefile =================================================================== --- devel/rubygem-bacon/Makefile (revision 414025) +++ devel/rubygem-bacon/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bacon Index: devel/rubygem-benelux/Makefile =================================================================== --- devel/rubygem-benelux/Makefile (revision 414025) +++ devel/rubygem-benelux/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bin_utils/Makefile =================================================================== --- devel/rubygem-bin_utils/Makefile (revision 414025) +++ devel/rubygem-bin_utils/Makefile (working copy) @@ -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: devel/rubygem-bindata/Makefile =================================================================== --- devel/rubygem-bindata/Makefile (revision 414025) +++ devel/rubygem-bindata/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-binding_of_caller/Makefile =================================================================== --- devel/rubygem-binding_of_caller/Makefile (revision 414025) +++ devel/rubygem-binding_of_caller/Makefile (working copy) @@ -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: devel/rubygem-bio/Makefile =================================================================== --- devel/rubygem-bio/Makefile (revision 414025) +++ devel/rubygem-bio/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= sample/biofetch.rb ruby_OLD_CMD= /usr/proj/bioruby/bin/ruby Index: devel/rubygem-blankslate/Makefile =================================================================== --- devel/rubygem-blankslate/Makefile (revision 414025) +++ devel/rubygem-blankslate/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-blobstore_client/Makefile =================================================================== --- devel/rubygem-blobstore_client/Makefile (revision 414025) +++ devel/rubygem-blobstore_client/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/blobstore_client_console Index: devel/rubygem-blockenspiel/Makefile =================================================================== --- devel/rubygem-blockenspiel/Makefile (revision 414025) +++ devel/rubygem-blockenspiel/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bones/Makefile =================================================================== --- devel/rubygem-bones/Makefile (revision 414025) +++ devel/rubygem-bones/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bones Index: devel/rubygem-bosh-template/Makefile =================================================================== --- devel/rubygem-bosh-template/Makefile (revision 414025) +++ devel/rubygem-bosh-template/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bosh-template Index: devel/rubygem-bosh_common/Makefile =================================================================== --- devel/rubygem-bosh_common/Makefile (revision 414025) +++ devel/rubygem-bosh_common/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bson/Makefile =================================================================== --- devel/rubygem-bson/Makefile (revision 414025) +++ devel/rubygem-bson/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bson1/Makefile =================================================================== --- devel/rubygem-bson1/Makefile (revision 414025) +++ devel/rubygem-bson1/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^1\. Index: devel/rubygem-buftok/Makefile =================================================================== --- devel/rubygem-buftok/Makefile (revision 414025) +++ devel/rubygem-buftok/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-bugspots/Makefile =================================================================== --- devel/rubygem-bugspots/Makefile (revision 414025) +++ devel/rubygem-bugspots/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bugspots bin/git-bugspots Index: devel/rubygem-builder/Makefile =================================================================== --- devel/rubygem-builder/Makefile (revision 414025) +++ devel/rubygem-builder/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-builder32/Makefile =================================================================== --- devel/rubygem-builder32/Makefile (revision 414025) +++ devel/rubygem-builder32/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-byebug/Makefile =================================================================== --- devel/rubygem-byebug/Makefile (revision 414025) +++ devel/rubygem-byebug/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/byebug Index: devel/rubygem-cabin/Makefile =================================================================== --- devel/rubygem-cabin/Makefile (revision 414025) +++ devel/rubygem-cabin/Makefile (working copy) @@ -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: devel/rubygem-caesars/Makefile =================================================================== --- devel/rubygem-caesars/Makefile (revision 414025) +++ devel/rubygem-caesars/Makefile (working copy) @@ -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: devel/rubygem-cairo-gobject/Makefile =================================================================== --- devel/rubygem-cairo-gobject/Makefile (revision 414025) +++ devel/rubygem-cairo-gobject/Makefile (working copy) @@ -14,7 +14,6 @@ rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-capybara/Makefile =================================================================== --- devel/rubygem-capybara/Makefile (revision 414025) +++ devel/rubygem-capybara/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid/Makefile =================================================================== --- devel/rubygem-celluloid/Makefile (revision 414025) +++ devel/rubygem-celluloid/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-essentials/Makefile =================================================================== --- devel/rubygem-celluloid-essentials/Makefile (revision 414025) +++ devel/rubygem-celluloid-essentials/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-extras/Makefile =================================================================== --- devel/rubygem-celluloid-extras/Makefile (revision 414025) +++ devel/rubygem-celluloid-extras/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-fsm/Makefile =================================================================== --- devel/rubygem-celluloid-fsm/Makefile (revision 414025) +++ devel/rubygem-celluloid-fsm/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-io/Makefile =================================================================== --- devel/rubygem-celluloid-io/Makefile (revision 414025) +++ devel/rubygem-celluloid-io/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-pool/Makefile =================================================================== --- devel/rubygem-celluloid-pool/Makefile (revision 414025) +++ devel/rubygem-celluloid-pool/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-celluloid-supervision/Makefile =================================================================== --- devel/rubygem-celluloid-supervision/Makefile (revision 414025) +++ devel/rubygem-celluloid-supervision/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cf-uaa-lib/Makefile =================================================================== --- devel/rubygem-cf-uaa-lib/Makefile (revision 414025) +++ devel/rubygem-cf-uaa-lib/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-childprocess/Makefile =================================================================== --- devel/rubygem-childprocess/Makefile (revision 414025) +++ devel/rubygem-childprocess/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-chronic/Makefile =================================================================== --- devel/rubygem-chronic/Makefile (revision 414025) +++ devel/rubygem-chronic/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-clamp/Makefile =================================================================== --- devel/rubygem-clamp/Makefile (revision 414025) +++ devel/rubygem-clamp/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-classifier/Makefile =================================================================== --- devel/rubygem-classifier/Makefile (revision 414025) +++ devel/rubygem-classifier/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-classifier-reborn/Makefile =================================================================== --- devel/rubygem-classifier-reborn/Makefile (revision 414025) +++ devel/rubygem-classifier-reborn/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-climate_control/Makefile =================================================================== --- devel/rubygem-climate_control/Makefile (revision 414025) +++ devel/rubygem-climate_control/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-clio/Makefile =================================================================== --- devel/rubygem-clio/Makefile (revision 414025) +++ devel/rubygem-clio/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cliprompt/Makefile =================================================================== --- devel/rubygem-cliprompt/Makefile (revision 414025) +++ devel/rubygem-cliprompt/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cloudfiles/Makefile =================================================================== --- devel/rubygem-cloudfiles/Makefile (revision 414025) +++ devel/rubygem-cloudfiles/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cocaine/Makefile =================================================================== --- devel/rubygem-cocaine/Makefile (revision 414025) +++ devel/rubygem-cocaine/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-coercible/Makefile =================================================================== --- devel/rubygem-coercible/Makefile (revision 414025) +++ devel/rubygem-coercible/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-coffee-rails/Makefile =================================================================== --- devel/rubygem-coffee-rails/Makefile (revision 414025) +++ devel/rubygem-coffee-rails/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^3\. Index: devel/rubygem-coffee-rails4/Makefile =================================================================== --- devel/rubygem-coffee-rails4/Makefile (revision 414025) +++ devel/rubygem-coffee-rails4/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-coffee-script/Makefile =================================================================== --- devel/rubygem-coffee-script/Makefile (revision 414025) +++ devel/rubygem-coffee-script/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-coffee-script-source/Makefile =================================================================== --- devel/rubygem-coffee-script-source/Makefile (revision 414025) +++ devel/rubygem-coffee-script-source/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-colorize/Makefile =================================================================== --- devel/rubygem-colorize/Makefile (revision 414025) +++ devel/rubygem-colorize/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-columnize/Makefile =================================================================== --- devel/rubygem-columnize/Makefile (revision 414025) +++ devel/rubygem-columnize/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-commander/Makefile =================================================================== --- devel/rubygem-commander/Makefile (revision 414025) +++ devel/rubygem-commander/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/commander Index: devel/rubygem-concurrent-ruby/Makefile =================================================================== --- devel/rubygem-concurrent-ruby/Makefile (revision 414025) +++ devel/rubygem-concurrent-ruby/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-concurrent-ruby-edge/Makefile =================================================================== --- devel/rubygem-concurrent-ruby-edge/Makefile (revision 414025) +++ devel/rubygem-concurrent-ruby-edge/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-configatron/Makefile =================================================================== --- devel/rubygem-configatron/Makefile (revision 414025) +++ devel/rubygem-configatron/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-configstruct/Makefile =================================================================== --- devel/rubygem-configstruct/Makefile (revision 414025) +++ devel/rubygem-configstruct/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-configuration/Makefile =================================================================== --- devel/rubygem-configuration/Makefile (revision 414025) +++ devel/rubygem-configuration/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cool.io/Makefile =================================================================== --- devel/rubygem-cool.io/Makefile (revision 414025) +++ devel/rubygem-cool.io/Makefile (working copy) @@ -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: devel/rubygem-corefines/Makefile =================================================================== --- devel/rubygem-corefines/Makefile (revision 414025) +++ devel/rubygem-corefines/Makefile (working copy) @@ -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: devel/rubygem-crack/Makefile =================================================================== --- devel/rubygem-crack/Makefile (revision 414025) +++ devel/rubygem-crack/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cri/Makefile =================================================================== --- devel/rubygem-cri/Makefile (revision 414025) +++ devel/rubygem-cri/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cucumber/Makefile =================================================================== --- devel/rubygem-cucumber/Makefile (revision 414025) +++ devel/rubygem-cucumber/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/cucumber Index: devel/rubygem-cucumber-core/Makefile =================================================================== --- devel/rubygem-cucumber-core/Makefile (revision 414025) +++ devel/rubygem-cucumber-core/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cucumber-wire/Makefile =================================================================== --- devel/rubygem-cucumber-wire/Makefile (revision 414025) +++ devel/rubygem-cucumber-wire/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-curses/Makefile =================================================================== --- devel/rubygem-curses/Makefile (revision 414025) +++ devel/rubygem-curses/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-cyoi/Makefile =================================================================== --- devel/rubygem-cyoi/Makefile (revision 414025) +++ devel/rubygem-cyoi/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/cyoi Index: devel/rubygem-daemon_controller/Makefile =================================================================== --- devel/rubygem-daemon_controller/Makefile (revision 414025) +++ devel/rubygem-daemon_controller/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-daemons/Makefile =================================================================== --- devel/rubygem-daemons/Makefile (revision 414025) +++ devel/rubygem-daemons/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-debug_inspector/Makefile =================================================================== --- devel/rubygem-debug_inspector/Makefile (revision 414025) +++ devel/rubygem-debug_inspector/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-debugger-linecache/Makefile =================================================================== --- devel/rubygem-debugger-linecache/Makefile (revision 414025) +++ devel/rubygem-debugger-linecache/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-debugger-xml/Makefile =================================================================== --- devel/rubygem-debugger-xml/Makefile (revision 414025) +++ devel/rubygem-debugger-xml/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rdebug-ide bin/rdebug-vim Index: devel/rubygem-deep_merge/Makefile =================================================================== --- devel/rubygem-deep_merge/Makefile (revision 414025) +++ devel/rubygem-deep_merge/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-deep_test/Makefile =================================================================== --- devel/rubygem-deep_test/Makefile (revision 414025) +++ devel/rubygem-deep_test/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/deep_test Index: devel/rubygem-deface/Makefile =================================================================== --- devel/rubygem-deface/Makefile (revision 414025) +++ devel/rubygem-deface/Makefile (working copy) @@ -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: devel/rubygem-default_value_for/Makefile =================================================================== --- devel/rubygem-default_value_for/Makefile (revision 414025) +++ devel/rubygem-default_value_for/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-delayed_job/Makefile =================================================================== --- devel/rubygem-delayed_job/Makefile (revision 414025) +++ devel/rubygem-delayed_job/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-delayer/Makefile =================================================================== --- devel/rubygem-delayer/Makefile (revision 414025) +++ devel/rubygem-delayer/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-delayer-deferred/Makefile =================================================================== --- devel/rubygem-delayer-deferred/Makefile (revision 414025) +++ devel/rubygem-delayer-deferred/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-deprecated/Makefile =================================================================== --- devel/rubygem-deprecated/Makefile (revision 414025) +++ devel/rubygem-deprecated/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-deprecated2/Makefile =================================================================== --- devel/rubygem-deprecated2/Makefile (revision 414025) +++ devel/rubygem-deprecated2/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.[0-9]* Index: devel/rubygem-descendants_tracker/Makefile =================================================================== --- devel/rubygem-descendants_tracker/Makefile (revision 414025) +++ devel/rubygem-descendants_tracker/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-devise/Makefile =================================================================== --- devel/rubygem-devise/Makefile (revision 414025) +++ devel/rubygem-devise/Makefile (working copy) @@ -19,8 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist BROKEN_RUBY23= yes Index: devel/rubygem-devise-async/Makefile =================================================================== --- devel/rubygem-devise-async/Makefile (revision 414025) +++ devel/rubygem-devise-async/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-directory_watcher/Makefile =================================================================== --- devel/rubygem-directory_watcher/Makefile (revision 414025) +++ devel/rubygem-directory_watcher/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ditz/Makefile =================================================================== --- devel/rubygem-ditz/Makefile (revision 414025) +++ devel/rubygem-ditz/Makefile (working copy) @@ -18,9 +18,7 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/ditz ruby_OLD_CMD= /usr/bin/ruby1.8 Index: devel/rubygem-docile/Makefile =================================================================== --- devel/rubygem-docile/Makefile (revision 414025) +++ devel/rubygem-docile/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-drydock/Makefile =================================================================== --- devel/rubygem-drydock/Makefile (revision 414025) +++ devel/rubygem-drydock/Makefile (working copy) @@ -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: devel/rubygem-dynflow/Makefile =================================================================== --- devel/rubygem-dynflow/Makefile (revision 414025) +++ devel/rubygem-dynflow/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-edavis10-object_daddy/Makefile =================================================================== --- devel/rubygem-edavis10-object_daddy/Makefile (revision 414025) +++ devel/rubygem-edavis10-object_daddy/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-elif/Makefile =================================================================== --- devel/rubygem-elif/Makefile (revision 414025) +++ devel/rubygem-elif/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-enumerize/Makefile =================================================================== --- devel/rubygem-enumerize/Makefile (revision 414025) +++ devel/rubygem-enumerize/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-equalizer/Makefile =================================================================== --- devel/rubygem-equalizer/Makefile (revision 414025) +++ devel/rubygem-equalizer/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-errand/Makefile =================================================================== --- devel/rubygem-errand/Makefile (revision 414025) +++ devel/rubygem-errand/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-event-bus/Makefile =================================================================== --- devel/rubygem-event-bus/Makefile (revision 414025) +++ devel/rubygem-event-bus/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-eventmachine/Makefile =================================================================== --- devel/rubygem-eventmachine/Makefile (revision 414025) +++ devel/rubygem-eventmachine/Makefile (working copy) @@ -15,7 +15,6 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-excon/Makefile =================================================================== --- devel/rubygem-excon/Makefile (revision 414025) +++ devel/rubygem-excon/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-execjs/Makefile =================================================================== --- devel/rubygem-execjs/Makefile (revision 414025) +++ devel/rubygem-execjs/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-extlib/Makefile =================================================================== --- devel/rubygem-extlib/Makefile (revision 414025) +++ devel/rubygem-extlib/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-facets/Makefile =================================================================== --- devel/rubygem-facets/Makefile (revision 414025) +++ devel/rubygem-facets/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-faraday_middleware-multi_json/Makefile =================================================================== --- devel/rubygem-faraday_middleware-multi_json/Makefile (revision 414025) +++ devel/rubygem-faraday_middleware-multi_json/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fast-stemmer/Makefile =================================================================== --- devel/rubygem-fast-stemmer/Makefile (revision 414025) +++ devel/rubygem-fast-stemmer/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fast_gettext/Makefile =================================================================== --- devel/rubygem-fast_gettext/Makefile (revision 414025) +++ devel/rubygem-fast_gettext/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fast_stack/Makefile =================================================================== --- devel/rubygem-fast_stack/Makefile (revision 414025) +++ devel/rubygem-fast_stack/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fast_xor/Makefile =================================================================== --- devel/rubygem-fast_xor/Makefile (revision 414025) +++ devel/rubygem-fast_xor/Makefile (working copy) @@ -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: devel/rubygem-fastercsv/Makefile =================================================================== --- devel/rubygem-fastercsv/Makefile (revision 414025) +++ devel/rubygem-fastercsv/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fastri/Makefile =================================================================== --- devel/rubygem-fastri/Makefile (revision 414025) +++ devel/rubygem-fastri/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/fastri-server bin/fri bin/qri bin/ri-emacs Index: devel/rubygem-fastthread/Makefile =================================================================== --- devel/rubygem-fastthread/Makefile (revision 414025) +++ devel/rubygem-fastthread/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= LGPL21 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fattr/Makefile =================================================================== --- devel/rubygem-fattr/Makefile (revision 414025) +++ devel/rubygem-fattr/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ffi/Makefile =================================================================== --- devel/rubygem-ffi/Makefile (revision 414025) +++ devel/rubygem-ffi/Makefile (working copy) @@ -14,7 +14,6 @@ LIB_DEPENDS= libffi.so:devel/libffi USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ffi-compiler/Makefile =================================================================== --- devel/rubygem-ffi-compiler/Makefile (revision 414025) +++ devel/rubygem-ffi-compiler/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ffi-yajl/Makefile =================================================================== --- devel/rubygem-ffi-yajl/Makefile (revision 414025) +++ devel/rubygem-ffi-yajl/Makefile (working copy) @@ -15,8 +15,7 @@ rubygem-libyajl2>=1.0.0:devel/rubygem-libyajl2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ffi-yajl-bench Index: devel/rubygem-file-tail/Makefile =================================================================== --- devel/rubygem-file-tail/Makefile (revision 414025) +++ devel/rubygem-file-tail/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-flexmock/Makefile =================================================================== --- devel/rubygem-flexmock/Makefile (revision 414025) +++ devel/rubygem-flexmock/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fluent-logger/Makefile =================================================================== --- devel/rubygem-fluent-logger/Makefile (revision 414025) +++ devel/rubygem-fluent-logger/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/fluent-post Index: devel/rubygem-fog/Makefile =================================================================== --- devel/rubygem-fog/Makefile (revision 414025) +++ devel/rubygem-fog/Makefile (working copy) @@ -43,8 +43,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/fog Index: devel/rubygem-fog-core/Makefile =================================================================== --- devel/rubygem-fog-core/Makefile (revision 414025) +++ devel/rubygem-fog-core/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-fog-json/Makefile =================================================================== --- devel/rubygem-fog-json/Makefile (revision 414025) +++ devel/rubygem-fog-json/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-font-awesome-rails/Makefile =================================================================== --- devel/rubygem-font-awesome-rails/Makefile (revision 414025) +++ devel/rubygem-font-awesome-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-font-awesome-rails-rails4/Makefile =================================================================== --- devel/rubygem-font-awesome-rails-rails4/Makefile (revision 414025) +++ devel/rubygem-font-awesome-rails-rails4/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-foreigner/Makefile =================================================================== --- devel/rubygem-foreigner/Makefile (revision 414025) +++ devel/rubygem-foreigner/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-foreman/Makefile =================================================================== --- devel/rubygem-foreman/Makefile (revision 414025) +++ devel/rubygem-foreman/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= spec/resources/bin/env PLIST_FILES= bin/foreman Index: devel/rubygem-formatador/Makefile =================================================================== --- devel/rubygem-formatador/Makefile (revision 414025) +++ devel/rubygem-formatador/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gdata/Makefile =================================================================== --- devel/rubygem-gdata/Makefile (revision 414025) +++ devel/rubygem-gdata/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gem_plugin/Makefile =================================================================== --- devel/rubygem-gem_plugin/Makefile (revision 414025) +++ devel/rubygem-gem_plugin/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/gpgen Index: devel/rubygem-gemcutter/Makefile =================================================================== --- devel/rubygem-gemcutter/Makefile (revision 414025) +++ devel/rubygem-gemcutter/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gemnasium-gitlab-service/Makefile =================================================================== --- devel/rubygem-gemnasium-gitlab-service/Makefile (revision 414025) +++ devel/rubygem-gemnasium-gitlab-service/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gems/Makefile =================================================================== --- devel/rubygem-gems/Makefile (revision 414025) +++ devel/rubygem-gems/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-generator_spec/Makefile =================================================================== --- devel/rubygem-generator_spec/Makefile (revision 414025) +++ devel/rubygem-generator_spec/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-generator_spec-rails4/Makefile =================================================================== --- devel/rubygem-generator_spec-rails4/Makefile (revision 414025) +++ devel/rubygem-generator_spec-rails4/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-georuby/Makefile =================================================================== --- devel/rubygem-georuby/Makefile (revision 414025) +++ devel/rubygem-georuby/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-get_process_mem/Makefile =================================================================== --- devel/rubygem-get_process_mem/Makefile (revision 414025) +++ devel/rubygem-get_process_mem/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-getopt/Makefile =================================================================== --- devel/rubygem-getopt/Makefile (revision 414025) +++ devel/rubygem-getopt/Makefile (working copy) @@ -13,7 +13,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gettext/Makefile =================================================================== --- devel/rubygem-gettext/Makefile (revision 414025) +++ devel/rubygem-gettext/Makefile (working copy) @@ -15,12 +15,10 @@ RUN_DEPENDS= rubygem-locale>=2.0.5:devel/rubygem-locale \ rubygem-text>=1.3.0:textproc/rubygem-text -USES= shebangfix NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist shebangfix SHEBANG_FILES= samples/*.rb samples/cgi/*.rb PLIST_FILES= bin/rmsgcat bin/rmsgfmt bin/rmsginit bin/rmsgmerge bin/rxgettext Index: devel/rubygem-gh/Makefile =================================================================== --- devel/rubygem-gh/Makefile (revision 414025) +++ devel/rubygem-gh/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gibbler/Makefile =================================================================== --- devel/rubygem-gibbler/Makefile (revision 414025) +++ devel/rubygem-gibbler/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gio2/Makefile =================================================================== --- devel/rubygem-gio2/Makefile (revision 414025) +++ devel/rubygem-gio2/Makefile (working copy) @@ -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: devel/rubygem-git/Makefile =================================================================== --- devel/rubygem-git/Makefile (revision 414025) +++ devel/rubygem-git/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-git-version-bump/Makefile =================================================================== --- devel/rubygem-git-version-bump/Makefile (revision 414025) +++ devel/rubygem-git-version-bump/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/git-version-bump Index: devel/rubygem-github_api/Makefile =================================================================== --- devel/rubygem-github_api/Makefile (revision 414025) +++ devel/rubygem-github_api/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gitlab-pygments.rb/Makefile =================================================================== --- devel/rubygem-gitlab-pygments.rb/Makefile (revision 414025) +++ devel/rubygem-gitlab-pygments.rb/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gitlab_git/Makefile =================================================================== --- devel/rubygem-gitlab_git/Makefile (revision 414025) +++ devel/rubygem-gitlab_git/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gitlab_meta/Makefile =================================================================== --- devel/rubygem-gitlab_meta/Makefile (revision 414025) +++ devel/rubygem-gitlab_meta/Makefile (working copy) @@ -13,9 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= cpe +USES= cpe gem:autoplist CPE_PRODUCT= gitlab CPE_VENDOR= gitlab Index: devel/rubygem-glib2/Makefile =================================================================== --- devel/rubygem-glib2/Makefile (revision 414025) +++ devel/rubygem-glib2/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= glib20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gobject-introspection/Makefile =================================================================== --- devel/rubygem-gobject-introspection/Makefile (revision 414025) +++ devel/rubygem-gobject-introspection/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= introspection USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-graf/Makefile =================================================================== --- devel/rubygem-graf/Makefile (revision 414025) +++ devel/rubygem-graf/Makefile (working copy) @@ -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: devel/rubygem-grape/Makefile =================================================================== --- devel/rubygem-grape/Makefile (revision 414025) +++ devel/rubygem-grape/Makefile (working copy) @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-grape-entity/Makefile =================================================================== --- devel/rubygem-grape-entity/Makefile (revision 414025) +++ devel/rubygem-grape-entity/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-grape-swagger/Makefile =================================================================== --- devel/rubygem-grape-swagger/Makefile (revision 414025) +++ devel/rubygem-grape-swagger/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-grit/Makefile =================================================================== --- devel/rubygem-grit/Makefile (revision 414025) +++ devel/rubygem-grit/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-guess_html_encoding/Makefile =================================================================== --- devel/rubygem-guess_html_encoding/Makefile (revision 414025) +++ devel/rubygem-guess_html_encoding/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-gyoku/Makefile =================================================================== --- devel/rubygem-gyoku/Makefile (revision 414025) +++ devel/rubygem-gyoku/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hashdiff/Makefile =================================================================== --- devel/rubygem-hashdiff/Makefile (revision 414025) +++ devel/rubygem-hashdiff/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hashery/Makefile =================================================================== --- devel/rubygem-hashery/Makefile (revision 414025) +++ devel/rubygem-hashery/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hashie/Makefile =================================================================== --- devel/rubygem-hashie/Makefile (revision 414025) +++ devel/rubygem-hashie/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hashie2/Makefile =================================================================== --- devel/rubygem-hashie2/Makefile (revision 414025) +++ devel/rubygem-hashie2/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist PORTSCOUT= limit:^2\. Index: devel/rubygem-highline/Makefile =================================================================== --- devel/rubygem-highline/Makefile (revision 414025) +++ devel/rubygem-highline/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hike/Makefile =================================================================== --- devel/rubygem-hike/Makefile (revision 414025) +++ devel/rubygem-hike/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hitimes/Makefile =================================================================== --- devel/rubygem-hitimes/Makefile (revision 414025) +++ devel/rubygem-hitimes/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= ISCL USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-hoe/Makefile =================================================================== --- devel/rubygem-hoe/Makefile (revision 414025) +++ devel/rubygem-hoe/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sow Index: devel/rubygem-holidays/Makefile =================================================================== --- devel/rubygem-holidays/Makefile (revision 414025) +++ devel/rubygem-holidays/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-i18n/Makefile =================================================================== --- devel/rubygem-i18n/Makefile (revision 414025) +++ devel/rubygem-i18n/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-icalendar/Makefile =================================================================== --- devel/rubygem-icalendar/Makefile (revision 414025) +++ devel/rubygem-icalendar/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ice_cube/Makefile =================================================================== --- devel/rubygem-ice_cube/Makefile (revision 414025) +++ devel/rubygem-ice_cube/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ice_nine/Makefile =================================================================== --- devel/rubygem-ice_nine/Makefile (revision 414025) +++ devel/rubygem-ice_nine/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-inflecto/Makefile =================================================================== --- devel/rubygem-inflecto/Makefile (revision 414025) +++ devel/rubygem-inflecto/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-instance_storage/Makefile =================================================================== --- devel/rubygem-instance_storage/Makefile (revision 414025) +++ devel/rubygem-instance_storage/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-interact/Makefile =================================================================== --- devel/rubygem-interact/Makefile (revision 414025) +++ devel/rubygem-interact/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-iobuffer/Makefile =================================================================== --- devel/rubygem-iobuffer/Makefile (revision 414025) +++ devel/rubygem-iobuffer/Makefile (working copy) @@ -9,7 +9,6 @@ COMMENT= Gems for iobuffer USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-jammit/Makefile =================================================================== --- devel/rubygem-jammit/Makefile (revision 414025) +++ devel/rubygem-jammit/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/jammit Index: devel/rubygem-jbuilder/Makefile =================================================================== --- devel/rubygem-jbuilder/Makefile (revision 414025) +++ devel/rubygem-jbuilder/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-jekyll-coffeescript/Makefile =================================================================== --- devel/rubygem-jekyll-coffeescript/Makefile (revision 414025) +++ devel/rubygem-jekyll-coffeescript/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-jeweler/Makefile =================================================================== --- devel/rubygem-jeweler/Makefile (revision 414025) +++ devel/rubygem-jeweler/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/jeweler Index: devel/rubygem-jmespath/Makefile =================================================================== --- devel/rubygem-jmespath/Makefile (revision 414025) +++ devel/rubygem-jmespath/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-jquery-ui-themes/Makefile =================================================================== --- devel/rubygem-jquery-ui-themes/Makefile (revision 414025) +++ devel/rubygem-jquery-ui-themes/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-jruby-jars/Makefile =================================================================== --- devel/rubygem-jruby-jars/Makefile (revision 414025) +++ devel/rubygem-jruby-jars/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-json/Makefile =================================================================== --- devel/rubygem-json/Makefile (revision 414025) +++ devel/rubygem-json/Makefile (working copy) @@ -15,7 +15,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-json_pure/Makefile =================================================================== --- devel/rubygem-json_pure/Makefile (revision 414025) +++ devel/rubygem-json_pure/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-kafo/Makefile =================================================================== --- devel/rubygem-kafo/Makefile (revision 414025) +++ devel/rubygem-kafo/Makefile (working copy) @@ -23,9 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= cpe +USES= cpe gem:autoplist CPE_VENDOR= theforeman Index: devel/rubygem-kafo_parsers/Makefile =================================================================== --- devel/rubygem-kafo_parsers/Makefile (revision 414025) +++ devel/rubygem-kafo_parsers/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-kafo_wizards/Makefile =================================================================== --- devel/rubygem-kafo_wizards/Makefile (revision 414025) +++ devel/rubygem-kafo_wizards/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-kgio/Makefile =================================================================== --- devel/rubygem-kgio/Makefile (revision 414025) +++ devel/rubygem-kgio/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-launchy/Makefile =================================================================== --- devel/rubygem-launchy/Makefile (revision 414025) +++ devel/rubygem-launchy/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/launchy Index: devel/rubygem-launchy22/Makefile =================================================================== --- devel/rubygem-launchy22/Makefile (revision 414025) +++ devel/rubygem-launchy22/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.2 Index: devel/rubygem-librarian/Makefile =================================================================== --- devel/rubygem-librarian/Makefile (revision 414025) +++ devel/rubygem-librarian/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-librarianp/Makefile =================================================================== --- devel/rubygem-librarianp/Makefile (revision 414025) +++ devel/rubygem-librarianp/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-libyajl2/Makefile =================================================================== --- devel/rubygem-libyajl2/Makefile (revision 414025) +++ devel/rubygem-libyajl2/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-licensee/Makefile =================================================================== --- devel/rubygem-licensee/Makefile (revision 414025) +++ devel/rubygem-licensee/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/licensee Index: devel/rubygem-listen/Makefile =================================================================== --- devel/rubygem-listen/Makefile (revision 414025) +++ devel/rubygem-listen/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/listen Index: devel/rubygem-little-plugger/Makefile =================================================================== --- devel/rubygem-little-plugger/Makefile (revision 414025) +++ devel/rubygem-little-plugger/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-locale/Makefile =================================================================== --- devel/rubygem-locale/Makefile (revision 414025) +++ devel/rubygem-locale/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-lockfile/Makefile =================================================================== --- devel/rubygem-lockfile/Makefile (revision 414025) +++ devel/rubygem-lockfile/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rlock Index: devel/rubygem-logging/Makefile =================================================================== --- devel/rubygem-logging/Makefile (revision 414025) +++ devel/rubygem-logging/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-logster/Makefile =================================================================== --- devel/rubygem-logster/Makefile (revision 414025) +++ devel/rubygem-logster/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-loquacious/Makefile =================================================================== --- devel/rubygem-loquacious/Makefile (revision 414025) +++ devel/rubygem-loquacious/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-lru_redux/Makefile =================================================================== --- devel/rubygem-lru_redux/Makefile (revision 414025) +++ devel/rubygem-lru_redux/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-lumberjack/Makefile =================================================================== --- devel/rubygem-lumberjack/Makefile (revision 414025) +++ devel/rubygem-lumberjack/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-main/Makefile =================================================================== --- devel/rubygem-main/Makefile (revision 414025) +++ devel/rubygem-main/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-map/Makefile =================================================================== --- devel/rubygem-map/Makefile (revision 414025) +++ devel/rubygem-map/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-memoist/Makefile =================================================================== --- devel/rubygem-memoist/Makefile (revision 414025) +++ devel/rubygem-memoist/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCHI= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-memoizable/Makefile =================================================================== --- devel/rubygem-memoizable/Makefile (revision 414025) +++ devel/rubygem-memoizable/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-memoize/Makefile =================================================================== --- devel/rubygem-memoize/Makefile (revision 414025) +++ devel/rubygem-memoize/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mercenary/Makefile =================================================================== --- devel/rubygem-mercenary/Makefile (revision 414025) +++ devel/rubygem-mercenary/Makefile (working copy) @@ -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: devel/rubygem-message_bus/Makefile =================================================================== --- devel/rubygem-message_bus/Makefile (revision 414025) +++ devel/rubygem-message_bus/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-metaclass/Makefile =================================================================== --- devel/rubygem-metaclass/Makefile (revision 414025) +++ devel/rubygem-metaclass/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-metaid/Makefile =================================================================== --- devel/rubygem-metaid/Makefile (revision 414025) +++ devel/rubygem-metaid/Makefile (working copy) @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-method_source/Makefile =================================================================== --- devel/rubygem-method_source/Makefile (revision 414025) +++ devel/rubygem-method_source/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-minitest/Makefile =================================================================== --- devel/rubygem-minitest/Makefile (revision 414025) +++ devel/rubygem-minitest/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-minitest4/Makefile =================================================================== --- devel/rubygem-minitest4/Makefile (revision 414025) +++ devel/rubygem-minitest4/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mixlib-authentication/Makefile =================================================================== --- devel/rubygem-mixlib-authentication/Makefile (revision 414025) +++ devel/rubygem-mixlib-authentication/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mixlib-cli/Makefile =================================================================== --- devel/rubygem-mixlib-cli/Makefile (revision 414025) +++ devel/rubygem-mixlib-cli/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mixlib-config/Makefile =================================================================== --- devel/rubygem-mixlib-config/Makefile (revision 414025) +++ devel/rubygem-mixlib-config/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mixlib-log/Makefile =================================================================== --- devel/rubygem-mixlib-log/Makefile (revision 414025) +++ devel/rubygem-mixlib-log/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mixlib-shellout/Makefile =================================================================== --- devel/rubygem-mixlib-shellout/Makefile (revision 414025) +++ devel/rubygem-mixlib-shellout/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mkrf/Makefile =================================================================== --- devel/rubygem-mkrf/Makefile (revision 414025) +++ devel/rubygem-mkrf/Makefile (working copy) @@ -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: devel/rubygem-mocha/Makefile =================================================================== --- devel/rubygem-mocha/Makefile (revision 414025) +++ devel/rubygem-mocha/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-moneta/Makefile =================================================================== --- devel/rubygem-moneta/Makefile (revision 414025) +++ devel/rubygem-moneta/Makefile (working copy) @@ -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: devel/rubygem-moneta06/Makefile =================================================================== --- devel/rubygem-moneta06/Makefile (revision 414025) +++ devel/rubygem-moneta06/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mongo/Makefile =================================================================== --- devel/rubygem-mongo/Makefile (revision 414025) +++ devel/rubygem-mongo/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mongo_console Index: devel/rubygem-msgpack/Makefile =================================================================== --- devel/rubygem-msgpack/Makefile (revision 414025) +++ devel/rubygem-msgpack/Makefile (working copy) @@ -11,8 +11,7 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist STRIPDIR= ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} post-install: Index: devel/rubygem-mspec/Makefile =================================================================== --- devel/rubygem-mspec/Makefile (revision 414025) +++ devel/rubygem-mspec/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mkspec bin/mspec bin/mspec-ci bin/mspec-run bin/mspec-tag Index: devel/rubygem-multi_json/Makefile =================================================================== --- devel/rubygem-multi_json/Makefile (revision 414025) +++ devel/rubygem-multi_json/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist JSON_RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json JSON_PURE_RUN_DEPENDS= rubygem-json_pure>=0:devel/rubygem-json_pure Index: devel/rubygem-multi_test/Makefile =================================================================== --- devel/rubygem-multi_test/Makefile (revision 414025) +++ devel/rubygem-multi_test/Makefile (working copy) @@ -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: devel/rubygem-murmurhash3/Makefile =================================================================== --- devel/rubygem-murmurhash3/Makefile (revision 414025) +++ devel/rubygem-murmurhash3/Makefile (working copy) @@ -10,7 +10,6 @@ COMMENT= Implementation of murmur3 hashing function USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-mustache/Makefile =================================================================== --- devel/rubygem-mustache/Makefile (revision 414025) +++ devel/rubygem-mustache/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mustache Index: devel/rubygem-mutter/Makefile =================================================================== --- devel/rubygem-mutter/Makefile (revision 414025) +++ devel/rubygem-mutter/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-naught/Makefile =================================================================== --- devel/rubygem-naught/Makefile (revision 414025) +++ devel/rubygem-naught/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-needle/Makefile =================================================================== --- devel/rubygem-needle/Makefile (revision 414025) +++ devel/rubygem-needle/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-nenv/Makefile =================================================================== --- devel/rubygem-nenv/Makefile (revision 414025) +++ devel/rubygem-nenv/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-nesty/Makefile =================================================================== --- devel/rubygem-nesty/Makefile (revision 414025) +++ devel/rubygem-nesty/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-netaddr/Makefile =================================================================== --- devel/rubygem-netaddr/Makefile (revision 414025) +++ devel/rubygem-netaddr/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-newrelic-grape/Makefile =================================================================== --- devel/rubygem-newrelic-grape/Makefile (revision 414025) +++ devel/rubygem-newrelic-grape/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-newrelic_rpm/Makefile =================================================================== --- devel/rubygem-newrelic_rpm/Makefile (revision 414025) +++ devel/rubygem-newrelic_rpm/Makefile (working copy) @@ -17,9 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= test/script/*.sh PLIST_FILES= bin/mongrel_rpm bin/newrelic bin/newrelic_cmd bin/nrdebug Index: devel/rubygem-nice-ffi/Makefile =================================================================== --- devel/rubygem-nice-ffi/Makefile (revision 414025) +++ devel/rubygem-nice-ffi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-nio4r/Makefile =================================================================== --- devel/rubygem-nio4r/Makefile (revision 414025) +++ devel/rubygem-nio4r/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-nori/Makefile =================================================================== --- devel/rubygem-nori/Makefile (revision 414025) +++ devel/rubygem-nori/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-notiffany/Makefile =================================================================== --- devel/rubygem-notiffany/Makefile (revision 414025) +++ devel/rubygem-notiffany/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-notify/Makefile =================================================================== --- devel/rubygem-notify/Makefile (revision 414025) +++ devel/rubygem-notify/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/notify Index: devel/rubygem-nprogress-rails/Makefile =================================================================== --- devel/rubygem-nprogress-rails/Makefile (revision 414025) +++ devel/rubygem-nprogress-rails/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-octopress-hooks/Makefile =================================================================== --- devel/rubygem-octopress-hooks/Makefile (revision 414025) +++ devel/rubygem-octopress-hooks/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-oj/Makefile =================================================================== --- devel/rubygem-oj/Makefile (revision 414025) +++ devel/rubygem-oj/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-omniauth_crowd/Makefile =================================================================== --- devel/rubygem-omniauth_crowd/Makefile (revision 414025) +++ devel/rubygem-omniauth_crowd/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-open3_backport/Makefile =================================================================== --- devel/rubygem-open3_backport/Makefile (revision 414025) +++ devel/rubygem-open3_backport/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-open4/Makefile =================================================================== --- devel/rubygem-open4/Makefile (revision 414025) +++ devel/rubygem-open4/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-orm_adapter/Makefile =================================================================== --- devel/rubygem-orm_adapter/Makefile (revision 414025) +++ devel/rubygem-orm_adapter/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-p4ruby/Makefile =================================================================== --- devel/rubygem-p4ruby/Makefile (revision 414025) +++ devel/rubygem-p4ruby/Makefile (working copy) @@ -14,8 +14,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist CONFIGURE_ARGS= --with-p4api-dir=${LOCALBASE} --with-p4api-lib=${LOCALBASE}/lib/perforce Index: devel/rubygem-paint/Makefile =================================================================== --- devel/rubygem-paint/Makefile (revision 414025) +++ devel/rubygem-paint/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-paperclip/Makefile =================================================================== --- devel/rubygem-paperclip/Makefile (revision 414025) +++ devel/rubygem-paperclip/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-parser/Makefile =================================================================== --- devel/rubygem-parser/Makefile (revision 414025) +++ devel/rubygem-parser/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ruby-parse bin/ruby-rewrite Index: devel/rubygem-piston/Makefile =================================================================== --- devel/rubygem-piston/Makefile (revision 414025) +++ devel/rubygem-piston/Makefile (working copy) @@ -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: devel/rubygem-pkg-config/Makefile =================================================================== --- devel/rubygem-pkg-config/Makefile (revision 414025) +++ devel/rubygem-pkg-config/Makefile (working copy) @@ -15,8 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= pkgconfig +USES= gem:autoplist pkgconfig .include Index: devel/rubygem-platform/Makefile =================================================================== --- devel/rubygem-platform/Makefile (revision 414025) +++ devel/rubygem-platform/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-plist/Makefile =================================================================== --- devel/rubygem-plist/Makefile (revision 414025) +++ devel/rubygem-plist/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-pluggaloid/Makefile =================================================================== --- devel/rubygem-pluggaloid/Makefile (revision 414025) +++ devel/rubygem-pluggaloid/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-polyamorous/Makefile =================================================================== --- devel/rubygem-polyamorous/Makefile (revision 414025) +++ devel/rubygem-polyamorous/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-polyglot/Makefile =================================================================== --- devel/rubygem-polyglot/Makefile (revision 414025) +++ devel/rubygem-polyglot/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-popen4/Makefile =================================================================== --- devel/rubygem-popen4/Makefile (revision 414025) +++ devel/rubygem-popen4/Makefile (working copy) @@ -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: devel/rubygem-posix-spawn/Makefile =================================================================== --- devel/rubygem-posix-spawn/Makefile (revision 414025) +++ devel/rubygem-posix-spawn/Makefile (working copy) @@ -12,8 +12,7 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/posix-spawn-benchmark Index: devel/rubygem-power_assert/Makefile =================================================================== --- devel/rubygem-power_assert/Makefile (revision 414025) +++ devel/rubygem-power_assert/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-powerbar/Makefile =================================================================== --- devel/rubygem-powerbar/Makefile (revision 414025) +++ devel/rubygem-powerbar/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/powerbar-demo Index: devel/rubygem-powerpack/Makefile =================================================================== --- devel/rubygem-powerpack/Makefile (revision 414025) +++ devel/rubygem-powerpack/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-progressbar/Makefile =================================================================== --- devel/rubygem-progressbar/Makefile (revision 414025) +++ devel/rubygem-progressbar/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-protected_attributes/Makefile =================================================================== --- devel/rubygem-protected_attributes/Makefile (revision 414025) +++ devel/rubygem-protected_attributes/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-prototype-rails/Makefile =================================================================== --- devel/rubygem-prototype-rails/Makefile (revision 414025) +++ devel/rubygem-prototype-rails/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-pry/Makefile =================================================================== --- devel/rubygem-pry/Makefile (revision 414025) +++ devel/rubygem-pry/Makefile (working copy) @@ -19,8 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/pry Index: devel/rubygem-pry-rails/Makefile =================================================================== --- devel/rubygem-pry-rails/Makefile (revision 414025) +++ devel/rubygem-pry-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-pry-remote-em/Makefile =================================================================== --- devel/rubygem-pry-remote-em/Makefile (revision 414025) +++ devel/rubygem-pry-remote-em/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/pry-remote-em Index: devel/rubygem-ptreloaded/Makefile =================================================================== --- devel/rubygem-ptreloaded/Makefile (revision 414025) +++ devel/rubygem-ptreloaded/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-pygments.rb/Makefile =================================================================== --- devel/rubygem-pygments.rb/Makefile (revision 414025) +++ devel/rubygem-pygments.rb/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-r18n-core/Makefile =================================================================== --- devel/rubygem-r18n-core/Makefile (revision 414025) +++ devel/rubygem-r18n-core/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-racc/Makefile =================================================================== --- devel/rubygem-racc/Makefile (revision 414025) +++ devel/rubygem-racc/Makefile (working copy) @@ -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: devel/rubygem-rack-mini-profiler/Makefile =================================================================== --- devel/rubygem-rack-mini-profiler/Makefile (revision 414025) +++ devel/rubygem-rack-mini-profiler/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rack-raw-upload/Makefile =================================================================== --- devel/rubygem-rack-raw-upload/Makefile (revision 414025) +++ devel/rubygem-rack-raw-upload/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rails-deprecated_sanitizer/Makefile =================================================================== --- devel/rubygem-rails-deprecated_sanitizer/Makefile (revision 414025) +++ devel/rubygem-rails-deprecated_sanitizer/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rails-observers/Makefile =================================================================== --- devel/rubygem-rails-observers/Makefile (revision 414025) +++ devel/rubygem-rails-observers/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rainbow/Makefile =================================================================== --- devel/rubygem-rainbow/Makefile (revision 414025) +++ devel/rubygem-rainbow/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rake/Makefile =================================================================== --- devel/rubygem-rake/Makefile (revision 414025) +++ devel/rubygem-rake/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rake Index: devel/rubygem-rake-compiler/Makefile =================================================================== --- devel/rubygem-rake-compiler/Makefile (revision 414025) +++ devel/rubygem-rake-compiler/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rake-compiler Index: devel/rubygem-ransack/Makefile =================================================================== --- devel/rubygem-ransack/Makefile (revision 414025) +++ devel/rubygem-ransack/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rapt/Makefile =================================================================== --- devel/rubygem-rapt/Makefile (revision 414025) +++ devel/rubygem-rapt/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rapt Index: devel/rubygem-rash/Makefile =================================================================== --- devel/rubygem-rash/Makefile (revision 414025) +++ devel/rubygem-rash/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rb-fsevent/Makefile =================================================================== --- devel/rubygem-rb-fsevent/Makefile (revision 414025) +++ devel/rubygem-rb-fsevent/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rb-inotify/Makefile =================================================================== --- devel/rubygem-rb-inotify/Makefile (revision 414025) +++ devel/rubygem-rb-inotify/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rb-kqueue/Makefile =================================================================== --- devel/rubygem-rb-kqueue/Makefile (revision 414025) +++ devel/rubygem-rb-kqueue/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rbtrace/Makefile =================================================================== --- devel/rubygem-rbtrace/Makefile (revision 414025) +++ devel/rubygem-rbtrace/Makefile (working copy) @@ -18,8 +18,7 @@ rubygem-trollop>=1.16.2:devel/rubygem-trollop USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rbtrace Index: devel/rubygem-rdoc/Makefile =================================================================== --- devel/rubygem-rdoc/Makefile (revision 414025) +++ devel/rubygem-rdoc/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri Index: devel/rubygem-rdoc3/Makefile =================================================================== --- devel/rubygem-rdoc3/Makefile (revision 414025) +++ devel/rubygem-rdoc3/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri Index: devel/rubygem-readwritesettings/Makefile =================================================================== --- devel/rubygem-readwritesettings/Makefile (revision 414025) +++ devel/rubygem-readwritesettings/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-recaptcha/Makefile =================================================================== --- devel/rubygem-recaptcha/Makefile (revision 414025) +++ devel/rubygem-recaptcha/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-redis-activesupport/Makefile =================================================================== --- devel/rubygem-redis-activesupport/Makefile (revision 414025) +++ devel/rubygem-redis-activesupport/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-redis-store/Makefile =================================================================== --- devel/rubygem-redis-store/Makefile (revision 414025) +++ devel/rubygem-redis-store/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-redmine_plugin_support/Makefile =================================================================== --- devel/rubygem-redmine_plugin_support/Makefile (revision 414025) +++ devel/rubygem-redmine_plugin_support/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ref/Makefile =================================================================== --- devel/rubygem-ref/Makefile (revision 414025) +++ devel/rubygem-ref/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-request_store/Makefile =================================================================== --- devel/rubygem-request_store/Makefile (revision 414025) +++ devel/rubygem-request_store/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-require_all/Makefile =================================================================== --- devel/rubygem-require_all/Makefile (revision 414025) +++ devel/rubygem-require_all/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-retryable/Makefile =================================================================== --- devel/rubygem-retryable/Makefile (revision 414025) +++ devel/rubygem-retryable/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rgl/Makefile =================================================================== --- devel/rubygem-rgl/Makefile (revision 414025) +++ devel/rubygem-rgl/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rodzilla/Makefile =================================================================== --- devel/rubygem-rodzilla/Makefile (revision 414025) +++ devel/rubygem-rodzilla/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rotp/Makefile =================================================================== --- devel/rubygem-rotp/Makefile (revision 414025) +++ devel/rubygem-rotp/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rotp Index: devel/rubygem-rr/Makefile =================================================================== --- devel/rubygem-rr/Makefile (revision 414025) +++ devel/rubygem-rr/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rrd-ffi/Makefile =================================================================== --- devel/rubygem-rrd-ffi/Makefile (revision 414025) +++ devel/rubygem-rrd-ffi/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rscm/Makefile =================================================================== --- devel/rubygem-rscm/Makefile (revision 414025) +++ devel/rubygem-rscm/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec/Makefile =================================================================== --- devel/rubygem-rspec/Makefile (revision 414025) +++ devel/rubygem-rspec/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec-core/Makefile =================================================================== --- devel/rubygem-rspec-core/Makefile (revision 414025) +++ devel/rubygem-rspec-core/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rspec Index: devel/rubygem-rspec-expectations/Makefile =================================================================== --- devel/rubygem-rspec-expectations/Makefile (revision 414025) +++ devel/rubygem-rspec-expectations/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec-logsplit/Makefile =================================================================== --- devel/rubygem-rspec-logsplit/Makefile (revision 414025) +++ devel/rubygem-rspec-logsplit/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec-mocks/Makefile =================================================================== --- devel/rubygem-rspec-mocks/Makefile (revision 414025) +++ devel/rubygem-rspec-mocks/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec-rails/Makefile =================================================================== --- devel/rubygem-rspec-rails/Makefile (revision 414025) +++ devel/rubygem-rspec-rails/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rspec-support/Makefile =================================================================== --- devel/rubygem-rspec-support/Makefile (revision 414025) +++ devel/rubygem-rspec-support/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rubigen/Makefile =================================================================== --- devel/rubygem-rubigen/Makefile (revision 414025) +++ devel/rubygem-rubigen/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/install_rubigen_scripts \ bin/ruby_app \ Index: devel/rubygem-rubocop/Makefile =================================================================== --- devel/rubygem-rubocop/Makefile (revision 414025) +++ devel/rubygem-rubocop/Makefile (working copy) @@ -19,8 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rubocop Index: devel/rubygem-ruby-atmos-pure/Makefile =================================================================== --- devel/rubygem-ruby-atmos-pure/Makefile (revision 414025) +++ devel/rubygem-ruby-atmos-pure/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruby-bugzilla/Makefile =================================================================== --- devel/rubygem-ruby-bugzilla/Makefile (revision 414025) +++ devel/rubygem-ruby-bugzilla/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bzconsole Index: devel/rubygem-ruby-filemagic/Makefile =================================================================== --- devel/rubygem-ruby-filemagic/Makefile (revision 414025) +++ devel/rubygem-ruby-filemagic/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruby-fogbugz/Makefile =================================================================== --- devel/rubygem-ruby-fogbugz/Makefile (revision 414025) +++ devel/rubygem-ruby-fogbugz/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruby-libvirt/Makefile =================================================================== --- devel/rubygem-ruby-libvirt/Makefile (revision 414025) +++ devel/rubygem-ruby-libvirt/Makefile (working copy) @@ -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: devel/rubygem-ruby-ole/Makefile =================================================================== --- devel/rubygem-ruby-ole/Makefile (revision 414025) +++ devel/rubygem-ruby-ole/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/oletool \ test/*.rb Index: devel/rubygem-ruby-prof/Makefile =================================================================== --- devel/rubygem-ruby-prof/Makefile (revision 414025) +++ devel/rubygem-ruby-prof/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ruby-prof bin/ruby-prof-check-trace Index: devel/rubygem-ruby-progressbar/Makefile =================================================================== --- devel/rubygem-ruby-progressbar/Makefile (revision 414025) +++ devel/rubygem-ruby-progressbar/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruby-sdl-ffi/Makefile =================================================================== --- devel/rubygem-ruby-sdl-ffi/Makefile (revision 414025) +++ devel/rubygem-ruby-sdl-ffi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruby2ruby/Makefile =================================================================== --- devel/rubygem-ruby2ruby/Makefile (revision 414025) +++ devel/rubygem-ruby2ruby/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/r2r_show Index: devel/rubygem-ruby_parser/Makefile =================================================================== --- devel/rubygem-ruby_parser/Makefile (revision 414025) +++ devel/rubygem-ruby_parser/Makefile (working copy) @@ -13,13 +13,11 @@ RUN_DEPENDS= rubygem-sexp_processor>=4.1:devel/rubygem-sexp_processor -USES= shebangfix +NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -NO_ARCH= yes +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/ruby_parse* -RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ruby_parse \ bin/ruby_parse_extract_error Index: devel/rubygem-rubygame/Makefile =================================================================== --- devel/rubygem-rubygame/Makefile (revision 414025) +++ devel/rubygem-rubygame/Makefile (working copy) @@ -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: devel/rubygem-rubygems-mirror/Makefile =================================================================== --- devel/rubygem-rubygems-mirror/Makefile (revision 414025) +++ devel/rubygem-rubygems-mirror/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rubygems-tasks/Makefile =================================================================== --- devel/rubygem-rubygems-tasks/Makefile (revision 414025) +++ devel/rubygem-rubygems-tasks/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rubygems-test/Makefile =================================================================== --- devel/rubygem-rubygems-test/Makefile (revision 414025) +++ devel/rubygem-rubygems-test/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rubyinline/Makefile =================================================================== --- devel/rubygem-rubyinline/Makefile (revision 414025) +++ devel/rubygem-rubyinline/Makefile (working copy) @@ -20,9 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= tutorial/example1.rb \ tutorial/example2.rb Index: devel/rubygem-rubyinlineaccel/Makefile =================================================================== --- devel/rubygem-rubyinlineaccel/Makefile (revision 414025) +++ devel/rubygem-rubyinlineaccel/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rubytree/Makefile =================================================================== --- devel/rubygem-rubytree/Makefile (revision 414025) +++ devel/rubygem-rubytree/Makefile (working copy) @@ -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: devel/rubygem-rufus-scheduler/Makefile =================================================================== --- devel/rubygem-rufus-scheduler/Makefile (revision 414025) +++ devel/rubygem-rufus-scheduler/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-rugged/Makefile =================================================================== --- devel/rubygem-rugged/Makefile (revision 414025) +++ devel/rubygem-rugged/Makefile (working copy) @@ -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: devel/rubygem-runt/Makefile =================================================================== --- devel/rubygem-runt/Makefile (revision 414025) +++ devel/rubygem-runt/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-ruport/Makefile =================================================================== --- devel/rubygem-ruport/Makefile (revision 414025) +++ devel/rubygem-ruport/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-safe_yaml/Makefile =================================================================== --- devel/rubygem-safe_yaml/Makefile (revision 414025) +++ devel/rubygem-safe_yaml/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bundle_install_all_ruby_versions.sh \ run_specs_all_ruby_versions.sh PLIST_FILES= bin/safe_yaml Index: devel/rubygem-sdoc/Makefile =================================================================== --- devel/rubygem-sdoc/Makefile (revision 414025) +++ devel/rubygem-sdoc/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sdoc bin/sdoc-merge Index: devel/rubygem-semantic_puppet/Makefile =================================================================== --- devel/rubygem-semantic_puppet/Makefile (revision 414025) +++ devel/rubygem-semantic_puppet/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-semi_semantic/Makefile =================================================================== --- devel/rubygem-semi_semantic/Makefile (revision 414025) +++ devel/rubygem-semi_semantic/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sentry-raven/Makefile =================================================================== --- devel/rubygem-sentry-raven/Makefile (revision 414025) +++ devel/rubygem-sentry-raven/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sequel/Makefile =================================================================== --- devel/rubygem-sequel/Makefile (revision 414025) +++ devel/rubygem-sequel/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sequel Index: devel/rubygem-sequel3/Makefile =================================================================== --- devel/rubygem-sequel3/Makefile (revision 414025) +++ devel/rubygem-sequel3/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sequel Index: devel/rubygem-settingslogic/Makefile =================================================================== --- devel/rubygem-settingslogic/Makefile (revision 414025) +++ devel/rubygem-settingslogic/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sexp_processor/Makefile =================================================================== --- devel/rubygem-sexp_processor/Makefile (revision 414025) +++ devel/rubygem-sexp_processor/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-shoulda/Makefile =================================================================== --- devel/rubygem-shoulda/Makefile (revision 414025) +++ devel/rubygem-shoulda/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-shoulda-context/Makefile =================================================================== --- devel/rubygem-shoulda-context/Makefile (revision 414025) +++ devel/rubygem-shoulda-context/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/convert_to_should_syntax Index: devel/rubygem-shoulda-matchers/Makefile =================================================================== --- devel/rubygem-shoulda-matchers/Makefile (revision 414025) +++ devel/rubygem-shoulda-matchers/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= script/* Index: devel/rubygem-sidekiq/Makefile =================================================================== --- devel/rubygem-sidekiq/Makefile (revision 414025) +++ devel/rubygem-sidekiq/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sidekiq bin/sidekiqctl Index: devel/rubygem-sidekiq-cron/Makefile =================================================================== --- devel/rubygem-sidekiq-cron/Makefile (revision 414025) +++ devel/rubygem-sidekiq-cron/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sidetiq/Makefile =================================================================== --- devel/rubygem-sidetiq/Makefile (revision 414025) +++ devel/rubygem-sidetiq/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sigdump/Makefile =================================================================== --- devel/rubygem-sigdump/Makefile (revision 414025) +++ devel/rubygem-sigdump/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-simple_form/Makefile =================================================================== --- devel/rubygem-simple_form/Makefile (revision 414025) +++ devel/rubygem-simple_form/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-simplecov/Makefile =================================================================== --- devel/rubygem-simplecov/Makefile (revision 414025) +++ devel/rubygem-simplecov/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-slack-notifier/Makefile =================================================================== --- devel/rubygem-slack-notifier/Makefile (revision 414025) +++ devel/rubygem-slack-notifier/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-slim/Makefile =================================================================== --- devel/rubygem-slim/Makefile (revision 414025) +++ devel/rubygem-slim/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/slimrb Index: devel/rubygem-slop/Makefile =================================================================== --- devel/rubygem-slop/Makefile (revision 414025) +++ devel/rubygem-slop/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-slop3/Makefile =================================================================== --- devel/rubygem-slop3/Makefile (revision 414025) +++ devel/rubygem-slop3/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-soap4r/Makefile =================================================================== --- devel/rubygem-soap4r/Makefile (revision 414025) +++ devel/rubygem-soap4r/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/wsdl2ruby.rb bin/xsd2ruby.rb Index: devel/rubygem-spring/Makefile =================================================================== --- devel/rubygem-spring/Makefile (revision 414025) +++ devel/rubygem-spring/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/spring Index: devel/rubygem-sprockets/Makefile =================================================================== --- devel/rubygem-sprockets/Makefile (revision 414025) +++ devel/rubygem-sprockets/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sprockets Index: devel/rubygem-sprockets-helpers/Makefile =================================================================== --- devel/rubygem-sprockets-helpers/Makefile (revision 414025) +++ devel/rubygem-sprockets-helpers/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sprockets-rails/Makefile =================================================================== --- devel/rubygem-sprockets-rails/Makefile (revision 414025) +++ devel/rubygem-sprockets-rails/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sprockets-sass/Makefile =================================================================== --- devel/rubygem-sprockets-sass/Makefile (revision 414025) +++ devel/rubygem-sprockets-sass/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sprockets211/Makefile =================================================================== --- devel/rubygem-sprockets211/Makefile (revision 414025) +++ devel/rubygem-sprockets211/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sprockets Index: devel/rubygem-sprockets22/Makefile =================================================================== --- devel/rubygem-sprockets22/Makefile (revision 414025) +++ devel/rubygem-sprockets22/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.2 Index: devel/rubygem-sprockets3/Makefile =================================================================== --- devel/rubygem-sprockets3/Makefile (revision 414025) +++ devel/rubygem-sprockets3/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: @${RM} ${STAGEDIR}${PREFIX}/bin/sprockets Index: devel/rubygem-spruz/Makefile =================================================================== --- devel/rubygem-spruz/Makefile (revision 414025) +++ devel/rubygem-spruz/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/enum Index: devel/rubygem-state_machine/Makefile =================================================================== --- devel/rubygem-state_machine/Makefile (revision 414025) +++ devel/rubygem-state_machine/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-state_machines/Makefile =================================================================== --- devel/rubygem-state_machines/Makefile (revision 414025) +++ devel/rubygem-state_machines/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-statsd/Makefile =================================================================== --- devel/rubygem-statsd/Makefile (revision 414025) +++ devel/rubygem-statsd/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/statsd Index: devel/rubygem-stella/Makefile =================================================================== --- devel/rubygem-stella/Makefile (revision 414025) +++ devel/rubygem-stella/Makefile (working copy) @@ -26,9 +26,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/stella Index: devel/rubygem-stemmer/Makefile =================================================================== --- devel/rubygem-stemmer/Makefile (revision 414025) +++ devel/rubygem-stemmer/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-stomp/Makefile =================================================================== --- devel/rubygem-stomp/Makefile (revision 414025) +++ devel/rubygem-stomp/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/catstomp bin/stompcat Index: devel/rubygem-storable/Makefile =================================================================== --- devel/rubygem-storable/Makefile (revision 414025) +++ devel/rubygem-storable/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-stream/Makefile =================================================================== --- devel/rubygem-stream/Makefile (revision 414025) +++ devel/rubygem-stream/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-streetaddress/Makefile =================================================================== --- devel/rubygem-streetaddress/Makefile (revision 414025) +++ devel/rubygem-streetaddress/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-stringex/Makefile =================================================================== --- devel/rubygem-stringex/Makefile (revision 414025) +++ devel/rubygem-stringex/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-structured_warnings/Makefile =================================================================== --- devel/rubygem-structured_warnings/Makefile (revision 414025) +++ devel/rubygem-structured_warnings/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-subexec/Makefile =================================================================== --- devel/rubygem-subexec/Makefile (revision 414025) +++ devel/rubygem-subexec/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sugar-high/Makefile =================================================================== --- devel/rubygem-sugar-high/Makefile (revision 414025) +++ devel/rubygem-sugar-high/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sumbur/Makefile =================================================================== --- devel/rubygem-sumbur/Makefile (revision 414025) +++ devel/rubygem-sumbur/Makefile (working copy) @@ -10,7 +10,6 @@ COMMENT= Consistent spreading for server balancing USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-sundawg_country_codes/Makefile =================================================================== --- devel/rubygem-sundawg_country_codes/Makefile (revision 414025) +++ devel/rubygem-sundawg_country_codes/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-svn2git/Makefile =================================================================== --- devel/rubygem-svn2git/Makefile (revision 414025) +++ devel/rubygem-svn2git/Makefile (working copy) @@ -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: devel/rubygem-sysinfo/Makefile =================================================================== --- devel/rubygem-sysinfo/Makefile (revision 414025) +++ devel/rubygem-sysinfo/Makefile (working copy) @@ -17,9 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/sysinfo PLIST_FILES= bin/sysinfo Index: devel/rubygem-systemu/Makefile =================================================================== --- devel/rubygem-systemu/Makefile (revision 414025) +++ devel/rubygem-systemu/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-table_print/Makefile =================================================================== --- devel/rubygem-table_print/Makefile (revision 414025) +++ devel/rubygem-table_print/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-tdiff/Makefile =================================================================== --- devel/rubygem-tdiff/Makefile (revision 414025) +++ devel/rubygem-tdiff/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-templater/Makefile =================================================================== --- devel/rubygem-templater/Makefile (revision 414025) +++ devel/rubygem-templater/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-temple/Makefile =================================================================== --- devel/rubygem-temple/Makefile (revision 414025) +++ devel/rubygem-temple/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-term-ansicolor/Makefile =================================================================== --- devel/rubygem-term-ansicolor/Makefile (revision 414025) +++ devel/rubygem-term-ansicolor/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/colortab bin/term_display bin/term_cdiff bin/term_decolor bin/term_mandel Index: devel/rubygem-test-unit/Makefile =================================================================== --- devel/rubygem-test-unit/Makefile (revision 414025) +++ devel/rubygem-test-unit/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-thor/Makefile =================================================================== --- devel/rubygem-thor/Makefile (revision 414025) +++ devel/rubygem-thor/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/thor Index: devel/rubygem-thread_safe/Makefile =================================================================== --- devel/rubygem-thread_safe/Makefile (revision 414025) +++ devel/rubygem-thread_safe/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-thread_safe1/Makefile =================================================================== --- devel/rubygem-thread_safe1/Makefile (revision 414025) +++ devel/rubygem-thread_safe1/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^0\.1 Index: devel/rubygem-thrift/Makefile =================================================================== --- devel/rubygem-thrift/Makefile (revision 414025) +++ devel/rubygem-thrift/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist # Workaround for stage-qa: post-install: Index: devel/rubygem-tilt/Makefile =================================================================== --- devel/rubygem-tilt/Makefile (revision 414025) +++ devel/rubygem-tilt/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/tilt Index: devel/rubygem-tilt1/Makefile =================================================================== --- devel/rubygem-tilt1/Makefile (revision 414025) +++ devel/rubygem-tilt1/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^1\. Index: devel/rubygem-timers/Makefile =================================================================== --- devel/rubygem-timers/Makefile (revision 414025) +++ devel/rubygem-timers/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-tins/Makefile =================================================================== --- devel/rubygem-tins/Makefile (revision 414025) +++ devel/rubygem-tins/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-titlecase/Makefile =================================================================== --- devel/rubygem-titlecase/Makefile (revision 414025) +++ devel/rubygem-titlecase/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-toml/Makefile =================================================================== --- devel/rubygem-toml/Makefile (revision 414025) +++ devel/rubygem-toml/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-transaction-simple/Makefile =================================================================== --- devel/rubygem-transaction-simple/Makefile (revision 414025) +++ devel/rubygem-transaction-simple/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-travis/Makefile =================================================================== --- devel/rubygem-travis/Makefile (revision 414025) +++ devel/rubygem-travis/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/travis Index: devel/rubygem-treetop/Makefile =================================================================== --- devel/rubygem-treetop/Makefile (revision 414025) +++ devel/rubygem-treetop/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/tt Index: devel/rubygem-trollop/Makefile =================================================================== --- devel/rubygem-trollop/Makefile (revision 414025) +++ devel/rubygem-trollop/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-trollop1/Makefile =================================================================== --- devel/rubygem-trollop1/Makefile (revision 414025) +++ devel/rubygem-trollop1/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-turn/Makefile =================================================================== --- devel/rubygem-turn/Makefile (revision 414025) +++ devel/rubygem-turn/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/turn Index: devel/rubygem-typed-array/Makefile =================================================================== --- devel/rubygem-typed-array/Makefile (revision 414025) +++ devel/rubygem-typed-array/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-tzinfo/Makefile =================================================================== --- devel/rubygem-tzinfo/Makefile (revision 414025) +++ devel/rubygem-tzinfo/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-tzinfo03/Makefile =================================================================== --- devel/rubygem-tzinfo03/Makefile (revision 414025) +++ devel/rubygem-tzinfo03/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-unicode/Makefile =================================================================== --- devel/rubygem-unicode/Makefile (revision 414025) +++ devel/rubygem-unicode/Makefile (working copy) @@ -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: devel/rubygem-unicode-display_width/Makefile =================================================================== --- devel/rubygem-unicode-display_width/Makefile (revision 414025) +++ devel/rubygem-unicode-display_width/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-uuid/Makefile =================================================================== --- devel/rubygem-uuid/Makefile (revision 414025) +++ devel/rubygem-uuid/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/uuid Index: devel/rubygem-uuidtools/Makefile =================================================================== --- devel/rubygem-uuidtools/Makefile (revision 414025) +++ devel/rubygem-uuidtools/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-validatable/Makefile =================================================================== --- devel/rubygem-validatable/Makefile (revision 414025) +++ devel/rubygem-validatable/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-versionomy/Makefile =================================================================== --- devel/rubygem-versionomy/Makefile (revision 414025) +++ devel/rubygem-versionomy/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-virtus/Makefile =================================================================== --- devel/rubygem-virtus/Makefile (revision 414025) +++ devel/rubygem-virtus/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-warbler/Makefile =================================================================== --- devel/rubygem-warbler/Makefile (revision 414025) +++ devel/rubygem-warbler/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/warble Index: devel/rubygem-warden/Makefile =================================================================== --- devel/rubygem-warden/Makefile (revision 414025) +++ devel/rubygem-warden/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-wdm/Makefile =================================================================== --- devel/rubygem-wdm/Makefile (revision 414025) +++ devel/rubygem-wdm/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-web-console/Makefile =================================================================== --- devel/rubygem-web-console/Makefile (revision 414025) +++ devel/rubygem-web-console/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-webby/Makefile =================================================================== --- devel/rubygem-webby/Makefile (revision 414025) +++ devel/rubygem-webby/Makefile (working copy) @@ -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: devel/rubygem-wmi-lite/Makefile =================================================================== --- devel/rubygem-wmi-lite/Makefile (revision 414025) +++ devel/rubygem-wmi-lite/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-xpath/Makefile =================================================================== --- devel/rubygem-xpath/Makefile (revision 414025) +++ devel/rubygem-xpath/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-yajl-ruby/Makefile =================================================================== --- devel/rubygem-yajl-ruby/Makefile (revision 414025) +++ devel/rubygem-yajl-ruby/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-yui-compressor/Makefile =================================================================== --- devel/rubygem-yui-compressor/Makefile (revision 414025) +++ devel/rubygem-yui-compressor/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: devel/rubygem-zentest/Makefile =================================================================== --- devel/rubygem-zentest/Makefile (revision 414025) +++ devel/rubygem-zentest/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/autotest \ bin/multigem \ Index: dns/rubygem-dnsruby/Makefile =================================================================== --- dns/rubygem-dnsruby/Makefile (revision 414025) +++ dns/rubygem-dnsruby/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: dns/rubygem-net-dns/Makefile =================================================================== --- dns/rubygem-net-dns/Makefile (revision 414025) +++ dns/rubygem-net-dns/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: dns/rubygem-public_suffix/Makefile =================================================================== --- dns/rubygem-public_suffix/Makefile (revision 414025) +++ dns/rubygem-public_suffix/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-patch: @${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/data/definitions.txt Index: dns/rubygem-public_suffix_service/Makefile =================================================================== --- dns/rubygem-public_suffix_service/Makefile (revision 414025) +++ dns/rubygem-public_suffix_service/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-patch: @${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/lib/public_suffix/definitions.txt Index: emulators/rubygem-fission/Makefile =================================================================== --- emulators/rubygem-fission/Makefile (revision 414025) +++ emulators/rubygem-fission/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/fission Index: finance/rubygem-money/Makefile =================================================================== --- finance/rubygem-money/Makefile (revision 414025) +++ finance/rubygem-money/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: ftp/rubygem-curb/Makefile =================================================================== --- ftp/rubygem-curb/Makefile (revision 414025) +++ ftp/rubygem-curb/Makefile (working copy) @@ -15,7 +15,6 @@ LIB_DEPENDS= libcurl.so:ftp/curl USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: games/lolcat/Makefile =================================================================== --- games/lolcat/Makefile (revision 414025) +++ games/lolcat/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/lolcat Index: games/rubygem-fortune_gem/Makefile =================================================================== --- games/rubygem-fortune_gem/Makefile (revision 414025) +++ games/rubygem-fortune_gem/Makefile (working copy) @@ -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: graphics/rubygem-cairo/Makefile =================================================================== --- graphics/rubygem-cairo/Makefile (revision 414025) +++ graphics/rubygem-cairo/Makefile (working copy) @@ -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: graphics/rubygem-captcha/Makefile =================================================================== --- graphics/rubygem-captcha/Makefile (revision 414025) +++ graphics/rubygem-captcha/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-chunky_png/Makefile =================================================================== --- graphics/rubygem-chunky_png/Makefile (revision 414025) +++ graphics/rubygem-chunky_png/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-clutter/Makefile =================================================================== --- graphics/rubygem-clutter/Makefile (revision 414025) +++ graphics/rubygem-clutter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-clutter-gtk/Makefile =================================================================== --- graphics/rubygem-clutter-gtk/Makefile (revision 414025) +++ graphics/rubygem-clutter-gtk/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-dragonfly/Makefile =================================================================== --- graphics/rubygem-dragonfly/Makefile (revision 414025) +++ graphics/rubygem-dragonfly/Makefile (working copy) @@ -19,9 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= dev/test_rails ruby_OLD_CMD= "env ruby" Index: graphics/rubygem-emoji/Makefile =================================================================== --- graphics/rubygem-emoji/Makefile (revision 414025) +++ graphics/rubygem-emoji/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-exifr/Makefile =================================================================== --- graphics/rubygem-exifr/Makefile (revision 414025) +++ graphics/rubygem-exifr/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/exifr Index: graphics/rubygem-ezprint/Makefile =================================================================== --- graphics/rubygem-ezprint/Makefile (revision 414025) +++ graphics/rubygem-ezprint/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-fastimage/Makefile =================================================================== --- graphics/rubygem-fastimage/Makefile (revision 414025) +++ graphics/rubygem-fastimage/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-flamegraph/Makefile =================================================================== --- graphics/rubygem-flamegraph/Makefile (revision 414025) +++ graphics/rubygem-flamegraph/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-gd2/Makefile =================================================================== --- graphics/rubygem-gd2/Makefile (revision 414025) +++ graphics/rubygem-gd2/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-patch: @${REINPLACE_CMD} 's|libgd.so.2|libgd.so.5|' ${WRKSRC}/lib/gd2.rb Index: graphics/rubygem-gdk_pixbuf2/Makefile =================================================================== --- graphics/rubygem-gdk_pixbuf2/Makefile (revision 414025) +++ graphics/rubygem-gdk_pixbuf2/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= gdkpixbuf2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-gemojione/Makefile =================================================================== --- graphics/rubygem-gemojione/Makefile (revision 414025) +++ graphics/rubygem-gemojione/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-geokit/Makefile =================================================================== --- graphics/rubygem-geokit/Makefile (revision 414025) +++ graphics/rubygem-geokit/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-gitlab_emoji/Makefile =================================================================== --- graphics/rubygem-gitlab_emoji/Makefile (revision 414025) +++ graphics/rubygem-gitlab_emoji/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-goocanvas/Makefile =================================================================== --- graphics/rubygem-goocanvas/Makefile (revision 414025) +++ graphics/rubygem-goocanvas/Makefile (working copy) @@ -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: graphics/rubygem-gruff/Makefile =================================================================== --- graphics/rubygem-gruff/Makefile (revision 414025) +++ graphics/rubygem-gruff/Makefile (working copy) @@ -17,9 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= test/image_compare.rb ruby_OLD_CMD= ruby Index: graphics/rubygem-image_science/Makefile =================================================================== --- graphics/rubygem-image_science/Makefile (revision 414025) +++ graphics/rubygem-image_science/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/image_science_thumb Index: graphics/rubygem-imagesize/Makefile =================================================================== --- graphics/rubygem-imagesize/Makefile (revision 414025) +++ graphics/rubygem-imagesize/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-mini_magick/Makefile =================================================================== --- graphics/rubygem-mini_magick/Makefile (revision 414025) +++ graphics/rubygem-mini_magick/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist X11_RUN_DEPENDS= convert:graphics/ImageMagick X11_RUN_DEPENDS_OFF= convert:graphics/ImageMagick-nox11 Index: graphics/rubygem-objectdetect/Makefile =================================================================== --- graphics/rubygem-objectdetect/Makefile (revision 414025) +++ graphics/rubygem-objectdetect/Makefile (working copy) @@ -14,10 +14,8 @@ LIB_DEPENDS= libopencv_legacy.so:graphics/opencv -USES= pkgconfig USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist pkgconfig post-patch: ${REINPLACE_CMD} -E 's|(objectdetect)|\1/version|' ${WRKSRC}/test/test_helper.rb Index: graphics/rubygem-opengl/Makefile =================================================================== --- graphics/rubygem-opengl/Makefile (revision 414025) +++ graphics/rubygem-opengl/Makefile (working copy) @@ -15,7 +15,6 @@ USE_GL= glut USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-pdfkit/Makefile =================================================================== --- graphics/rubygem-pdfkit/Makefile (revision 414025) +++ graphics/rubygem-pdfkit/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-png/Makefile =================================================================== --- graphics/rubygem-png/Makefile (revision 414025) +++ graphics/rubygem-png/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-railroad/Makefile =================================================================== --- graphics/rubygem-railroad/Makefile (revision 414025) +++ graphics/rubygem-railroad/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/railroad Index: graphics/rubygem-rmagick/Makefile =================================================================== --- graphics/rubygem-rmagick/Makefile (revision 414025) +++ graphics/rubygem-rmagick/Makefile (working copy) @@ -14,9 +14,7 @@ OPTIONS_DEFAULT=X11 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= pkgconfig +USES= gem:autoplist pkgconfig X11_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick X11_LIB_DEPENDS_OFF= libMagickWand-6.so:graphics/ImageMagick-nox11 Index: graphics/rubygem-rsvg2/Makefile =================================================================== --- graphics/rubygem-rsvg2/Makefile (revision 414025) +++ graphics/rubygem-rsvg2/Makefile (working copy) @@ -15,7 +15,6 @@ USE_GNOME= librsvg2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: graphics/rubygem-ruby-graphviz/Makefile =================================================================== --- graphics/rubygem-ruby-graphviz/Makefile (revision 414025) +++ graphics/rubygem-ruby-graphviz/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/dot2ruby bin/gem2gv bin/git2gv bin/ruby2gv bin/xml2gv Index: graphics/rubygem-scruffy/Makefile =================================================================== --- graphics/rubygem-scruffy/Makefile (revision 414025) +++ graphics/rubygem-scruffy/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-patch: @${REINPLACE_CMD} -e 's|#{options|0 0 #{options|' ${WRKSRC}/lib/scruffy/renderers/base.rb Index: irc/rubygem-cinch/Makefile =================================================================== --- irc/rubygem-cinch/Makefile (revision 414025) +++ irc/rubygem-cinch/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: irc/rubygem-cogbot/Makefile =================================================================== --- irc/rubygem-cogbot/Makefile (revision 414025) +++ irc/rubygem-cogbot/Makefile (working copy) @@ -24,8 +24,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/cogbot Index: irc/rubygem-lita-irc/Makefile =================================================================== --- irc/rubygem-lita-irc/Makefile (revision 414025) +++ irc/rubygem-lita-irc/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: irc/rubygem-net-irc/Makefile =================================================================== --- irc/rubygem-net-irc/Makefile (revision 414025) +++ irc/rubygem-net-irc/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: japanese/rubygem-jpmobile/Makefile =================================================================== --- japanese/rubygem-jpmobile/Makefile (revision 414025) +++ japanese/rubygem-jpmobile/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist BROKEN_RUBY23= yes Index: japanese/rubygem-jpmobile-ipaddresses/Makefile =================================================================== --- japanese/rubygem-jpmobile-ipaddresses/Makefile (revision 414025) +++ japanese/rubygem-jpmobile-ipaddresses/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: japanese/rubygem-jpmobile-terminfo/Makefile =================================================================== --- japanese/rubygem-jpmobile-terminfo/Makefile (revision 414025) +++ japanese/rubygem-jpmobile-terminfo/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: japanese/rubygem-jpmobile4/Makefile =================================================================== --- japanese/rubygem-jpmobile4/Makefile (revision 414025) +++ japanese/rubygem-jpmobile4/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist OPTIONS_DEFINE= GEOKIT IPADDRESSES TERMINFO GEOKIT_DESC= Run with geokit Index: japanese/rubygem-mail-iso-2022-jp/Makefile =================================================================== --- japanese/rubygem-mail-iso-2022-jp/Makefile (revision 414025) +++ japanese/rubygem-mail-iso-2022-jp/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: japanese/rubygem-myrurema/Makefile =================================================================== --- japanese/rubygem-myrurema/Makefile (revision 414025) +++ japanese/rubygem-myrurema/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rurema Index: java/rubygem-rjb/Makefile =================================================================== --- java/rubygem-rjb/Makefile (revision 414025) +++ java/rubygem-rjb/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist USE_JAVA= yes GEM_ENV= JAVA_HOME=${JAVA_HOME} Index: mail/rubygem-actionmailer/Makefile =================================================================== --- mail/rubygem-actionmailer/Makefile (revision 414025) +++ mail/rubygem-actionmailer/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-actionmailer4/Makefile =================================================================== --- mail/rubygem-actionmailer4/Makefile (revision 414025) +++ mail/rubygem-actionmailer4/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-email_reply_parser/Makefile =================================================================== --- mail/rubygem-email_reply_parser/Makefile (revision 414025) +++ mail/rubygem-email_reply_parser/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-email_reply_parser-discourse/Makefile =================================================================== --- mail/rubygem-email_reply_parser-discourse/Makefile (revision 414025) +++ mail/rubygem-email_reply_parser-discourse/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-exception_notification/Makefile =================================================================== --- mail/rubygem-exception_notification/Makefile (revision 414025) +++ mail/rubygem-exception_notification/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-larch/Makefile =================================================================== --- mail/rubygem-larch/Makefile (revision 414025) +++ mail/rubygem-larch/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/larch Index: mail/rubygem-mail/Makefile =================================================================== --- mail/rubygem-mail/Makefile (revision 414025) +++ mail/rubygem-mail/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-mail25/Makefile =================================================================== --- mail/rubygem-mail25/Makefile (revision 414025) +++ mail/rubygem-mail25/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.5 Index: mail/rubygem-mail_room/Makefile =================================================================== --- mail/rubygem-mail_room/Makefile (revision 414025) +++ mail/rubygem-mail_room/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mail_room Index: mail/rubygem-mailboxer/Makefile =================================================================== --- mail/rubygem-mailboxer/Makefile (revision 414025) +++ mail/rubygem-mailboxer/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-mailfactory/Makefile =================================================================== --- mail/rubygem-mailfactory/Makefile (revision 414025) +++ mail/rubygem-mailfactory/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-pony/Makefile =================================================================== --- mail/rubygem-pony/Makefile (revision 414025) +++ mail/rubygem-pony/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-premailer/Makefile =================================================================== --- mail/rubygem-premailer/Makefile (revision 414025) +++ mail/rubygem-premailer/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/premailer Index: mail/rubygem-premailer-rails/Makefile =================================================================== --- mail/rubygem-premailer-rails/Makefile (revision 414025) +++ mail/rubygem-premailer-rails/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-rmail/Makefile =================================================================== --- mail/rubygem-rmail/Makefile (revision 414025) +++ mail/rubygem-rmail/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-roadie/Makefile =================================================================== --- mail/rubygem-roadie/Makefile (revision 414025) +++ mail/rubygem-roadie/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-roadie-rails/Makefile =================================================================== --- mail/rubygem-roadie-rails/Makefile (revision 414025) +++ mail/rubygem-roadie-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-ruby-qmail/Makefile =================================================================== --- mail/rubygem-ruby-qmail/Makefile (revision 414025) +++ mail/rubygem-ruby-qmail/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: mail/rubygem-tmail/Makefile =================================================================== --- mail/rubygem-tmail/Makefile (revision 414025) +++ mail/rubygem-tmail/Makefile (working copy) @@ -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: mail/rubygem-vmail/Makefile =================================================================== --- mail/rubygem-vmail/Makefile (revision 414025) +++ mail/rubygem-vmail/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/vmail bin/vmail_client bin/vmailsend Index: math/rubygem-expression_parser/Makefile =================================================================== --- math/rubygem-expression_parser/Makefile (revision 414025) +++ math/rubygem-expression_parser/Makefile (working copy) @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: math/rubygem-fftw3/Makefile =================================================================== --- math/rubygem-fftw3/Makefile (revision 414025) +++ math/rubygem-fftw3/Makefile (working copy) @@ -14,7 +14,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: math/rubygem-narray/Makefile =================================================================== --- math/rubygem-narray/Makefile (revision 414025) +++ math/rubygem-narray/Makefile (working copy) @@ -11,8 +11,7 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include "${.CURDIR}/Makefile.version" Index: math/rubygem-narray_miss/Makefile =================================================================== --- math/rubygem-narray_miss/Makefile (revision 414025) +++ math/rubygem-narray_miss/Makefile (working copy) @@ -13,7 +13,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: math/rubygem-numru-misc/Makefile =================================================================== --- math/rubygem-numru-misc/Makefile (revision 414025) +++ math/rubygem-numru-misc/Makefile (working copy) @@ -14,7 +14,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: math/rubygem-numru-units/Makefile =================================================================== --- math/rubygem-numru-units/Makefile (revision 414025) +++ math/rubygem-numru-units/Makefile (working copy) @@ -13,7 +13,6 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: math/rubygem-rb-gsl/Makefile =================================================================== --- math/rubygem-rb-gsl/Makefile (revision 414025) +++ math/rubygem-rb-gsl/Makefile (working copy) @@ -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: misc/rubygem-dotenv/Makefile =================================================================== --- misc/rubygem-dotenv/Makefile (revision 414025) +++ misc/rubygem-dotenv/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/dotenv Index: misc/rubygem-iesd/Makefile =================================================================== --- misc/rubygem-iesd/Makefile (revision 414025) +++ misc/rubygem-iesd/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/iesd Index: misc/rubygem-mime-types/Makefile =================================================================== --- misc/rubygem-mime-types/Makefile (revision 414025) +++ misc/rubygem-mime-types/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: misc/rubygem-mime-types-data/Makefile =================================================================== --- misc/rubygem-mime-types-data/Makefile (revision 414025) +++ misc/rubygem-mime-types-data/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: misc/rubygem-mime-types1/Makefile =================================================================== --- misc/rubygem-mime-types1/Makefile (revision 414025) +++ misc/rubygem-mime-types1/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^1\. Index: misc/rubygem-mimemagic/Makefile =================================================================== --- misc/rubygem-mimemagic/Makefile (revision 414025) +++ misc/rubygem-mimemagic/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: misc/rubygem-rabbit/Makefile =================================================================== --- misc/rubygem-rabbit/Makefile (revision 414025) +++ misc/rubygem-rabbit/Makefile (working copy) @@ -26,10 +26,8 @@ rubygem-rttool>0:textproc/rubygem-rttool NO_ARCH= yes -USES= gettext USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist gettext PLIST_FILES= bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \ bin/rabbit-theme Index: misc/rubygem-vpim/Makefile =================================================================== --- misc/rubygem-vpim/Makefile (revision 414025) +++ misc/rubygem-vpim/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/reminder bin/rrule Index: multimedia/rubygem-clutter-gstreamer/Makefile =================================================================== --- multimedia/rubygem-clutter-gstreamer/Makefile (revision 414025) +++ multimedia/rubygem-clutter-gstreamer/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: multimedia/rubygem-flvtool2/Makefile =================================================================== --- multimedia/rubygem-flvtool2/Makefile (revision 414025) +++ multimedia/rubygem-flvtool2/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/flvtool2 Index: multimedia/rubygem-gstreamer/Makefile =================================================================== --- multimedia/rubygem-gstreamer/Makefile (revision 414025) +++ multimedia/rubygem-gstreamer/Makefile (working copy) @@ -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: net/rubygem-amazon-ec2/Makefile =================================================================== --- net/rubygem-amazon-ec2/Makefile (revision 414025) +++ net/rubygem-amazon-ec2/Makefile (working copy) @@ -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: net/rubygem-amq-protocol/Makefile =================================================================== --- net/rubygem-amq-protocol/Makefile (revision 414025) +++ net/rubygem-amq-protocol/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-amqp/Makefile =================================================================== --- net/rubygem-amqp/Makefile (revision 414025) +++ net/rubygem-amqp/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-amqp-utils/Makefile =================================================================== --- net/rubygem-amqp-utils/Makefile (revision 414025) +++ net/rubygem-amqp-utils/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES+= bin/amqp-deleteq bin/amqp-dequeue bin/amqp-enqueue bin/amqp-peek bin/amqp-pop \ bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \ Index: net/rubygem-aws-s3/Makefile =================================================================== --- net/rubygem-aws-s3/Makefile (revision 414025) +++ net/rubygem-aws-s3/Makefile (working copy) @@ -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: net/rubygem-aws-ses/Makefile =================================================================== --- net/rubygem-aws-ses/Makefile (revision 414025) +++ net/rubygem-aws-ses/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-bunny/Makefile =================================================================== --- net/rubygem-bunny/Makefile (revision 414025) +++ net/rubygem-bunny/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-connection_pool/Makefile =================================================================== --- net/rubygem-connection_pool/Makefile (revision 414025) +++ net/rubygem-connection_pool/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-dogapi/Makefile =================================================================== --- net/rubygem-dogapi/Makefile (revision 414025) +++ net/rubygem-dogapi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-domain_name/Makefile =================================================================== --- net/rubygem-domain_name/Makefile (revision 414025) +++ net/rubygem-domain_name/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-dropbox-sdk/Makefile =================================================================== --- net/rubygem-dropbox-sdk/Makefile (revision 414025) +++ net/rubygem-dropbox-sdk/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-epp-client-afnic/Makefile =================================================================== --- net/rubygem-epp-client-afnic/Makefile (revision 414025) +++ net/rubygem-epp-client-afnic/Makefile (working copy) @@ -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: net/rubygem-epp-client-base/Makefile =================================================================== --- net/rubygem-epp-client-base/Makefile (revision 414025) +++ net/rubygem-epp-client-base/Makefile (working copy) @@ -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: net/rubygem-epp-client-rgp/Makefile =================================================================== --- net/rubygem-epp-client-rgp/Makefile (revision 414025) +++ net/rubygem-epp-client-rgp/Makefile (working copy) @@ -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: net/rubygem-epp-client-secdns/Makefile =================================================================== --- net/rubygem-epp-client-secdns/Makefile (revision 414025) +++ net/rubygem-epp-client-secdns/Makefile (working copy) @@ -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: net/rubygem-epp-client-smallregistry/Makefile =================================================================== --- net/rubygem-epp-client-smallregistry/Makefile (revision 414025) +++ net/rubygem-epp-client-smallregistry/Makefile (working copy) @@ -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: net/rubygem-fog-aliyun/Makefile =================================================================== --- net/rubygem-fog-aliyun/Makefile (revision 414025) +++ net/rubygem-fog-aliyun/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-atmos/Makefile =================================================================== --- net/rubygem-fog-atmos/Makefile (revision 414025) +++ net/rubygem-fog-atmos/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-aws/Makefile =================================================================== --- net/rubygem-fog-aws/Makefile (revision 414025) +++ net/rubygem-fog-aws/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-brightbox/Makefile =================================================================== --- net/rubygem-fog-brightbox/Makefile (revision 414025) +++ net/rubygem-fog-brightbox/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-cloudatcost/Makefile =================================================================== --- net/rubygem-fog-cloudatcost/Makefile (revision 414025) +++ net/rubygem-fog-cloudatcost/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-dynect/Makefile =================================================================== --- net/rubygem-fog-dynect/Makefile (revision 414025) +++ net/rubygem-fog-dynect/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-ecloud/Makefile =================================================================== --- net/rubygem-fog-ecloud/Makefile (revision 414025) +++ net/rubygem-fog-ecloud/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-google/Makefile =================================================================== --- net/rubygem-fog-google/Makefile (revision 414025) +++ net/rubygem-fog-google/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-local/Makefile =================================================================== --- net/rubygem-fog-local/Makefile (revision 414025) +++ net/rubygem-fog-local/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-openstack/Makefile =================================================================== --- net/rubygem-fog-openstack/Makefile (revision 414025) +++ net/rubygem-fog-openstack/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-powerdns/Makefile =================================================================== --- net/rubygem-fog-powerdns/Makefile (revision 414025) +++ net/rubygem-fog-powerdns/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-profitbricks/Makefile =================================================================== --- net/rubygem-fog-profitbricks/Makefile (revision 414025) +++ net/rubygem-fog-profitbricks/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-rackspace/Makefile =================================================================== --- net/rubygem-fog-rackspace/Makefile (revision 414025) +++ net/rubygem-fog-rackspace/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-radosgw/Makefile =================================================================== --- net/rubygem-fog-radosgw/Makefile (revision 414025) +++ net/rubygem-fog-radosgw/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-riakcs/Makefile =================================================================== --- net/rubygem-fog-riakcs/Makefile (revision 414025) +++ net/rubygem-fog-riakcs/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-sakuracloud/Makefile =================================================================== --- net/rubygem-fog-sakuracloud/Makefile (revision 414025) +++ net/rubygem-fog-sakuracloud/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-serverlove/Makefile =================================================================== --- net/rubygem-fog-serverlove/Makefile (revision 414025) +++ net/rubygem-fog-serverlove/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-softlayer/Makefile =================================================================== --- net/rubygem-fog-softlayer/Makefile (revision 414025) +++ net/rubygem-fog-softlayer/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-storm_on_demand/Makefile =================================================================== --- net/rubygem-fog-storm_on_demand/Makefile (revision 414025) +++ net/rubygem-fog-storm_on_demand/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-terremark/Makefile =================================================================== --- net/rubygem-fog-terremark/Makefile (revision 414025) +++ net/rubygem-fog-terremark/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-vmfusion/Makefile =================================================================== --- net/rubygem-fog-vmfusion/Makefile (revision 414025) +++ net/rubygem-fog-vmfusion/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-voxel/Makefile =================================================================== --- net/rubygem-fog-voxel/Makefile (revision 414025) +++ net/rubygem-fog-voxel/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-vsphere/Makefile =================================================================== --- net/rubygem-fog-vsphere/Makefile (revision 414025) +++ net/rubygem-fog-vsphere/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-fog-xenserver/Makefile =================================================================== --- net/rubygem-fog-xenserver/Makefile (revision 414025) +++ net/rubygem-fog-xenserver/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-geoip/Makefile =================================================================== --- net/rubygem-geoip/Makefile (revision 414025) +++ net/rubygem-geoip/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/geoip Index: net/rubygem-gitlab_omniauth-ldap/Makefile =================================================================== --- net/rubygem-gitlab_omniauth-ldap/Makefile (revision 414025) +++ net/rubygem-gitlab_omniauth-ldap/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-http_parser.rb/Makefile =================================================================== --- net/rubygem-http_parser.rb/Makefile (revision 414025) +++ net/rubygem-http_parser.rb/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-httpauth/Makefile =================================================================== --- net/rubygem-httpauth/Makefile (revision 414025) +++ net/rubygem-httpauth/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-ipaddress/Makefile =================================================================== --- net/rubygem-ipaddress/Makefile (revision 414025) +++ net/rubygem-ipaddress/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-iproto/Makefile =================================================================== --- net/rubygem-iproto/Makefile (revision 414025) +++ net/rubygem-iproto/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-lita-gems/Makefile =================================================================== --- net/rubygem-lita-gems/Makefile (revision 414025) +++ net/rubygem-lita-gems/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-macaddr/Makefile =================================================================== --- net/rubygem-macaddr/Makefile (revision 414025) +++ net/rubygem-macaddr/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-net-ldap/Makefile =================================================================== --- net/rubygem-net-ldap/Makefile (revision 414025) +++ net/rubygem-net-ldap/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-net-netrc/Makefile =================================================================== --- net/rubygem-net-netrc/Makefile (revision 414025) +++ net/rubygem-net-netrc/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-net-ping/Makefile =================================================================== --- net/rubygem-net-ping/Makefile (revision 414025) +++ net/rubygem-net-ping/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= APACHE20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-netrc/Makefile =================================================================== --- net/rubygem-netrc/Makefile (revision 414025) +++ net/rubygem-netrc/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-network_interface/Makefile =================================================================== --- net/rubygem-network_interface/Makefile (revision 414025) +++ net/rubygem-network_interface/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: net/rubygem-oauth/Makefile =================================================================== --- net/rubygem-oauth/Makefile (revision 414025) +++ net/rubygem-oauth/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/oauth Index: net/rubygem-oauth2/Makefile =================================================================== --- net/rubygem-oauth2/Makefile (revision 414025) +++ net/rubygem-oauth2/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-octokit/Makefile =================================================================== --- net/rubygem-octokit/Makefile (revision 414025) +++ net/rubygem-octokit/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-octopress-deploy/Makefile =================================================================== --- net/rubygem-octopress-deploy/Makefile (revision 414025) +++ net/rubygem-octopress-deploy/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-auth0/Makefile =================================================================== --- net/rubygem-omniauth-auth0/Makefile (revision 414025) +++ net/rubygem-omniauth-auth0/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-azure-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-azure-oauth2/Makefile (revision 414025) +++ net/rubygem-omniauth-azure-oauth2/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-facebook/Makefile =================================================================== --- net/rubygem-omniauth-facebook/Makefile (revision 414025) +++ net/rubygem-omniauth-facebook/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-github/Makefile =================================================================== --- net/rubygem-omniauth-github/Makefile (revision 414025) +++ net/rubygem-omniauth-github/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-github-discourse/Makefile =================================================================== --- net/rubygem-omniauth-github-discourse/Makefile (revision 414025) +++ net/rubygem-omniauth-github-discourse/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-google-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-google-oauth2/Makefile (revision 414025) +++ net/rubygem-omniauth-google-oauth2/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-oauth/Makefile =================================================================== --- net/rubygem-omniauth-oauth/Makefile (revision 414025) +++ net/rubygem-omniauth-oauth/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-oauth2/Makefile (revision 414025) +++ net/rubygem-omniauth-oauth2/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-openid/Makefile =================================================================== --- net/rubygem-omniauth-openid/Makefile (revision 414025) +++ net/rubygem-omniauth-openid/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-omniauth-twitter/Makefile =================================================================== --- net/rubygem-omniauth-twitter/Makefile (revision 414025) +++ net/rubygem-omniauth-twitter/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-open-uri-cached/Makefile =================================================================== --- net/rubygem-open-uri-cached/Makefile (revision 414025) +++ net/rubygem-open-uri-cached/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-opennebula/Makefile =================================================================== --- net/rubygem-opennebula/Makefile (revision 414025) +++ net/rubygem-opennebula/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-packetfu/Makefile =================================================================== --- net/rubygem-packetfu/Makefile (revision 414025) +++ net/rubygem-packetfu/Makefile (working copy) @@ -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: net/rubygem-pcaprub/Makefile =================================================================== --- net/rubygem-pcaprub/Makefile (revision 414025) +++ net/rubygem-pcaprub/Makefile (working copy) @@ -11,7 +11,6 @@ LICENSE= LGPL21 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: net/rubygem-rabbiter/Makefile =================================================================== --- net/rubygem-rabbiter/Makefile (revision 414025) +++ net/rubygem-rabbiter/Makefile (working copy) @@ -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: net/rubygem-rbvmomi/Makefile =================================================================== --- net/rubygem-rbvmomi/Makefile (revision 414025) +++ net/rubygem-rbvmomi/Makefile (working copy) @@ -19,9 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= examples/run.sh PLIST_FILES= bin/rbvmomish Index: net/rubygem-right_aws/Makefile =================================================================== --- net/rubygem-right_aws/Makefile (revision 414025) +++ net/rubygem-right_aws/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist OPTIONS_DEFINE= LIBXML LIBXML_DESC= Use libxml instead of REXML Index: net/rubygem-right_flexiscale/Makefile =================================================================== --- net/rubygem-right_flexiscale/Makefile (revision 414025) +++ net/rubygem-right_flexiscale/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-right_gogrid/Makefile =================================================================== --- net/rubygem-right_gogrid/Makefile (revision 414025) +++ net/rubygem-right_gogrid/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-right_http_connection/Makefile =================================================================== --- net/rubygem-right_http_connection/Makefile (revision 414025) +++ net/rubygem-right_http_connection/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-right_slicehost/Makefile =================================================================== --- net/rubygem-right_slicehost/Makefile (revision 414025) +++ net/rubygem-right_slicehost/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-rsync/Makefile =================================================================== --- net/rubygem-rsync/Makefile (revision 414025) +++ net/rubygem-rsync/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-ruby-growl/Makefile =================================================================== --- net/rubygem-ruby-growl/Makefile (revision 414025) +++ net/rubygem-ruby-growl/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/growl Index: net/rubygem-ruby-openid/Makefile =================================================================== --- net/rubygem-ruby-openid/Makefile (revision 414025) +++ net/rubygem-ruby-openid/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-ruby-yadis/Makefile =================================================================== --- net/rubygem-ruby-yadis/Makefile (revision 414025) +++ net/rubygem-ruby-yadis/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-rubyntlm/Makefile =================================================================== --- net/rubygem-rubyntlm/Makefile (revision 414025) +++ net/rubygem-rubyntlm/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-rubytter/Makefile =================================================================== --- net/rubygem-rubytter/Makefile (revision 414025) +++ net/rubygem-rubytter/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-rudy/Makefile =================================================================== --- net/rubygem-rudy/Makefile (revision 414025) +++ net/rubygem-rudy/Makefile (working copy) @@ -26,10 +26,8 @@ rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist shebangfix PLIST_FILES= bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb -USES= shebangfix SHEBANG_FILES= bin/* tryouts/exploration/machine.rb NO_ARCH= yes Index: net/rubygem-rye/Makefile =================================================================== --- net/rubygem-rye/Makefile (revision 414025) +++ net/rubygem-rye/Makefile (working copy) @@ -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: net/rubygem-simple_oauth/Makefile =================================================================== --- net/rubygem-simple_oauth/Makefile (revision 414025) +++ net/rubygem-simple_oauth/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-stompserver/Makefile =================================================================== --- net/rubygem-stompserver/Makefile (revision 414025) +++ net/rubygem-stompserver/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/stompserver Index: net/rubygem-t/Makefile =================================================================== --- net/rubygem-t/Makefile (revision 414025) +++ net/rubygem-t/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/t Index: net/rubygem-tweetstream/Makefile =================================================================== --- net/rubygem-tweetstream/Makefile (revision 414025) +++ net/rubygem-tweetstream/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-twitter/Makefile =================================================================== --- net/rubygem-twitter/Makefile (revision 414025) +++ net/rubygem-twitter/Makefile (working copy) @@ -25,7 +25,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-twitter-stream/Makefile =================================================================== --- net/rubygem-twitter-stream/Makefile (revision 414025) +++ net/rubygem-twitter-stream/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-twitter4r/Makefile =================================================================== --- net/rubygem-twitter4r/Makefile (revision 414025) +++ net/rubygem-twitter4r/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/t4r-oauth-access bin/t4rsh Index: net/rubygem-uri-redis/Makefile =================================================================== --- net/rubygem-uri-redis/Makefile (revision 414025) +++ net/rubygem-uri-redis/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net/rubygem-whois/Makefile =================================================================== --- net/rubygem-whois/Makefile (revision 414025) +++ net/rubygem-whois/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/whoisrb Index: net-im/rubygem-earthquake/Makefile =================================================================== --- net-im/rubygem-earthquake/Makefile (revision 414025) +++ net-im/rubygem-earthquake/Makefile (working copy) @@ -25,8 +25,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/earthquake Index: net-im/rubygem-hipchat/Makefile =================================================================== --- net-im/rubygem-hipchat/Makefile (revision 414025) +++ net-im/rubygem-hipchat/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net-im/rubygem-lita/Makefile =================================================================== --- net-im/rubygem-lita/Makefile (revision 414025) +++ net-im/rubygem-lita/Makefile (working copy) @@ -26,8 +26,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/lita Index: net-im/rubygem-termtter/Makefile =================================================================== --- net-im/rubygem-termtter/Makefile (revision 414025) +++ net-im/rubygem-termtter/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/termtter bin/termtter_frame Index: net-im/rubygem-tinder/Makefile =================================================================== --- net-im/rubygem-tinder/Makefile (revision 414025) +++ net-im/rubygem-tinder/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net-mgmt/rubygem-blimpy/Makefile =================================================================== --- net-mgmt/rubygem-blimpy/Makefile (revision 414025) +++ net-mgmt/rubygem-blimpy/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/blimpy Index: net-mgmt/rubygem-snmp/Makefile =================================================================== --- net-mgmt/rubygem-snmp/Makefile (revision 414025) +++ net-mgmt/rubygem-snmp/Makefile (working copy) @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: net-mgmt/rubygem-visage-app/Makefile =================================================================== --- net-mgmt/rubygem-visage-app/Makefile (revision 414025) +++ net-mgmt/rubygem-visage-app/Makefile (working copy) @@ -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: print/rubygem-afm/Makefile =================================================================== --- print/rubygem-afm/Makefile (revision 414025) +++ print/rubygem-afm/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-color/Makefile =================================================================== --- print/rubygem-color/Makefile (revision 414025) +++ print/rubygem-color/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-color-tools/Makefile =================================================================== --- print/rubygem-color-tools/Makefile (revision 414025) +++ print/rubygem-color-tools/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-pdf-core/Makefile =================================================================== --- print/rubygem-pdf-core/Makefile (revision 414025) +++ print/rubygem-pdf-core/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-pdf-reader/Makefile =================================================================== --- print/rubygem-pdf-reader/Makefile (revision 414025) +++ print/rubygem-pdf-reader/Makefile (working copy) @@ -20,8 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES+= bin/pdf_callbacks bin/pdf_list_callbacks bin/pdf_object bin/pdf_text Index: print/rubygem-pdf-writer/Makefile =================================================================== --- print/rubygem-pdf-writer/Makefile (revision 414025) +++ print/rubygem-pdf-writer/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/techbook Index: print/rubygem-prawn/Makefile =================================================================== --- print/rubygem-prawn/Makefile (revision 414025) +++ print/rubygem-prawn/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-core/Makefile =================================================================== --- print/rubygem-prawn-core/Makefile (revision 414025) +++ print/rubygem-prawn-core/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-flexible-table/Makefile =================================================================== --- print/rubygem-prawn-flexible-table/Makefile (revision 414025) +++ print/rubygem-prawn-flexible-table/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-format/Makefile =================================================================== --- print/rubygem-prawn-format/Makefile (revision 414025) +++ print/rubygem-prawn-format/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-graph/Makefile =================================================================== --- print/rubygem-prawn-graph/Makefile (revision 414025) +++ print/rubygem-prawn-graph/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-js/Makefile =================================================================== --- print/rubygem-prawn-js/Makefile (revision 414025) +++ print/rubygem-prawn-js/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-layout/Makefile =================================================================== --- print/rubygem-prawn-layout/Makefile (revision 414025) +++ print/rubygem-prawn-layout/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-security/Makefile =================================================================== --- print/rubygem-prawn-security/Makefile (revision 414025) +++ print/rubygem-prawn-security/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-prawn-svg/Makefile =================================================================== --- print/rubygem-prawn-svg/Makefile (revision 414025) +++ print/rubygem-prawn-svg/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-rbpdf/Makefile =================================================================== --- print/rubygem-rbpdf/Makefile (revision 414025) +++ print/rubygem-rbpdf/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-rbpdf-font/Makefile =================================================================== --- print/rubygem-rbpdf-font/Makefile (revision 414025) +++ print/rubygem-rbpdf-font/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: print/rubygem-ttfunk/Makefile =================================================================== --- print/rubygem-ttfunk/Makefile (revision 414025) +++ print/rubygem-ttfunk/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: russian/rubygem-russian/Makefile =================================================================== --- russian/rubygem-russian/Makefile (revision 414025) +++ russian/rubygem-russian/Makefile (working copy) @@ -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: science/rubygem-ai4r/Makefile =================================================================== --- science/rubygem-ai4r/Makefile (revision 414025) +++ science/rubygem-ai4r/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: science/rubygem-cdo/Makefile =================================================================== --- science/rubygem-cdo/Makefile (revision 414025) +++ science/rubygem-cdo/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: science/rubygem-ruby-dcl/Makefile =================================================================== --- science/rubygem-ruby-dcl/Makefile (revision 414025) +++ science/rubygem-ruby-dcl/Makefile (working copy) @@ -19,7 +19,6 @@ USE_RUBY= yes USE_RUBY_EXTCONF= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: science/rubygem-ruby-netcdf/Makefile =================================================================== --- science/rubygem-ruby-netcdf/Makefile (revision 414025) +++ science/rubygem-ruby-netcdf/Makefile (working copy) @@ -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: security/ruby-hmac/Makefile =================================================================== --- security/ruby-hmac/Makefile (revision 414025) +++ security/ruby-hmac/Makefile (working copy) @@ -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: security/rubygem-attr_encrypted/Makefile =================================================================== --- security/rubygem-attr_encrypted/Makefile (revision 414025) +++ security/rubygem-attr_encrypted/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: security/rubygem-bcrypt/Makefile =================================================================== --- security/rubygem-bcrypt/Makefile (revision 414025) +++ security/rubygem-bcrypt/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-bcrypt-ruby/Makefile =================================================================== --- security/rubygem-bcrypt-ruby/Makefile (revision 414025) +++ security/rubygem-bcrypt-ruby/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-devise-two-factor/Makefile =================================================================== --- security/rubygem-devise-two-factor/Makefile (revision 414025) +++ security/rubygem-devise-two-factor/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-doorkeeper/Makefile =================================================================== --- security/rubygem-doorkeeper/Makefile (revision 414025) +++ security/rubygem-doorkeeper/Makefile (working copy) @@ -24,7 +24,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-encryptor/Makefile =================================================================== --- security/rubygem-encryptor/Makefile (revision 414025) +++ security/rubygem-encryptor/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: security/rubygem-ezcrypto/Makefile =================================================================== --- security/rubygem-ezcrypto/Makefile (revision 414025) +++ security/rubygem-ezcrypto/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-gpgr/Makefile =================================================================== --- security/rubygem-gpgr/Makefile (revision 414025) +++ security/rubygem-gpgr/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-gssapi/Makefile =================================================================== --- security/rubygem-gssapi/Makefile (revision 414025) +++ security/rubygem-gssapi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-jugyo-twitter_oauth/Makefile =================================================================== --- security/rubygem-jugyo-twitter_oauth/Makefile (revision 414025) +++ security/rubygem-jugyo-twitter_oauth/Makefile (working copy) @@ -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: security/rubygem-metasploit-concern/Makefile =================================================================== --- security/rubygem-metasploit-concern/Makefile (revision 414025) +++ security/rubygem-metasploit-concern/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= ignore:1 Index: security/rubygem-metasploit-credential/Makefile =================================================================== --- security/rubygem-metasploit-credential/Makefile (revision 414025) +++ security/rubygem-metasploit-credential/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= ignore:1 Index: security/rubygem-metasploit-model/Makefile =================================================================== --- security/rubygem-metasploit-model/Makefile (revision 414025) +++ security/rubygem-metasploit-model/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= ignore:1 Index: security/rubygem-metasploit-payloads/Makefile =================================================================== --- security/rubygem-metasploit-payloads/Makefile (revision 414025) +++ security/rubygem-metasploit-payloads/Makefile (working copy) @@ -12,8 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= ignore:1 Index: security/rubygem-metasploit_data_models/Makefile =================================================================== --- security/rubygem-metasploit_data_models/Makefile (revision 414025) +++ security/rubygem-metasploit_data_models/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mdm_console PORTSCOUT= ignore:1 Index: security/rubygem-net-scp/Makefile =================================================================== --- security/rubygem-net-scp/Makefile (revision 414025) +++ security/rubygem-net-scp/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-net-sftp/Makefile =================================================================== --- security/rubygem-net-sftp/Makefile (revision 414025) +++ security/rubygem-net-sftp/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-net-ssh/Makefile =================================================================== --- security/rubygem-net-ssh/Makefile (revision 414025) +++ security/rubygem-net-ssh/Makefile (working copy) @@ -19,9 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= support/ssh_tunnel_bug.rb PROMPT_PASSPHRASES_RUN_DEPENDS= rubygem-ruby-termios>=0:comms/rubygem-ruby-termios Index: security/rubygem-net-ssh-gateway/Makefile =================================================================== --- security/rubygem-net-ssh-gateway/Makefile (revision 414025) +++ security/rubygem-net-ssh-gateway/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-net-ssh-multi/Makefile =================================================================== --- security/rubygem-net-ssh-multi/Makefile (revision 414025) +++ security/rubygem-net-ssh-multi/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-nmap-parser/Makefile =================================================================== --- security/rubygem-nmap-parser/Makefile (revision 414025) +++ security/rubygem-nmap-parser/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth/Makefile =================================================================== --- security/rubygem-omniauth/Makefile (revision 414025) +++ security/rubygem-omniauth/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-bitbucket/Makefile =================================================================== --- security/rubygem-omniauth-bitbucket/Makefile (revision 414025) +++ security/rubygem-omniauth-bitbucket/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-cas3/Makefile =================================================================== --- security/rubygem-omniauth-cas3/Makefile (revision 414025) +++ security/rubygem-omniauth-cas3/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-gitlab/Makefile =================================================================== --- security/rubygem-omniauth-gitlab/Makefile (revision 414025) +++ security/rubygem-omniauth-gitlab/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-multipassword/Makefile =================================================================== --- security/rubygem-omniauth-multipassword/Makefile (revision 414025) +++ security/rubygem-omniauth-multipassword/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-saml/Makefile =================================================================== --- security/rubygem-omniauth-saml/Makefile (revision 414025) +++ security/rubygem-omniauth-saml/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-omniauth-shibboleth/Makefile =================================================================== --- security/rubygem-omniauth-shibboleth/Makefile (revision 414025) +++ security/rubygem-omniauth-shibboleth/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-origami/Makefile =================================================================== --- security/rubygem-origami/Makefile (revision 414025) +++ security/rubygem-origami/Makefile (working copy) @@ -14,9 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= samples/actions/launch/calc.rb \ samples/actions/launch/winparams.rb \ samples/actions/named/named.rb \ Index: security/rubygem-pyu-ruby-sasl/Makefile =================================================================== --- security/rubygem-pyu-ruby-sasl/Makefile (revision 414025) +++ security/rubygem-pyu-ruby-sasl/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-rack-oauth2/Makefile =================================================================== --- security/rubygem-rack-oauth2/Makefile (revision 414025) +++ security/rubygem-rack-oauth2/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-razorback-scriptNugget/Makefile =================================================================== --- security/rubygem-razorback-scriptNugget/Makefile (revision 414025) +++ security/rubygem-razorback-scriptNugget/Makefile (working copy) @@ -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: security/rubygem-recog/Makefile =================================================================== --- security/rubygem-recog/Makefile (revision 414025) +++ security/rubygem-recog/Makefile (working copy) @@ -14,8 +14,7 @@ RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/recog_export \ bin/recog_match \ bin/recog_verify Index: security/rubygem-roauth/Makefile =================================================================== --- security/rubygem-roauth/Makefile (revision 414025) +++ security/rubygem-roauth/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-ruby-hmac/Makefile =================================================================== --- security/rubygem-ruby-hmac/Makefile (revision 414025) +++ security/rubygem-ruby-hmac/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-ruby-rc4/Makefile =================================================================== --- security/rubygem-ruby-rc4/Makefile (revision 414025) +++ security/rubygem-ruby-rc4/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-ruby-saml/Makefile =================================================================== --- security/rubygem-ruby-saml/Makefile (revision 414025) +++ security/rubygem-ruby-saml/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-scrypt/Makefile =================================================================== --- security/rubygem-scrypt/Makefile (revision 414025) +++ security/rubygem-scrypt/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= invokes SSE compiler flags Index: security/rubygem-six/Makefile =================================================================== --- security/rubygem-six/Makefile (revision 414025) +++ security/rubygem-six/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-sshkey/Makefile =================================================================== --- security/rubygem-sshkey/Makefile (revision 414025) +++ security/rubygem-sshkey/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-sshkit/Makefile =================================================================== --- security/rubygem-sshkit/Makefile (revision 414025) +++ security/rubygem-sshkit/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: security/rubygem-twitter_oauth/Makefile =================================================================== --- security/rubygem-twitter_oauth/Makefile (revision 414025) +++ security/rubygem-twitter_oauth/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/puppet-lint/Makefile =================================================================== --- sysutils/puppet-lint/Makefile (revision 414025) +++ sysutils/puppet-lint/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/puppet-lint NO_ARCH= yes Index: sysutils/rhc/Makefile =================================================================== --- sysutils/rhc/Makefile (revision 414025) +++ sysutils/rhc/Makefile (working copy) @@ -24,8 +24,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rhc Index: sysutils/rubygem-SyslogLogger/Makefile =================================================================== --- sysutils/rubygem-SyslogLogger/Makefile (revision 414025) +++ sysutils/rubygem-SyslogLogger/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-backup/Makefile =================================================================== --- sysutils/rubygem-backup/Makefile (revision 414025) +++ sysutils/rubygem-backup/Makefile (working copy) @@ -76,8 +76,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/backup Index: sysutils/rubygem-bosh-gen/Makefile =================================================================== --- sysutils/rubygem-bosh-gen/Makefile (revision 414025) +++ sysutils/rubygem-bosh-gen/Makefile (working copy) @@ -23,9 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= lib/bosh/gen/generators/new_release_generator/templates/templates/make_manifest.tt \ spec/fixtures/releases/s3test-boshrelease/templates/make_manifest Index: sysutils/rubygem-bosh_cli/Makefile =================================================================== --- sysutils/rubygem-bosh_cli/Makefile (revision 414025) +++ sysutils/rubygem-bosh_cli/Makefile (working copy) @@ -29,8 +29,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bosh Index: sysutils/rubygem-bundler/Makefile =================================================================== --- sysutils/rubygem-bundler/Makefile (revision 414025) +++ sysutils/rubygem-bundler/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/bundle bin/bundler Index: sysutils/rubygem-bundler_ext/Makefile =================================================================== --- sysutils/rubygem-bundler_ext/Makefile (revision 414025) +++ sysutils/rubygem-bundler_ext/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-capistrano/Makefile =================================================================== --- sysutils/rubygem-capistrano/Makefile (revision 414025) +++ sysutils/rubygem-capistrano/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/cap bin/capify Index: sysutils/rubygem-capistrano-ext/Makefile =================================================================== --- sysutils/rubygem-capistrano-ext/Makefile (revision 414025) +++ sysutils/rubygem-capistrano-ext/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-chef/Makefile =================================================================== --- sysutils/rubygem-chef/Makefile (revision 414025) +++ sysutils/rubygem-chef/Makefile (working copy) @@ -33,8 +33,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist SUB_LIST= RUBY=${RUBY} USE_RC_SUBR= chef_client Index: sysutils/rubygem-chef-api/Makefile =================================================================== --- sysutils/rubygem-chef-api/Makefile (revision 414025) +++ sysutils/rubygem-chef-api/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-chef-zero/Makefile =================================================================== --- sysutils/rubygem-chef-zero/Makefile (revision 414025) +++ sysutils/rubygem-chef-zero/Makefile (working copy) @@ -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: sysutils/rubygem-facter/Makefile =================================================================== --- sysutils/rubygem-facter/Makefile (revision 414025) +++ sysutils/rubygem-facter/Makefile (working copy) @@ -14,8 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/facter Index: sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile =================================================================== --- sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile (revision 414025) +++ sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile (working copy) @@ -15,7 +15,6 @@ rubygem-ltsv>0:textproc/rubygem-ltsv USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-fluent-plugin-config-expander/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-config-expander/Makefile (revision 414025) +++ sysutils/rubygem-fluent-plugin-config-expander/Makefile (working copy) @@ -12,7 +12,6 @@ rubygem-fluentd>0:sysutils/rubygem-fluentd USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-fluent-plugin-file-alternative/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-file-alternative/Makefile (revision 414025) +++ sysutils/rubygem-fluent-plugin-file-alternative/Makefile (working copy) @@ -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: sysutils/rubygem-fluent-plugin-tail-asis/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-tail-asis/Makefile (revision 414025) +++ sysutils/rubygem-fluent-plugin-tail-asis/Makefile (working copy) @@ -12,7 +12,6 @@ rubygem-fluentd>0:sysutils/rubygem-fluentd USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-fluentd/Makefile =================================================================== --- sysutils/rubygem-fluentd/Makefile (revision 414025) +++ sysutils/rubygem-fluentd/Makefile (working copy) @@ -20,11 +20,10 @@ rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo USE_RUBY= yes -USE_RUBYGEMS= yes PLIST_FILES= bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \ "@sample etc/fluentd/fluent.conf.sample" PLIST_DIRS= etc/fluentd/plugin -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist USE_RC_SUBR= fluentd USERS= fluentd GROUPS= fluentd Index: sysutils/rubygem-fluentd010/Makefile =================================================================== --- sysutils/rubygem-fluentd010/Makefile (revision 414025) +++ sysutils/rubygem-fluentd010/Makefile (working copy) @@ -20,11 +20,10 @@ rubygem-yajl-ruby>=1.0:devel/rubygem-yajl-ruby USE_RUBY= yes -USE_RUBYGEMS= yes PLIST_FILES= bin/fluent-cat bin/fluent-debug bin/fluent-gem bin/fluentd \ "@sample etc/fluentd/fluent.conf.sample" PLIST_DIRS= etc/fluentd/plugin -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist USE_RC_SUBR= fluentd USERS= fluentd GROUPS= fluentd Index: sysutils/rubygem-fssm/Makefile =================================================================== --- sysutils/rubygem-fssm/Makefile (revision 414025) +++ sysutils/rubygem-fssm/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-god/Makefile =================================================================== --- sysutils/rubygem-god/Makefile (revision 414025) +++ sysutils/rubygem-god/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/god Index: sysutils/rubygem-guard/Makefile =================================================================== --- sysutils/rubygem-guard/Makefile (revision 414025) +++ sysutils/rubygem-guard/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/guard \ bin/_guard-core Index: sysutils/rubygem-guard-compat/Makefile =================================================================== --- sysutils/rubygem-guard-compat/Makefile (revision 414025) +++ sysutils/rubygem-guard-compat/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-guard-livereload/Makefile =================================================================== --- sysutils/rubygem-guard-livereload/Makefile (revision 414025) +++ sysutils/rubygem-guard-livereload/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-guard-minitest/Makefile =================================================================== --- sysutils/rubygem-guard-minitest/Makefile (revision 414025) +++ sysutils/rubygem-guard-minitest/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-guard-rspec/Makefile =================================================================== --- sysutils/rubygem-guard-rspec/Makefile (revision 414025) +++ sysutils/rubygem-guard-rspec/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-hammer_cli/Makefile =================================================================== --- sysutils/rubygem-hammer_cli/Makefile (revision 414025) +++ sysutils/rubygem-hammer_cli/Makefile (working copy) @@ -23,8 +23,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d Index: sysutils/rubygem-hammer_cli_foreman/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman/Makefile (revision 414025) +++ sysutils/rubygem-hammer_cli_foreman/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d Index: sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile (revision 414025) +++ sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d Index: sysutils/rubygem-hammer_cli_foreman_salt/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_salt/Makefile (revision 414025) +++ sysutils/rubygem-hammer_cli_foreman_salt/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_salt.yml.sample" Index: sysutils/rubygem-hammer_cli_foreman_ssh/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_ssh/Makefile (revision 414025) +++ sysutils/rubygem-hammer_cli_foreman_ssh/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_ssh.yml.sample" Index: sysutils/rubygem-hiera/Makefile =================================================================== --- sysutils/rubygem-hiera/Makefile (revision 414025) +++ sysutils/rubygem-hiera/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist HIERA_DBDIR= /var/db/hiera PLIST_FILES= bin/hiera Index: sysutils/rubygem-hiera-file/Makefile =================================================================== --- sysutils/rubygem-hiera-file/Makefile (revision 414025) +++ sysutils/rubygem-hiera-file/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist RUN_DEPENDS= ${PKGNAMEPREFIX}hiera1>=0:sysutils/rubygem-hiera1 Index: sysutils/rubygem-hiera1/Makefile =================================================================== --- sysutils/rubygem-hiera1/Makefile (revision 414025) +++ sysutils/rubygem-hiera1/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist HIERA_DBDIR= /var/db/hiera PLIST_FILES= bin/hiera PLIST_DIRS= ${HIERA_DBDIR} Index: sysutils/rubygem-hieracles/Makefile =================================================================== --- sysutils/rubygem-hieracles/Makefile (revision 414025) +++ sysutils/rubygem-hieracles/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/hc man/man1/hc.1.gz \ bin/ppdb man/man1/ppdb.1.gz Index: sysutils/rubygem-librarian-puppet/Makefile =================================================================== --- sysutils/rubygem-librarian-puppet/Makefile (revision 414025) +++ sysutils/rubygem-librarian-puppet/Makefile (working copy) @@ -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: sysutils/rubygem-log4r/Makefile =================================================================== --- sysutils/rubygem-log4r/Makefile (revision 414025) +++ sysutils/rubygem-log4r/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-logify/Makefile =================================================================== --- sysutils/rubygem-logify/Makefile (revision 414025) +++ sysutils/rubygem-logify/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-mogilefs-client/Makefile =================================================================== --- sysutils/rubygem-mogilefs-client/Makefile (revision 414025) +++ sysutils/rubygem-mogilefs-client/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/mog Index: sysutils/rubygem-mothra/Makefile =================================================================== --- sysutils/rubygem-mothra/Makefile (revision 414025) +++ sysutils/rubygem-mothra/Makefile (working copy) @@ -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: sysutils/rubygem-murder/Makefile =================================================================== --- sysutils/rubygem-murder/Makefile (revision 414025) +++ sysutils/rubygem-murder/Makefile (working copy) @@ -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: sysutils/rubygem-ohai/Makefile =================================================================== --- sysutils/rubygem-ohai/Makefile (revision 414025) +++ sysutils/rubygem-ohai/Makefile (working copy) @@ -25,8 +25,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ohai Index: sysutils/rubygem-parallel/Makefile =================================================================== --- sysutils/rubygem-parallel/Makefile (revision 414025) +++ sysutils/rubygem-parallel/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-puppet_forge/Makefile =================================================================== --- sysutils/rubygem-puppet_forge/Makefile (revision 414025) +++ sysutils/rubygem-puppet_forge/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-puppet_forge1/Makefile =================================================================== --- sysutils/rubygem-puppet_forge1/Makefile (revision 414025) +++ sysutils/rubygem-puppet_forge1/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-r10k/Makefile =================================================================== --- sysutils/rubygem-r10k/Makefile (revision 414025) +++ sysutils/rubygem-r10k/Makefile (working copy) @@ -21,9 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/r10k Index: sysutils/rubygem-rubyipmi/Makefile =================================================================== --- sysutils/rubygem-rubyipmi/Makefile (revision 414025) +++ sysutils/rubygem-rubyipmi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-shellany/Makefile =================================================================== --- sysutils/rubygem-shellany/Makefile (revision 414025) +++ sysutils/rubygem-shellany/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-smart_proxy_chef/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_chef/Makefile (revision 414025) +++ sysutils/rubygem-smart_proxy_chef/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d Index: sysutils/rubygem-smart_proxy_dynflow/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_dynflow/Makefile (revision 414025) +++ sysutils/rubygem-smart_proxy_dynflow/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= "@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" \ share/foreman-proxy/bundler.d/dynflow.rb Index: sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile (revision 414025) +++ sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= "@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" \ share/foreman-proxy/bundler.d/remote_execution_ssh.rb Index: sysutils/rubygem-smart_proxy_salt/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_salt/Makefile (revision 414025) +++ sysutils/rubygem-smart_proxy_salt/Makefile (working copy) @@ -15,12 +15,10 @@ RUN_DEPENDS= foreman-proxy>=1.8.0:net/foreman-proxy \ ${PYTHON_PKGNAMEPREFIX}salt>0:sysutils/py-salt -USES= python NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist python post-patch: @${REINPLACE_CMD} \ Index: sysutils/rubygem-sys-admin/Makefile =================================================================== --- sysutils/rubygem-sys-admin/Makefile (revision 414025) +++ sysutils/rubygem-sys-admin/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-sys-cpu/Makefile =================================================================== --- sysutils/rubygem-sys-cpu/Makefile (revision 414025) +++ sysutils/rubygem-sys-cpu/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-sys-filesystem/Makefile =================================================================== --- sysutils/rubygem-sys-filesystem/Makefile (revision 414025) +++ sysutils/rubygem-sys-filesystem/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-sys-host/Makefile =================================================================== --- sysutils/rubygem-sys-host/Makefile (revision 414025) +++ sysutils/rubygem-sys-host/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= ART20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-sys-proctable/Makefile =================================================================== --- sysutils/rubygem-sys-proctable/Makefile (revision 414025) +++ sysutils/rubygem-sys-proctable/Makefile (working copy) @@ -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: sysutils/rubygem-sys-uname/Makefile =================================================================== --- sysutils/rubygem-sys-uname/Makefile (revision 414025) +++ sysutils/rubygem-sys-uname/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-sys-uptime/Makefile =================================================================== --- sysutils/rubygem-sys-uptime/Makefile (revision 414025) +++ sysutils/rubygem-sys-uptime/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: sysutils/rubygem-teamocil/Makefile =================================================================== --- sysutils/rubygem-teamocil/Makefile (revision 414025) +++ sysutils/rubygem-teamocil/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/teamocil Index: sysutils/rubygem-winrm/Makefile =================================================================== --- sysutils/rubygem-winrm/Makefile (revision 414025) +++ sysutils/rubygem-winrm/Makefile (working copy) @@ -25,8 +25,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rwinrm Index: sysutils/rubygem-winrm-fs/Makefile =================================================================== --- sysutils/rubygem-winrm-fs/Makefile (revision 414025) +++ sysutils/rubygem-winrm-fs/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rwinrmcp Index: sysutils/rubygem-yell/Makefile =================================================================== --- sysutils/rubygem-yell/Makefile (revision 414025) +++ sysutils/rubygem-yell/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-actionpack-xml_parser/Makefile =================================================================== --- textproc/rubygem-actionpack-xml_parser/Makefile (revision 414025) +++ textproc/rubygem-actionpack-xml_parser/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-albino/Makefile =================================================================== --- textproc/rubygem-albino/Makefile (revision 414025) +++ textproc/rubygem-albino/Makefile (working copy) @@ -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: textproc/rubygem-amatch/Makefile =================================================================== --- textproc/rubygem-amatch/Makefile (revision 414025) +++ textproc/rubygem-amatch/Makefile (working copy) @@ -15,8 +15,7 @@ RUN_DEPENDS= rubygem-tins>=1.0:devel/rubygem-tins USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/agrep.rb Index: textproc/rubygem-asciidoctor/Makefile =================================================================== --- textproc/rubygem-asciidoctor/Makefile (revision 414025) +++ textproc/rubygem-asciidoctor/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES+= bin/asciidoctor bin/asciidoctor-safe Index: textproc/rubygem-autoprefixer-rails/Makefile =================================================================== --- textproc/rubygem-autoprefixer-rails/Makefile (revision 414025) +++ textproc/rubygem-autoprefixer-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-babosa/Makefile =================================================================== --- textproc/rubygem-babosa/Makefile (revision 414025) +++ textproc/rubygem-babosa/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-charlock_holmes/Makefile =================================================================== --- textproc/rubygem-charlock_holmes/Makefile (revision 414025) +++ textproc/rubygem-charlock_holmes/Makefile (working copy) @@ -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: textproc/rubygem-coderay/Makefile =================================================================== --- textproc/rubygem-coderay/Makefile (revision 414025) +++ textproc/rubygem-coderay/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/coderay Index: textproc/rubygem-colorator/Makefile =================================================================== --- textproc/rubygem-colorator/Makefile (revision 414025) +++ textproc/rubygem-colorator/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-colored/Makefile =================================================================== --- textproc/rubygem-colored/Makefile (revision 414025) +++ textproc/rubygem-colored/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-compass/Makefile =================================================================== --- textproc/rubygem-compass/Makefile (revision 414025) +++ textproc/rubygem-compass/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/compass Index: textproc/rubygem-compass-core/Makefile =================================================================== --- textproc/rubygem-compass-core/Makefile (revision 414025) +++ textproc/rubygem-compass-core/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-compass-import-once/Makefile =================================================================== --- textproc/rubygem-compass-import-once/Makefile (revision 414025) +++ textproc/rubygem-compass-import-once/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-compass-rails/Makefile =================================================================== --- textproc/rubygem-compass-rails/Makefile (revision 414025) +++ textproc/rubygem-compass-rails/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-creole/Makefile =================================================================== --- textproc/rubygem-creole/Makefile (revision 414025) +++ textproc/rubygem-creole/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-css_parser/Makefile =================================================================== --- textproc/rubygem-css_parser/Makefile (revision 414025) +++ textproc/rubygem-css_parser/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-cssmin/Makefile =================================================================== --- textproc/rubygem-cssmin/Makefile (revision 414025) +++ textproc/rubygem-cssmin/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-diff-lcs/Makefile =================================================================== --- textproc/rubygem-diff-lcs/Makefile (revision 414025) +++ textproc/rubygem-diff-lcs/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix ruby_OLD_CMD= ruby SHEBANG_FILES= bin/htmldiff bin/ldiff Index: textproc/rubygem-diffy/Makefile =================================================================== --- textproc/rubygem-diffy/Makefile (revision 414025) +++ textproc/rubygem-diffy/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-elasticsearch/Makefile =================================================================== --- textproc/rubygem-elasticsearch/Makefile (revision 414025) +++ textproc/rubygem-elasticsearch/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-elasticsearch-api/Makefile =================================================================== --- textproc/rubygem-elasticsearch-api/Makefile (revision 414025) +++ textproc/rubygem-elasticsearch-api/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-elasticsearch-transport/Makefile =================================================================== --- textproc/rubygem-elasticsearch-transport/Makefile (revision 414025) +++ textproc/rubygem-elasticsearch-transport/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-emot/Makefile =================================================================== --- textproc/rubygem-emot/Makefile (revision 414025) +++ textproc/rubygem-emot/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/emot Index: textproc/rubygem-escape_utils/Makefile =================================================================== --- textproc/rubygem-escape_utils/Makefile (revision 414025) +++ textproc/rubygem-escape_utils/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-escape_utils-rails4/Makefile =================================================================== --- textproc/rubygem-escape_utils-rails4/Makefile (revision 414025) +++ textproc/rubygem-escape_utils-rails4/Makefile (working copy) @@ -14,7 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-ezamar/Makefile =================================================================== --- textproc/rubygem-ezamar/Makefile (revision 414025) +++ textproc/rubygem-ezamar/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-fast_xs/Makefile =================================================================== --- textproc/rubygem-fast_xs/Makefile (revision 414025) +++ textproc/rubygem-fast_xs/Makefile (working copy) @@ -14,7 +14,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-fast_xs073/Makefile =================================================================== --- textproc/rubygem-fast_xs073/Makefile (revision 414025) +++ textproc/rubygem-fast_xs073/Makefile (working copy) @@ -18,7 +18,6 @@ PORTSCOUT= limit:^0.7 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-ferret/Makefile =================================================================== --- textproc/rubygem-ferret/Makefile (revision 414025) +++ textproc/rubygem-ferret/Makefile (working copy) @@ -12,8 +12,7 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ferret-browser Index: textproc/rubygem-fog-xml/Makefile =================================================================== --- textproc/rubygem-fog-xml/Makefile (revision 414025) +++ textproc/rubygem-fog-xml/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-gemoji/Makefile =================================================================== --- textproc/rubygem-gemoji/Makefile (revision 414025) +++ textproc/rubygem-gemoji/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-gherkin/Makefile =================================================================== --- textproc/rubygem-gherkin/Makefile (revision 414025) +++ textproc/rubygem-gherkin/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-gherkin3/Makefile =================================================================== --- textproc/rubygem-gherkin3/Makefile (revision 414025) +++ textproc/rubygem-gherkin3/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-github-linguist/Makefile =================================================================== --- textproc/rubygem-github-linguist/Makefile (revision 414025) +++ textproc/rubygem-github-linguist/Makefile (working copy) @@ -18,8 +18,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/git-linguist bin/linguist Index: textproc/rubygem-github-markdown/Makefile =================================================================== --- textproc/rubygem-github-markdown/Makefile (revision 414025) +++ textproc/rubygem-github-markdown/Makefile (working copy) @@ -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: textproc/rubygem-github-markup/Makefile =================================================================== --- textproc/rubygem-github-markup/Makefile (revision 414025) +++ textproc/rubygem-github-markup/Makefile (working copy) @@ -15,9 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= script/bootstrap \ script/cibuild Index: textproc/rubygem-gitlab-grit/Makefile =================================================================== --- textproc/rubygem-gitlab-grit/Makefile (revision 414025) +++ textproc/rubygem-gitlab-grit/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-gitlab-linguist/Makefile =================================================================== --- textproc/rubygem-gitlab-linguist/Makefile (revision 414025) +++ textproc/rubygem-gitlab-linguist/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/linguist Index: textproc/rubygem-heredoc_unindent/Makefile =================================================================== --- textproc/rubygem-heredoc_unindent/Makefile (revision 414025) +++ textproc/rubygem-heredoc_unindent/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-hikidoc/Makefile =================================================================== --- textproc/rubygem-hikidoc/Makefile (revision 414025) +++ textproc/rubygem-hikidoc/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/hikidoc Index: textproc/rubygem-html-pipeline/Makefile =================================================================== --- textproc/rubygem-html-pipeline/Makefile (revision 414025) +++ textproc/rubygem-html-pipeline/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-html-pipeline-gitlab/Makefile =================================================================== --- textproc/rubygem-html-pipeline-gitlab/Makefile (revision 414025) +++ textproc/rubygem-html-pipeline-gitlab/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-html-pipeline1/Makefile =================================================================== --- textproc/rubygem-html-pipeline1/Makefile (revision 414025) +++ textproc/rubygem-html-pipeline1/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-htmlentities/Makefile =================================================================== --- textproc/rubygem-htmlentities/Makefile (revision 414025) +++ textproc/rubygem-htmlentities/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-ini/Makefile =================================================================== --- textproc/rubygem-ini/Makefile (revision 414025) +++ textproc/rubygem-ini/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-itextomml/Makefile =================================================================== --- textproc/rubygem-itextomml/Makefile (revision 414025) +++ textproc/rubygem-itextomml/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_COMB= dual USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-assets/Makefile =================================================================== --- textproc/rubygem-jekyll-assets/Makefile (revision 414025) +++ textproc/rubygem-jekyll-assets/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-feed/Makefile =================================================================== --- textproc/rubygem-jekyll-feed/Makefile (revision 414025) +++ textproc/rubygem-jekyll-feed/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-gist/Makefile =================================================================== --- textproc/rubygem-jekyll-gist/Makefile (revision 414025) +++ textproc/rubygem-jekyll-gist/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-mentions/Makefile =================================================================== --- textproc/rubygem-jekyll-mentions/Makefile (revision 414025) +++ textproc/rubygem-jekyll-mentions/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-paginate/Makefile =================================================================== --- textproc/rubygem-jekyll-paginate/Makefile (revision 414025) +++ textproc/rubygem-jekyll-paginate/Makefile (working copy) @@ -16,9 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= script/bootstrap \ script/cibuild \ script/unbundle Index: textproc/rubygem-jekyll-redirect-from/Makefile =================================================================== --- textproc/rubygem-jekyll-redirect-from/Makefile (revision 414025) +++ textproc/rubygem-jekyll-redirect-from/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-sass-converter/Makefile =================================================================== --- textproc/rubygem-jekyll-sass-converter/Makefile (revision 414025) +++ textproc/rubygem-jekyll-sass-converter/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jekyll-sitemap/Makefile =================================================================== --- textproc/rubygem-jekyll-sitemap/Makefile (revision 414025) +++ textproc/rubygem-jekyll-sitemap/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jemoji/Makefile =================================================================== --- textproc/rubygem-jemoji/Makefile (revision 414025) +++ textproc/rubygem-jemoji/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-jsmin/Makefile =================================================================== --- textproc/rubygem-jsmin/Makefile (revision 414025) +++ textproc/rubygem-jsmin/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-kramdown/Makefile =================================================================== --- textproc/rubygem-kramdown/Makefile (revision 414025) +++ textproc/rubygem-kramdown/Makefile (working copy) @@ -14,9 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/kramdown Index: textproc/rubygem-kwalify/Makefile =================================================================== --- textproc/rubygem-kwalify/Makefile (revision 414025) +++ textproc/rubygem-kwalify/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/kwalify Index: textproc/rubygem-libxml-ruby/Makefile =================================================================== --- textproc/rubygem-libxml-ruby/Makefile (revision 414025) +++ textproc/rubygem-libxml-ruby/Makefile (working copy) @@ -13,7 +13,6 @@ USE_GNOME= libxml2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-linguistics/Makefile =================================================================== --- textproc/rubygem-linguistics/Makefile (revision 414025) +++ textproc/rubygem-linguistics/Makefile (working copy) @@ -17,9 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= lib/linguistics.rb \ lib/linguistics/en/linkparser.rb Index: textproc/rubygem-liquid/Makefile =================================================================== --- textproc/rubygem-liquid/Makefile (revision 414025) +++ textproc/rubygem-liquid/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-liquid2/Makefile =================================================================== --- textproc/rubygem-liquid2/Makefile (revision 414025) +++ textproc/rubygem-liquid2/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-loggability/Makefile =================================================================== --- textproc/rubygem-loggability/Makefile (revision 414025) +++ textproc/rubygem-loggability/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-loofah/Makefile =================================================================== --- textproc/rubygem-loofah/Makefile (revision 414025) +++ textproc/rubygem-loofah/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-ltsv/Makefile =================================================================== --- textproc/rubygem-ltsv/Makefile (revision 414025) +++ textproc/rubygem-ltsv/Makefile (working copy) @@ -11,7 +11,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-markaby/Makefile =================================================================== --- textproc/rubygem-markaby/Makefile (revision 414025) +++ textproc/rubygem-markaby/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-multi_xml/Makefile =================================================================== --- textproc/rubygem-multi_xml/Makefile (revision 414025) +++ textproc/rubygem-multi_xml/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist NOKOGIRI_RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri Index: textproc/rubygem-nokogiri/Makefile =================================================================== --- textproc/rubygem-nokogiri/Makefile (revision 414025) +++ textproc/rubygem-nokogiri/Makefile (working copy) @@ -11,10 +11,8 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist pkgconfig USE_GNOME= libxml2 libxslt -USES= pkgconfig CONFIGURE_ARGS= --use-system-libraries PLIST_FILES= bin/nokogiri Index: textproc/rubygem-nokogiri-diff/Makefile =================================================================== --- textproc/rubygem-nokogiri-diff/Makefile (revision 414025) +++ textproc/rubygem-nokogiri-diff/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-nokogiri14/Makefile =================================================================== --- textproc/rubygem-nokogiri14/Makefile (revision 414025) +++ textproc/rubygem-nokogiri14/Makefile (working copy) @@ -12,10 +12,8 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist pkgconfig USE_GNOME= libxml2 libxslt -USES= pkgconfig CONFIGURE_ARGS= --use-system-libraries PLIST_FILES= bin/nokogiri14 Index: textproc/rubygem-nokogumbo/Makefile =================================================================== --- textproc/rubygem-nokogumbo/Makefile (revision 414025) +++ textproc/rubygem-nokogumbo/Makefile (working copy) @@ -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: textproc/rubygem-octopress-escape-code/Makefile =================================================================== --- textproc/rubygem-octopress-escape-code/Makefile (revision 414025) +++ textproc/rubygem-octopress-escape-code/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-opml/Makefile =================================================================== --- textproc/rubygem-opml/Makefile (revision 414025) +++ textproc/rubygem-opml/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-org-ruby/Makefile =================================================================== --- textproc/rubygem-org-ruby/Makefile (revision 414025) +++ textproc/rubygem-org-ruby/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/org-ruby Index: textproc/rubygem-parslet/Makefile =================================================================== --- textproc/rubygem-parslet/Makefile (revision 414025) +++ textproc/rubygem-parslet/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-phone/Makefile =================================================================== --- textproc/rubygem-phone/Makefile (revision 414025) +++ textproc/rubygem-phone/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rails-dom-testing/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing/Makefile (revision 414025) +++ textproc/rubygem-rails-dom-testing/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rails-html-sanitizer/Makefile =================================================================== --- textproc/rubygem-rails-html-sanitizer/Makefile (revision 414025) +++ textproc/rubygem-rails-html-sanitizer/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rak/Makefile =================================================================== --- textproc/rubygem-rak/Makefile (revision 414025) +++ textproc/rubygem-rak/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rak Index: textproc/rubygem-rchardet/Makefile =================================================================== --- textproc/rubygem-rchardet/Makefile (revision 414025) +++ textproc/rubygem-rchardet/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rdiscount/Makefile =================================================================== --- textproc/rubygem-rdiscount/Makefile (revision 414025) +++ textproc/rubygem-rdiscount/Makefile (working copy) @@ -12,8 +12,7 @@ LICENSE= BSD3CLAUSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rdiscount Index: textproc/rubygem-rdtool/Makefile =================================================================== --- textproc/rubygem-rdtool/Makefile (revision 414025) +++ textproc/rubygem-rdtool/Makefile (working copy) @@ -14,12 +14,10 @@ NO_ARCH= yes -USES= shebangfix +USE_RUBY= yes +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/rd2 bin/rdswap.rb ruby_OLD_CMD= /usr/bin/ruby1.9.1 -USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rd2 bin/rdswap.rb Index: textproc/rubygem-redcarpet/Makefile =================================================================== --- textproc/rubygem-redcarpet/Makefile (revision 414025) +++ textproc/rubygem-redcarpet/Makefile (working copy) @@ -13,8 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/redcarpet Index: textproc/rubygem-reverse_markdown/Makefile =================================================================== --- textproc/rubygem-reverse_markdown/Makefile (revision 414025) +++ textproc/rubygem-reverse_markdown/Makefile (working copy) @@ -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: textproc/rubygem-ri_cal/Makefile =================================================================== --- textproc/rubygem-ri_cal/Makefile (revision 414025) +++ textproc/rubygem-ri_cal/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ri_cal Index: textproc/rubygem-rich/Makefile =================================================================== --- textproc/rubygem-rich/Makefile (revision 414025) +++ textproc/rubygem-rich/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rmmseg-cpp/Makefile =================================================================== --- textproc/rubygem-rmmseg-cpp/Makefile (revision 414025) +++ textproc/rubygem-rmmseg-cpp/Makefile (working copy) @@ -13,9 +13,7 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= misc/convert.rb PLIST_FILES= bin/rmmseg Index: textproc/rubygem-rouge/Makefile =================================================================== --- textproc/rubygem-rouge/Makefile (revision 414025) +++ textproc/rubygem-rouge/Makefile (working copy) @@ -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: textproc/rubygem-rttool/Makefile =================================================================== --- textproc/rubygem-rttool/Makefile (revision 414025) +++ textproc/rubygem-rttool/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rdrt2 bin/rt2 Index: textproc/rubygem-ruby-augeas/Makefile =================================================================== --- textproc/rubygem-ruby-augeas/Makefile (revision 414025) +++ textproc/rubygem-ruby-augeas/Makefile (working copy) @@ -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: textproc/rubygem-ruby-xslt/Makefile =================================================================== --- textproc/rubygem-ruby-xslt/Makefile (revision 414025) +++ textproc/rubygem-ruby-xslt/Makefile (working copy) @@ -13,7 +13,6 @@ USE_GNOME= libxslt USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rubypants/Makefile =================================================================== --- textproc/rubygem-rubypants/Makefile (revision 414025) +++ textproc/rubygem-rubypants/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-rugments/Makefile =================================================================== --- textproc/rubygem-rugments/Makefile (revision 414025) +++ textproc/rubygem-rugments/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rugmentize Index: textproc/rubygem-sanitize/Makefile =================================================================== --- textproc/rubygem-sanitize/Makefile (revision 414025) +++ textproc/rubygem-sanitize/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-sass/Makefile =================================================================== --- textproc/rubygem-sass/Makefile (revision 414025) +++ textproc/rubygem-sass/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/sass bin/sass-convert bin/scss Index: textproc/rubygem-sass-rails/Makefile =================================================================== --- textproc/rubygem-sass-rails/Makefile (revision 414025) +++ textproc/rubygem-sass-rails/Makefile (working copy) @@ -19,8 +19,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^3\. Index: textproc/rubygem-sass-rails4/Makefile =================================================================== --- textproc/rubygem-sass-rails4/Makefile (revision 414025) +++ textproc/rubygem-sass-rails4/Makefile (working copy) @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-sass-rails5/Makefile =================================================================== --- textproc/rubygem-sass-rails5/Makefile (revision 414025) +++ textproc/rubygem-sass-rails5/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-sass32/Makefile =================================================================== --- textproc/rubygem-sass32/Makefile (revision 414025) +++ textproc/rubygem-sass32/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-sax-machine/Makefile =================================================================== --- textproc/rubygem-sax-machine/Makefile (revision 414025) +++ textproc/rubygem-sax-machine/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-scss_lint/Makefile =================================================================== --- textproc/rubygem-scss_lint/Makefile (revision 414025) +++ textproc/rubygem-scss_lint/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/scss-lint Index: textproc/rubygem-shell2html/Makefile =================================================================== --- textproc/rubygem-shell2html/Makefile (revision 414025) +++ textproc/rubygem-shell2html/Makefile (working copy) @@ -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: textproc/rubygem-simplecov-html/Makefile =================================================================== --- textproc/rubygem-simplecov-html/Makefile (revision 414025) +++ textproc/rubygem-simplecov-html/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-spreadsheet/Makefile =================================================================== --- textproc/rubygem-spreadsheet/Makefile (revision 414025) +++ textproc/rubygem-spreadsheet/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/xlsopcodes Index: textproc/rubygem-stamp/Makefile =================================================================== --- textproc/rubygem-stamp/Makefile (revision 414025) +++ textproc/rubygem-stamp/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-string-scrub/Makefile =================================================================== --- textproc/rubygem-string-scrub/Makefile (revision 414025) +++ textproc/rubygem-string-scrub/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-syntax/Makefile =================================================================== --- textproc/rubygem-syntax/Makefile (revision 414025) +++ textproc/rubygem-syntax/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-termcolor/Makefile =================================================================== --- textproc/rubygem-termcolor/Makefile (revision 414025) +++ textproc/rubygem-termcolor/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-terminal-table/Makefile =================================================================== --- textproc/rubygem-terminal-table/Makefile (revision 414025) +++ textproc/rubygem-terminal-table/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-text/Makefile =================================================================== --- textproc/rubygem-text/Makefile (revision 414025) +++ textproc/rubygem-text/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-tidy/Makefile =================================================================== --- textproc/rubygem-tidy/Makefile (revision 414025) +++ textproc/rubygem-tidy/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-twitter-text/Makefile =================================================================== --- textproc/rubygem-twitter-text/Makefile (revision 414025) +++ textproc/rubygem-twitter-text/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-unf/Makefile =================================================================== --- textproc/rubygem-unf/Makefile (revision 414025) +++ textproc/rubygem-unf/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-unf_ext/Makefile =================================================================== --- textproc/rubygem-unf_ext/Makefile (revision 414025) +++ textproc/rubygem-unf_ext/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-version_sorter/Makefile =================================================================== --- textproc/rubygem-version_sorter/Makefile (revision 414025) +++ textproc/rubygem-version_sorter/Makefile (working copy) @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-wikicloth/Makefile =================================================================== --- textproc/rubygem-wikicloth/Makefile (revision 414025) +++ textproc/rubygem-wikicloth/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-xml-simple/Makefile =================================================================== --- textproc/rubygem-xml-simple/Makefile (revision 414025) +++ textproc/rubygem-xml-simple/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-ya2yaml/Makefile =================================================================== --- textproc/rubygem-ya2yaml/Makefile (revision 414025) +++ textproc/rubygem-ya2yaml/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-yard/Makefile =================================================================== --- textproc/rubygem-yard/Makefile (revision 414025) +++ textproc/rubygem-yard/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/yard \ bin/yardoc \ Index: textproc/rubygem-yard-chef/Makefile =================================================================== --- textproc/rubygem-yard-chef/Makefile (revision 414025) +++ textproc/rubygem-yard-chef/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: textproc/rubygem-zmq/Makefile =================================================================== --- textproc/rubygem-zmq/Makefile (revision 414025) +++ textproc/rubygem-zmq/Makefile (working copy) @@ -14,7 +14,6 @@ LIB_DEPENDS= libzmq.so:net/libzmq2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-ace-rails-ap/Makefile =================================================================== --- www/rubygem-ace-rails-ap/Makefile (revision 414025) +++ www/rubygem-ace-rails-ap/Makefile (working copy) @@ -14,9 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= update.sh Index: www/rubygem-actionpack/Makefile =================================================================== --- www/rubygem-actionpack/Makefile (revision 414025) +++ www/rubygem-actionpack/Makefile (working copy) @@ -24,7 +24,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-actionpack4/Makefile =================================================================== --- www/rubygem-actionpack4/Makefile (revision 414025) +++ www/rubygem-actionpack4/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-activeresource/Makefile =================================================================== --- www/rubygem-activeresource/Makefile (revision 414025) +++ www/rubygem-activeresource/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-activeresource4/Makefile =================================================================== --- www/rubygem-activeresource4/Makefile (revision 414025) +++ www/rubygem-activeresource4/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-acts-as-taggable-on/Makefile =================================================================== --- www/rubygem-acts-as-taggable-on/Makefile (revision 414025) +++ www/rubygem-acts-as-taggable-on/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= YES -USE_RUBYGEMS= YES -RUBYGEM_AUTOPLIST= YES +USES= gem:autoplist BROKEN_RUBY23= yes Index: www/rubygem-acts-as-taggable-on3/Makefile =================================================================== --- www/rubygem-acts-as-taggable-on3/Makefile (revision 414025) +++ www/rubygem-acts-as-taggable-on3/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-acts_as_taggable/Makefile =================================================================== --- www/rubygem-acts_as_taggable/Makefile (revision 414025) +++ www/rubygem-acts_as_taggable/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-addressable/Makefile =================================================================== --- www/rubygem-addressable/Makefile (revision 414025) +++ www/rubygem-addressable/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-akami/Makefile =================================================================== --- www/rubygem-akami/Makefile (revision 414025) +++ www/rubygem-akami/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-amazon-ecs/Makefile =================================================================== --- www/rubygem-amazon-ecs/Makefile (revision 414025) +++ www/rubygem-amazon-ecs/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-anemone/Makefile =================================================================== --- www/rubygem-anemone/Makefile (revision 414025) +++ www/rubygem-anemone/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/anemone Index: www/rubygem-asana/Makefile =================================================================== --- www/rubygem-asana/Makefile (revision 414025) +++ www/rubygem-asana/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-async_sinatra/Makefile =================================================================== --- www/rubygem-async_sinatra/Makefile (revision 414025) +++ www/rubygem-async_sinatra/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-bluecloth/Makefile =================================================================== --- www/rubygem-bluecloth/Makefile (revision 414025) +++ www/rubygem-bluecloth/Makefile (working copy) @@ -12,9 +12,7 @@ LICENSE= BSD3CLAUSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= bin/bluecloth PLIST_FILES= bin/bluecloth Index: www/rubygem-bootstrap-sass/Makefile =================================================================== --- www/rubygem-bootstrap-sass/Makefile (revision 414025) +++ www/rubygem-bootstrap-sass/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-browser/Makefile =================================================================== --- www/rubygem-browser/Makefile (revision 414025) +++ www/rubygem-browser/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-cal-heatmap-rails/Makefile =================================================================== --- www/rubygem-cal-heatmap-rails/Makefile (revision 414025) +++ www/rubygem-cal-heatmap-rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-cal-heatmap-rails-rails4/Makefile =================================================================== --- www/rubygem-cal-heatmap-rails-rails4/Makefile (revision 414025) +++ www/rubygem-cal-heatmap-rails-rails4/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-carrierwave/Makefile =================================================================== --- www/rubygem-carrierwave/Makefile (revision 414025) +++ www/rubygem-carrierwave/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-cgi_multipart_eof_fix/Makefile =================================================================== --- www/rubygem-cgi_multipart_eof_fix/Makefile (revision 414025) +++ www/rubygem-cgi_multipart_eof_fix/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-chosen-rails/Makefile =================================================================== --- www/rubygem-chosen-rails/Makefile (revision 414025) +++ www/rubygem-chosen-rails/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-cookiejar/Makefile =================================================================== --- www/rubygem-cookiejar/Makefile (revision 414025) +++ www/rubygem-cookiejar/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-crass/Makefile =================================================================== --- www/rubygem-crass/Makefile (revision 414025) +++ www/rubygem-crass/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-cuba/Makefile =================================================================== --- www/rubygem-cuba/Makefile (revision 414025) +++ www/rubygem-cuba/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-d3_rails/Makefile =================================================================== --- www/rubygem-d3_rails/Makefile (revision 414025) +++ www/rubygem-d3_rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-d3_rails-rails4/Makefile =================================================================== --- www/rubygem-d3_rails-rails4/Makefile (revision 414025) +++ www/rubygem-d3_rails-rails4/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-dashing/Makefile =================================================================== --- www/rubygem-dashing/Makefile (revision 414025) +++ www/rubygem-dashing/Makefile (working copy) @@ -28,8 +28,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/dashing Index: www/rubygem-davclient/Makefile =================================================================== --- www/rubygem-davclient/Makefile (revision 414025) +++ www/rubygem-davclient/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/dav Index: www/rubygem-domainatrix/Makefile =================================================================== --- www/rubygem-domainatrix/Makefile (revision 414025) +++ www/rubygem-domainatrix/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-dropzonejs-rails/Makefile =================================================================== --- www/rubygem-dropzonejs-rails/Makefile (revision 414025) +++ www/rubygem-dropzonejs-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-em-http-request/Makefile =================================================================== --- www/rubygem-em-http-request/Makefile (revision 414025) +++ www/rubygem-em-http-request/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-em-socksify/Makefile =================================================================== --- www/rubygem-em-socksify/Makefile (revision 414025) +++ www/rubygem-em-socksify/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-em-twitter/Makefile =================================================================== --- www/rubygem-em-twitter/Makefile (revision 414025) +++ www/rubygem-em-twitter/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-em-websocket/Makefile =================================================================== --- www/rubygem-em-websocket/Makefile (revision 414025) +++ www/rubygem-em-websocket/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-emk-sinatra-url-for/Makefile =================================================================== --- www/rubygem-emk-sinatra-url-for/Makefile (revision 414025) +++ www/rubygem-emk-sinatra-url-for/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-erubis/Makefile =================================================================== --- www/rubygem-erubis/Makefile (revision 414025) +++ www/rubygem-erubis/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/erubis Index: www/rubygem-ethon/Makefile =================================================================== --- www/rubygem-ethon/Makefile (revision 414025) +++ www/rubygem-ethon/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-eventmachine_httpserver/Makefile =================================================================== --- www/rubygem-eventmachine_httpserver/Makefile (revision 414025) +++ www/rubygem-eventmachine_httpserver/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= GPLv2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-faraday/Makefile =================================================================== --- www/rubygem-faraday/Makefile (revision 414025) +++ www/rubygem-faraday/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-faraday_middleware/Makefile =================================================================== --- www/rubygem-faraday_middleware/Makefile (revision 414025) +++ www/rubygem-faraday_middleware/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-fcgi/Makefile =================================================================== --- www/rubygem-fcgi/Makefile (revision 414025) +++ www/rubygem-fcgi/Makefile (working copy) @@ -13,7 +13,6 @@ LIB_DEPENDS= libfcgi.so:www/fcgi USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-feed-normalizer/Makefile =================================================================== --- www/rubygem-feed-normalizer/Makefile (revision 414025) +++ www/rubygem-feed-normalizer/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-feedjira/Makefile =================================================================== --- www/rubygem-feedjira/Makefile (revision 414025) +++ www/rubygem-feedjira/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-flowdock/Makefile =================================================================== --- www/rubygem-flowdock/Makefile (revision 414025) +++ www/rubygem-flowdock/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-geminabox/Makefile =================================================================== --- www/rubygem-geminabox/Makefile (revision 414025) +++ www/rubygem-geminabox/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gitlab-flowdock-git-hook/Makefile =================================================================== --- www/rubygem-gitlab-flowdock-git-hook/Makefile (revision 414025) +++ www/rubygem-gitlab-flowdock-git-hook/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gitlab-gollum-lib/Makefile =================================================================== --- www/rubygem-gitlab-gollum-lib/Makefile (revision 414025) +++ www/rubygem-gitlab-gollum-lib/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gitlab-grack/Makefile =================================================================== --- www/rubygem-gitlab-grack/Makefile (revision 414025) +++ www/rubygem-gitlab-grack/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gollum-grit_adapter/Makefile =================================================================== --- www/rubygem-gollum-grit_adapter/Makefile (revision 414025) +++ www/rubygem-gollum-grit_adapter/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gollum-lib/Makefile =================================================================== --- www/rubygem-gollum-lib/Makefile (revision 414025) +++ www/rubygem-gollum-lib/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gollum-rugged_adapter/Makefile =================================================================== --- www/rubygem-gollum-rugged_adapter/Makefile (revision 414025) +++ www/rubygem-gollum-rugged_adapter/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gon/Makefile =================================================================== --- www/rubygem-gon/Makefile (revision 414025) +++ www/rubygem-gon/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-gon-rails4/Makefile =================================================================== --- www/rubygem-gon-rails4/Makefile (revision 414025) +++ www/rubygem-gon-rails4/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-hackpad-cli/Makefile =================================================================== --- www/rubygem-hackpad-cli/Makefile (revision 414025) +++ www/rubygem-hackpad-cli/Makefile (working copy) @@ -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: www/rubygem-haml/Makefile =================================================================== --- www/rubygem-haml/Makefile (revision 414025) +++ www/rubygem-haml/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/haml Index: www/rubygem-haml-coderay/Makefile =================================================================== --- www/rubygem-haml-coderay/Makefile (revision 414025) +++ www/rubygem-haml-coderay/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-haml-contrib/Makefile =================================================================== --- www/rubygem-haml-contrib/Makefile (revision 414025) +++ www/rubygem-haml-contrib/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-haml-rails/Makefile =================================================================== --- www/rubygem-haml-rails/Makefile (revision 414025) +++ www/rubygem-haml-rails/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-haml-rails-rails4/Makefile =================================================================== --- www/rubygem-haml-rails-rails4/Makefile (revision 414025) +++ www/rubygem-haml-rails-rails4/Makefile (working copy) @@ -20,7 +20,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-hashicorp-checkpoint/Makefile =================================================================== --- www/rubygem-hashicorp-checkpoint/Makefile (revision 414025) +++ www/rubygem-hashicorp-checkpoint/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-heroku/Makefile =================================================================== --- www/rubygem-heroku/Makefile (revision 414025) +++ www/rubygem-heroku/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/heroku Index: www/rubygem-heroku-api/Makefile =================================================================== --- www/rubygem-heroku-api/Makefile (revision 414025) +++ www/rubygem-heroku-api/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-heroku-nav/Makefile =================================================================== --- www/rubygem-heroku-nav/Makefile (revision 414025) +++ www/rubygem-heroku-nav/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist RUN_DEPENDS+= rubygem-sinatra>=0:www/rubygem-sinatra Index: www/rubygem-hpricot/Makefile =================================================================== --- www/rubygem-hpricot/Makefile (revision 414025) +++ www/rubygem-hpricot/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-html2haml/Makefile =================================================================== --- www/rubygem-html2haml/Makefile (revision 414025) +++ www/rubygem-html2haml/Makefile (working copy) @@ -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: www/rubygem-http/Makefile =================================================================== --- www/rubygem-http/Makefile (revision 414025) +++ www/rubygem-http/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-http-cookie/Makefile =================================================================== --- www/rubygem-http-cookie/Makefile (revision 414025) +++ www/rubygem-http-cookie/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-http-form_data/Makefile =================================================================== --- www/rubygem-http-form_data/Makefile (revision 414025) +++ www/rubygem-http-form_data/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-http_router/Makefile =================================================================== --- www/rubygem-http_router/Makefile (revision 414025) +++ www/rubygem-http_router/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-httparty/Makefile =================================================================== --- www/rubygem-httparty/Makefile (revision 414025) +++ www/rubygem-httparty/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/httparty Index: www/rubygem-httpclient/Makefile =================================================================== --- www/rubygem-httpclient/Makefile (revision 414025) +++ www/rubygem-httpclient/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/httpclient Index: www/rubygem-httpi/Makefile =================================================================== --- www/rubygem-httpi/Makefile (revision 414025) +++ www/rubygem-httpi/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^0\.9\. Index: www/rubygem-innate/Makefile =================================================================== --- www/rubygem-innate/Makefile (revision 414025) +++ www/rubygem-innate/Makefile (working copy) @@ -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: www/rubygem-jekyll/Makefile =================================================================== --- www/rubygem-jekyll/Makefile (revision 414025) +++ www/rubygem-jekyll/Makefile (working copy) @@ -25,8 +25,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/jekyll Index: www/rubygem-jekyll-watch/Makefile =================================================================== --- www/rubygem-jekyll-watch/Makefile (revision 414025) +++ www/rubygem-jekyll-watch/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jekyll2/Makefile =================================================================== --- www/rubygem-jekyll2/Makefile (revision 414025) +++ www/rubygem-jekyll2/Makefile (working copy) @@ -35,8 +35,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/jekyll Index: www/rubygem-journey/Makefile =================================================================== --- www/rubygem-journey/Makefile (revision 414025) +++ www/rubygem-journey/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-atwho-rails/Makefile =================================================================== --- www/rubygem-jquery-atwho-rails/Makefile (revision 414025) +++ www/rubygem-jquery-atwho-rails/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-atwho-rails-rails4/Makefile =================================================================== --- www/rubygem-jquery-atwho-rails-rails4/Makefile (revision 414025) +++ www/rubygem-jquery-atwho-rails-rails4/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-rails/Makefile =================================================================== --- www/rubygem-jquery-rails/Makefile (revision 414025) +++ www/rubygem-jquery-rails/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-rails4/Makefile =================================================================== --- www/rubygem-jquery-rails4/Makefile (revision 414025) +++ www/rubygem-jquery-rails4/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-scrollto-rails/Makefile =================================================================== --- www/rubygem-jquery-scrollto-rails/Makefile (revision 414025) +++ www/rubygem-jquery-scrollto-rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-turbolinks/Makefile =================================================================== --- www/rubygem-jquery-turbolinks/Makefile (revision 414025) +++ www/rubygem-jquery-turbolinks/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-ui-rails/Makefile =================================================================== --- www/rubygem-jquery-ui-rails/Makefile (revision 414025) +++ www/rubygem-jquery-ui-rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jquery-ui-rails-rails4/Makefile =================================================================== --- www/rubygem-jquery-ui-rails-rails4/Makefile (revision 414025) +++ www/rubygem-jquery-ui-rails-rails4/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jruby-rack/Makefile =================================================================== --- www/rubygem-jruby-rack/Makefile (revision 414025) +++ www/rubygem-jruby-rack/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-jsobfu/Makefile =================================================================== --- www/rubygem-jsobfu/Makefile (revision 414025) +++ www/rubygem-jsobfu/Makefile (working copy) @@ -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: www/rubygem-jwt/Makefile =================================================================== --- www/rubygem-jwt/Makefile (revision 414025) +++ www/rubygem-jwt/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-kaminari/Makefile =================================================================== --- www/rubygem-kaminari/Makefile (revision 414025) +++ www/rubygem-kaminari/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-kaminari-rails4/Makefile =================================================================== --- www/rubygem-kaminari-rails4/Makefile (revision 414025) +++ www/rubygem-kaminari-rails4/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-kensa/Makefile =================================================================== --- www/rubygem-kensa/Makefile (revision 414025) +++ www/rubygem-kensa/Makefile (working copy) @@ -13,8 +13,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/kensa Index: www/rubygem-layout_yullio_generator/Makefile =================================================================== --- www/rubygem-layout_yullio_generator/Makefile (revision 414025) +++ www/rubygem-layout_yullio_generator/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-less/Makefile =================================================================== --- www/rubygem-less/Makefile (revision 414025) +++ www/rubygem-less/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/lessc Index: www/rubygem-lighthouse-api/Makefile =================================================================== --- www/rubygem-lighthouse-api/Makefile (revision 414025) +++ www/rubygem-lighthouse-api/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-maruku/Makefile =================================================================== --- www/rubygem-maruku/Makefile (revision 414025) +++ www/rubygem-maruku/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/maruku bin/marutex Index: www/rubygem-mechanize/Makefile =================================================================== --- www/rubygem-mechanize/Makefile (revision 414025) +++ www/rubygem-mechanize/Makefile (working copy) @@ -23,7 +23,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-mechanize26/Makefile =================================================================== --- www/rubygem-mechanize26/Makefile (revision 414025) +++ www/rubygem-mechanize26/Makefile (working copy) @@ -24,8 +24,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.6 Index: www/rubygem-merb-assets/Makefile =================================================================== --- www/rubygem-merb-assets/Makefile (revision 414025) +++ www/rubygem-merb-assets/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-merb-core/Makefile =================================================================== --- www/rubygem-merb-core/Makefile (revision 414025) +++ www/rubygem-merb-core/Makefile (working copy) @@ -21,9 +21,7 @@ rubygem-rake>=0:devel/rubygem-rake USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis \ spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis Index: www/rubygem-merb-haml/Makefile =================================================================== --- www/rubygem-merb-haml/Makefile (revision 414025) +++ www/rubygem-merb-haml/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-merb-helpers/Makefile =================================================================== --- www/rubygem-merb-helpers/Makefile (revision 414025) +++ www/rubygem-merb-helpers/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-merb-param-protection/Makefile =================================================================== --- www/rubygem-merb-param-protection/Makefile (revision 414025) +++ www/rubygem-merb-param-protection/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-mousetrap-rails/Makefile =================================================================== --- www/rubygem-mousetrap-rails/Makefile (revision 414025) +++ www/rubygem-mousetrap-rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-multipart-post/Makefile =================================================================== --- www/rubygem-multipart-post/Makefile (revision 414025) +++ www/rubygem-multipart-post/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-nanoc/Makefile =================================================================== --- www/rubygem-nanoc/Makefile (revision 414025) +++ www/rubygem-nanoc/Makefile (working copy) @@ -16,9 +16,8 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes USE_RAKE= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/nanoc Index: www/rubygem-nested_form/Makefile =================================================================== --- www/rubygem-nested_form/Makefile (revision 414025) +++ www/rubygem-nested_form/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-net-http-digest_auth/Makefile =================================================================== --- www/rubygem-net-http-digest_auth/Makefile (revision 414025) +++ www/rubygem-net-http-digest_auth/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-net-http-digest_auth11/Makefile =================================================================== --- www/rubygem-net-http-digest_auth11/Makefile (revision 414025) +++ www/rubygem-net-http-digest_auth11/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^1\.1 Index: www/rubygem-net-http-persistent/Makefile =================================================================== --- www/rubygem-net-http-persistent/Makefile (revision 414025) +++ www/rubygem-net-http-persistent/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-net-http-persistent25/Makefile =================================================================== --- www/rubygem-net-http-persistent25/Makefile (revision 414025) +++ www/rubygem-net-http-persistent25/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PORTSCOUT= limit:^2\.5 Index: www/rubygem-net-http-pipeline/Makefile =================================================================== --- www/rubygem-net-http-pipeline/Makefile (revision 414025) +++ www/rubygem-net-http-pipeline/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-nicovideo/Makefile =================================================================== --- www/rubygem-nicovideo/Makefile (revision 414025) +++ www/rubygem-nicovideo/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-ntlm-http/Makefile =================================================================== --- www/rubygem-ntlm-http/Makefile (revision 414025) +++ www/rubygem-ntlm-http/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-octopress/Makefile =================================================================== --- www/rubygem-octopress/Makefile (revision 414025) +++ www/rubygem-octopress/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/octopress Index: www/rubygem-pagerduty/Makefile =================================================================== --- www/rubygem-pagerduty/Makefile (revision 414025) +++ www/rubygem-pagerduty/Makefile (working copy) @@ -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: www/rubygem-passenger/Makefile =================================================================== --- www/rubygem-passenger/Makefile (revision 414025) +++ www/rubygem-passenger/Makefile (working copy) @@ -10,8 +10,6 @@ MAINTAINER= osa@FreeBSD.org COMMENT= Modules for running Ruby on Rails and Rack applications -USES+= cpe - CPE_VENDOR= phusion CPE_PRODUCT= passenger @@ -25,8 +23,7 @@ USE_RUBY= yes USE_RAKE= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= cpe gem:autoplist .include Index: www/rubygem-puma/Makefile =================================================================== --- www/rubygem-puma/Makefile (revision 414025) +++ www/rubygem-puma/Makefile (working copy) @@ -13,9 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/puma bin/pumactl Index: www/rubygem-pusher-client/Makefile =================================================================== --- www/rubygem-pusher-client/Makefile (revision 414025) +++ www/rubygem-pusher-client/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rabbirack/Makefile =================================================================== --- www/rubygem-rabbirack/Makefile (revision 414025) +++ www/rubygem-rabbirack/Makefile (working copy) @@ -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: www/rubygem-rack/Makefile =================================================================== --- www/rubygem-rack/Makefile (revision 414025) +++ www/rubygem-rack/Makefile (working copy) @@ -20,9 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= test/cgi/test.ru SHEBANG_LANG= rackup Index: www/rubygem-rack-accept/Makefile =================================================================== --- www/rubygem-rack-accept/Makefile (revision 414025) +++ www/rubygem-rack-accept/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-attack/Makefile =================================================================== --- www/rubygem-rack-attack/Makefile (revision 414025) +++ www/rubygem-rack-attack/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-cache/Makefile =================================================================== --- www/rubygem-rack-cache/Makefile (revision 414025) +++ www/rubygem-rack-cache/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-contrib/Makefile =================================================================== --- www/rubygem-rack-contrib/Makefile (revision 414025) +++ www/rubygem-rack-contrib/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-cors/Makefile =================================================================== --- www/rubygem-rack-cors/Makefile (revision 414025) +++ www/rubygem-rack-cors/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-mount/Makefile =================================================================== --- www/rubygem-rack-mount/Makefile (revision 414025) +++ www/rubygem-rack-mount/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-openid/Makefile =================================================================== --- www/rubygem-rack-openid/Makefile (revision 414025) +++ www/rubygem-rack-openid/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-protection/Makefile =================================================================== --- www/rubygem-rack-protection/Makefile (revision 414025) +++ www/rubygem-rack-protection/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-ssl/Makefile =================================================================== --- www/rubygem-rack-ssl/Makefile (revision 414025) +++ www/rubygem-rack-ssl/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack-test/Makefile =================================================================== --- www/rubygem-rack-test/Makefile (revision 414025) +++ www/rubygem-rack-test/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rack15/Makefile =================================================================== --- www/rubygem-rack15/Makefile (revision 414025) +++ www/rubygem-rack15/Makefile (working copy) @@ -21,9 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= test/cgi/test.ru SHEBANG_LANG= rackup Index: www/rubygem-rack16/Makefile =================================================================== --- www/rubygem-rack16/Makefile (revision 414025) +++ www/rubygem-rack16/Makefile (working copy) @@ -20,9 +20,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= test/cgi/test.ru SHEBANG_LANG= rackup Index: www/rubygem-rails/Makefile =================================================================== --- www/rubygem-rails/Makefile (revision 414025) +++ www/rubygem-rails/Makefile (working copy) @@ -43,13 +43,10 @@ NO_ARCH= yes USE_RUBY= yes USE_RUBY_RDOC= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= cpe gem:autoplist PLIST_DIRS= ${GEM_LIB_DIR} -USES= cpe - CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails Index: www/rubygem-rails4/Makefile =================================================================== --- www/rubygem-rails4/Makefile (revision 414025) +++ www/rubygem-rails4/Makefile (working copy) @@ -44,9 +44,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= cpe +USES= cpe gem:autoplist CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails Index: www/rubygem-rails_autolink/Makefile =================================================================== --- www/rubygem-rails_autolink/Makefile (revision 414025) +++ www/rubygem-rails_autolink/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-railties/Makefile =================================================================== --- www/rubygem-railties/Makefile (revision 414025) +++ www/rubygem-railties/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rails Index: www/rubygem-railties4/Makefile =================================================================== --- www/rubygem-railties4/Makefile (revision 414025) +++ www/rubygem-railties4/Makefile (working copy) @@ -21,8 +21,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rails Index: www/rubygem-raindrops/Makefile =================================================================== --- www/rubygem-raindrops/Makefile (revision 414025) +++ www/rubygem-raindrops/Makefile (working copy) @@ -14,9 +14,7 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix SHEBANG_FILES= examples/linux-listener-stats.rb Index: www/rubygem-ramaze/Makefile =================================================================== --- www/rubygem-ramaze/Makefile (revision 414025) +++ www/rubygem-ramaze/Makefile (working copy) @@ -16,8 +16,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/ramaze Index: www/rubygem-raphael-rails/Makefile =================================================================== --- www/rubygem-raphael-rails/Makefile (revision 414025) +++ www/rubygem-raphael-rails/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-redcloth/Makefile =================================================================== --- www/rubygem-redcloth/Makefile (revision 414025) +++ www/rubygem-redcloth/Makefile (working copy) @@ -14,8 +14,7 @@ GEM_NAME= ${DISTNAME} USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/redcloth Index: www/rubygem-redis-rack/Makefile =================================================================== --- www/rubygem-redis-rack/Makefile (revision 414025) +++ www/rubygem-redis-rack/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-redis-rails/Makefile =================================================================== --- www/rubygem-redis-rails/Makefile (revision 414025) +++ www/rubygem-redis-rails/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-redmine_acts_as_taggable_on/Makefile =================================================================== --- www/rubygem-redmine_acts_as_taggable_on/Makefile (revision 414025) +++ www/rubygem-redmine_acts_as_taggable_on/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-responders/Makefile =================================================================== --- www/rubygem-responders/Makefile (revision 414025) +++ www/rubygem-responders/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-responders-rails3/Makefile =================================================================== --- www/rubygem-responders-rails3/Makefile (revision 414025) +++ www/rubygem-responders-rails3/Makefile (working copy) @@ -19,7 +19,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rest-client/Makefile =================================================================== --- www/rubygem-rest-client/Makefile (revision 414025) +++ www/rubygem-rest-client/Makefile (working copy) @@ -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: www/rubygem-rfacebook/Makefile =================================================================== --- www/rubygem-rfacebook/Makefile (revision 414025) +++ www/rubygem-rfacebook/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rfeedfinder/Makefile =================================================================== --- www/rubygem-rfeedfinder/Makefile (revision 414025) +++ www/rubygem-rfeedfinder/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rinku/Makefile =================================================================== --- www/rubygem-rinku/Makefile (revision 414025) +++ www/rubygem-rinku/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= ISCL USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rkelly-remix/Makefile =================================================================== --- www/rubygem-rkelly-remix/Makefile (revision 414025) +++ www/rubygem-rkelly-remix/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +USES= gem:autoplist .include Index: www/rubygem-robotex/Makefile =================================================================== --- www/rubygem-robotex/Makefile (revision 414025) +++ www/rubygem-robotex/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-robots/Makefile =================================================================== --- www/rubygem-robots/Makefile (revision 414025) +++ www/rubygem-robots/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist post-extract: ${CHMOD} -R a+r ${WRKSRC} Index: www/rubygem-rqrcode/Makefile =================================================================== --- www/rubygem-rqrcode/Makefile (revision 414025) +++ www/rubygem-rqrcode/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rqrcode-rails3/Makefile =================================================================== --- www/rubygem-rqrcode-rails3/Makefile (revision 414025) +++ www/rubygem-rqrcode-rails3/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-rtlit/Makefile =================================================================== --- www/rubygem-rtlit/Makefile (revision 414025) +++ www/rubygem-rtlit/Makefile (working copy) @@ -14,8 +14,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/rtlit Index: www/rubygem-ruby-readability/Makefile =================================================================== --- www/rubygem-ruby-readability/Makefile (revision 414025) +++ www/rubygem-ruby-readability/Makefile (working copy) @@ -17,8 +17,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/readability Index: www/rubygem-savon/Makefile =================================================================== --- www/rubygem-savon/Makefile (revision 414025) +++ www/rubygem-savon/Makefile (working copy) @@ -22,7 +22,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-sawyer/Makefile =================================================================== --- www/rubygem-sawyer/Makefile (revision 414025) +++ www/rubygem-sawyer/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-scrapi/Makefile =================================================================== --- www/rubygem-scrapi/Makefile (revision 414025) +++ www/rubygem-scrapi/Makefile (working copy) @@ -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: www/rubygem-select2-rails/Makefile =================================================================== --- www/rubygem-select2-rails/Makefile (revision 414025) +++ www/rubygem-select2-rails/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-selenium-webdriver/Makefile =================================================================== --- www/rubygem-selenium-webdriver/Makefile (revision 414025) +++ www/rubygem-selenium-webdriver/Makefile (working copy) @@ -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: www/rubygem-semantic-ui-sass/Makefile =================================================================== --- www/rubygem-semantic-ui-sass/Makefile (revision 414025) +++ www/rubygem-semantic-ui-sass/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-simple-rss/Makefile =================================================================== --- www/rubygem-simple-rss/Makefile (revision 414025) +++ www/rubygem-simple-rss/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-sinatra/Makefile =================================================================== --- www/rubygem-sinatra/Makefile (revision 414025) +++ www/rubygem-sinatra/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-sinatra-contrib/Makefile =================================================================== --- www/rubygem-sinatra-contrib/Makefile (revision 414025) +++ www/rubygem-sinatra-contrib/Makefile (working copy) @@ -21,7 +21,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-sinatra-r18n/Makefile =================================================================== --- www/rubygem-sinatra-r18n/Makefile (revision 414025) +++ www/rubygem-sinatra-r18n/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-sinatra-respond_to/Makefile =================================================================== --- www/rubygem-sinatra-respond_to/Makefile (revision 414025) +++ www/rubygem-sinatra-respond_to/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-task_list/Makefile =================================================================== --- www/rubygem-task_list/Makefile (revision 414025) +++ www/rubygem-task_list/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-thin/Makefile =================================================================== --- www/rubygem-thin/Makefile (revision 414025) +++ www/rubygem-thin/Makefile (working copy) @@ -17,8 +17,7 @@ rubygem-rack16>=1.0:www/rubygem-rack16 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/thin Index: www/rubygem-tinyatom/Makefile =================================================================== --- www/rubygem-tinyatom/Makefile (revision 414025) +++ www/rubygem-tinyatom/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-tinymce-rails/Makefile =================================================================== --- www/rubygem-tinymce-rails/Makefile (revision 414025) +++ www/rubygem-tinymce-rails/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-totoridipjp/Makefile =================================================================== --- www/rubygem-totoridipjp/Makefile (revision 414025) +++ www/rubygem-totoridipjp/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-tumblr_client/Makefile =================================================================== --- www/rubygem-tumblr_client/Makefile (revision 414025) +++ www/rubygem-tumblr_client/Makefile (working copy) @@ -22,8 +22,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/tumblr Index: www/rubygem-turbolinks/Makefile =================================================================== --- www/rubygem-turbolinks/Makefile (revision 414025) +++ www/rubygem-turbolinks/Makefile (working copy) @@ -15,7 +15,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-typhoeus/Makefile =================================================================== --- www/rubygem-typhoeus/Makefile (revision 414025) +++ www/rubygem-typhoeus/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-uglifier/Makefile =================================================================== --- www/rubygem-uglifier/Makefile (revision 414025) +++ www/rubygem-uglifier/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-underscore-rails/Makefile =================================================================== --- www/rubygem-underscore-rails/Makefile (revision 414025) +++ www/rubygem-underscore-rails/Makefile (working copy) @@ -12,7 +12,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-unicorn/Makefile =================================================================== --- www/rubygem-unicorn/Makefile (revision 414025) +++ www/rubygem-unicorn/Makefile (working copy) @@ -18,9 +18,7 @@ rubygem-raindrops>=0.7:www/rubygem-raindrops USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes -USES= shebangfix +USES= gem:autoplist shebangfix PLIST_FILES= bin/unicorn bin/unicorn_rails Index: www/rubygem-unicorn-worker-killer/Makefile =================================================================== --- www/rubygem-unicorn-worker-killer/Makefile (revision 414025) +++ www/rubygem-unicorn-worker-killer/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-url-mount/Makefile =================================================================== --- www/rubygem-url-mount/Makefile (revision 414025) +++ www/rubygem-url-mount/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-url_escape/Makefile =================================================================== --- www/rubygem-url_escape/Makefile (revision 414025) +++ www/rubygem-url_escape/Makefile (working copy) @@ -12,7 +12,6 @@ LICENSE= MIT USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-wasabi/Makefile =================================================================== --- www/rubygem-wasabi/Makefile (revision 414025) +++ www/rubygem-wasabi/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-webkit-gtk/Makefile =================================================================== --- www/rubygem-webkit-gtk/Makefile (revision 414025) +++ www/rubygem-webkit-gtk/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-webkit-gtk2/Makefile =================================================================== --- www/rubygem-webkit-gtk2/Makefile (revision 414025) +++ www/rubygem-webkit-gtk2/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-webmock/Makefile =================================================================== --- www/rubygem-webmock/Makefile (revision 414025) +++ www/rubygem-webmock/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-webrobots/Makefile =================================================================== --- www/rubygem-webrobots/Makefile (revision 414025) +++ www/rubygem-webrobots/Makefile (working copy) @@ -14,7 +14,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-websocket/Makefile =================================================================== --- www/rubygem-websocket/Makefile (revision 414025) +++ www/rubygem-websocket/Makefile (working copy) @@ -13,7 +13,6 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: www/rubygem-yapra/Makefile =================================================================== --- www/rubygem-yapra/Makefile (revision 414025) +++ www/rubygem-yapra/Makefile (working copy) @@ -15,8 +15,7 @@ NO_ARCH= yes USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist PLIST_FILES= bin/yapra Index: x11-toolkits/rubygem-gdk3/Makefile =================================================================== --- x11-toolkits/rubygem-gdk3/Makefile (revision 414025) +++ x11-toolkits/rubygem-gdk3/Makefile (working copy) @@ -18,7 +18,6 @@ NO_ARCH= yes USE_GNOME= gtk30 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-gtk2/Makefile =================================================================== --- x11-toolkits/rubygem-gtk2/Makefile (revision 414025) +++ x11-toolkits/rubygem-gtk2/Makefile (working copy) @@ -16,7 +16,6 @@ USE_GNOME= gtk20 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-gtk3/Makefile =================================================================== --- x11-toolkits/rubygem-gtk3/Makefile (revision 414025) +++ x11-toolkits/rubygem-gtk3/Makefile (working copy) @@ -20,7 +20,6 @@ USE_GNOME= gtk30 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-gtksourceview2/Makefile =================================================================== --- x11-toolkits/rubygem-gtksourceview2/Makefile (revision 414025) +++ x11-toolkits/rubygem-gtksourceview2/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= gtksourceview2 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-gtksourceview3/Makefile =================================================================== --- x11-toolkits/rubygem-gtksourceview3/Makefile (revision 414025) +++ x11-toolkits/rubygem-gtksourceview3/Makefile (working copy) @@ -16,7 +16,6 @@ NO_ARCH= yes USE_GNOME= gtksourceview3 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-pango/Makefile =================================================================== --- x11-toolkits/rubygem-pango/Makefile (revision 414025) +++ x11-toolkits/rubygem-pango/Makefile (working copy) @@ -15,7 +15,6 @@ USE_GNOME= pango USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-poppler/Makefile =================================================================== --- x11-toolkits/rubygem-poppler/Makefile (revision 414025) +++ x11-toolkits/rubygem-poppler/Makefile (working copy) @@ -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: x11-toolkits/rubygem-vte/Makefile =================================================================== --- x11-toolkits/rubygem-vte/Makefile (revision 414025) +++ x11-toolkits/rubygem-vte/Makefile (working copy) @@ -14,7 +14,6 @@ USE_GNOME= vte USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include Index: x11-toolkits/rubygem-vte3/Makefile =================================================================== --- x11-toolkits/rubygem-vte3/Makefile (revision 414025) +++ x11-toolkits/rubygem-vte3/Makefile (working copy) @@ -17,7 +17,6 @@ NO_ARCH= yes USE_GNOME= vte3 USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +USES= gem:autoplist .include