From owner-svn-ports-all@FreeBSD.ORG Sun Jun 29 15:50:56 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 6A510FBA; Sun, 29 Jun 2014 15:50:56 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57B3A232D; Sun, 29 Jun 2014 15:50:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5TFoutf091024; Sun, 29 Jun 2014 15:50:56 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5TFouFC091023; Sun, 29 Jun 2014 15:50:56 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406291550.s5TFouFC091023@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 29 Jun 2014 15:50:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359777 - head/sysutils/torsmo 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.18 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: Sun, 29 Jun 2014 15:50:56 -0000 Author: vanilla Date: Sun Jun 29 15:50:55 2014 New Revision: 359777 URL: http://svnweb.freebsd.org/changeset/ports/359777 QAT: https://qat.redports.org/buildarchive/r359777/ Log: 1: Stagify. 2: new syntax of LIB_DEPENDS. Approved by: portmgr@ (blanket approval) Modified: head/sysutils/torsmo/Makefile Modified: head/sysutils/torsmo/Makefile ============================================================================== --- head/sysutils/torsmo/Makefile Sun Jun 29 15:47:52 2014 (r359776) +++ head/sysutils/torsmo/Makefile Sun Jun 29 15:50:55 2014 (r359777) @@ -13,9 +13,9 @@ COMMENT= System monitor that renders tex GNU_CONFIGURE= yes USE_XORG= x11 CPPFLAGS+= -I${LOCALBASE}/include -MAN1= torsmo.1 PLIST_FILES= bin/torsmo \ + man/man1/torsmo.1.gz \ %%EXAMPLESDIR%%/torsmorc.sample PLIST_DIRS= %%EXAMPLESDIR%% PORTDOCS= AUTHORS ChangeLog NEWS README @@ -24,11 +24,10 @@ OPTIONS_DEFINE= XFT DOUBLE_BUFFER DOCS OPTIONS_DEFAULT= XFT DOUBLE_BUFFER DOUBLE_BUFFER_DESC= Flicker-free operation support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MXFT} -LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft +LIB_DEPENDS+= libXft.so:${PORTSDIR}/x11-fonts/libXft CONFIGURE_ARGS+= --enable-xft .endif @@ -38,10 +37,10 @@ CONFIGURE_ARGS+= --disable-double-buffer post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/torsmorc.sample ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/torsmorc.sample ${STAGEDIR}${EXAMPLESDIR} .include