From owner-svn-ports-all@FreeBSD.ORG Wed Mar 5 19:08:53 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B46368C3; Wed, 5 Mar 2014 19:08:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 87A81FDE; Wed, 5 Mar 2014 19:08:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s25J8rQC053638; Wed, 5 Mar 2014 19:08:53 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s25J8rG4053637; Wed, 5 Mar 2014 19:08:53 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201403051908.s25J8rG4053637@svn.freebsd.org> From: Antoine Brodin Date: Wed, 5 Mar 2014 19:08:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347137 - head/sysutils/philesight 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.17 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: Wed, 05 Mar 2014 19:08:53 -0000 Author: antoine Date: Wed Mar 5 19:08:53 2014 New Revision: 347137 URL: http://svnweb.freebsd.org/changeset/ports/347137 QAT: https://qat.redports.org/buildarchive/r347137/ Log: - Stage support - Depend on rubygem-cairo instead of deprecated ruby-cairo Note: i'm not sure this port works correctly, the generated png seems to always contain: "path '' not found in database" Modified: head/sysutils/philesight/Makefile Modified: head/sysutils/philesight/Makefile ============================================================================== --- head/sysutils/philesight/Makefile Wed Mar 5 19:04:06 2014 (r347136) +++ head/sysutils/philesight/Makefile Wed Mar 5 19:08:53 2014 (r347137) @@ -3,7 +3,7 @@ PORTNAME= philesight PORTVERSION= 20090105 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://zevv.nl/play/code/philesight/ EXTRACT_SUFX= .tgz @@ -11,7 +11,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Shows a graphics representation of the filesystem usage -RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/cairo.so:${PORTSDIR}/graphics/ruby-cairo \ +RUN_DEPENDS= rubygem-cairo>=0:${PORTSDIR}/graphics/rubygem-cairo \ ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb \ ${RUBY_SITELIBDIR}/locale.rb:${PORTSDIR}/devel/ruby-locale2 \ ${RUBY_ARCHLIBDIR}/iconv.so:${PORTSDIR}/converters/ruby-iconv @@ -21,25 +21,17 @@ NO_BUILD= yes RUBY_SHEBANG_FILES= ${PORTNAME} ${PORTNAME}.rb ${PORTNAME}.cgi PLIST_FILES= bin/${PORTNAME} ${RUBY_SITELIBDIR:C,^${PREFIX}/?,,}/${PORTNAME}.rb - -.if !defined(NOPORTEXAMPLES) PORTEXAMPLES= ${PORTNAME}.cgi -.endif -NO_STAGE= yes -.include +OPTIONS_DEFINE= EXAMPLES EXTRA_PATCHES= ${FILESDIR}/extra-patch-ruby19 do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.rb ${RUBY_SITELIBDIR}/ - -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR}/ -. for FILE in ${PORTEXAMPLES} - ${INSTALL_SCRIPT} ${WRKSRC}/${FILE} ${EXAMPLESDIR}/ -. endfor -.endif + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.rb ${STAGEDIR}${RUBY_SITELIBDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${PORTEXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${EXAMPLESDIR} -.include +.include