From owner-svn-ports-all@freebsd.org Thu Sep 3 16:24:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C43C99C8FDB; Thu, 3 Sep 2015 16:24:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B20781F7F; Thu, 3 Sep 2015 16:24:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t83GOjLc035765; Thu, 3 Sep 2015 16:24:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t83GOj4d035764; Thu, 3 Sep 2015 16:24:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201509031624.t83GOj4d035764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 3 Sep 2015 16:24:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396005 - head/net/ruby-dict X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2015 16:24:45 -0000 Author: sunpoet Date: Thu Sep 3 16:24:44 2015 New Revision: 396005 URL: https://svnweb.freebsd.org/changeset/ports/396005 Log: - Add LICENSE - Convert to new options target helper - Add NO_ARCH - Use BROKEN_RUBY22 - Pass maintainership to ruby@ Modified: head/net/ruby-dict/Makefile Modified: head/net/ruby-dict/Makefile ============================================================================== --- head/net/ruby-dict/Makefile Thu Sep 3 16:24:40 2015 (r396004) +++ head/net/ruby-dict/Makefile Thu Sep 3 16:24:44 2015 (r396005) @@ -9,9 +9,17 @@ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ruby-${PORTNAME}-${PORTVERSION} DIST_SUBDIR= ruby -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ruby@FreeBSD.org COMMENT= Client-side implementation of the DICT protocol in Ruby +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BROKEN_RUBY22= yes + +OPTIONS_DEFINE= DOCS + +NO_ARCH= yes USE_RUBY= yes USE_RUBY_SETUP= yes RUBY_SETUP= install.rb @@ -20,19 +28,11 @@ RUBY_SHEBANG_FILES= ${WRKSRC}/rdict DOCS= Changelog README doc/dict.html doc/rdict.html -OPTIONS_DEFINE= DOCS - post-install: ${INSTALL_SCRIPT} ${WRKSRC}/rdict ${STAGEDIR}${PREFIX}/bin/ - ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ -.endfor - -.include - -.if ${RUBY_VER} >= 2.2 -BROKEN= Does not build -.endif -.include +post-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${RUBY_MODDOCDIR}/ + +.include