From owner-svn-ports-head@FreeBSD.ORG Thu Nov 21 13:24:28 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F372C46; Thu, 21 Nov 2013 13:24:28 +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 3F0872754; Thu, 21 Nov 2013 13:24:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rALDOSbH000912; Thu, 21 Nov 2013 13:24:28 GMT (envelope-from martymac@svn.freebsd.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rALDOSER000911; Thu, 21 Nov 2013 13:24:28 GMT (envelope-from martymac@svn.freebsd.org) Message-Id: <201311211324.rALDOSER000911@svn.freebsd.org> From: Ganael LAPLANCHE Date: Thu, 21 Nov 2013 13:24:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334486 - head/graphics/tif22pnm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Nov 2013 13:24:28 -0000 Author: martymac Date: Thu Nov 21 13:24:27 2013 New Revision: 334486 URL: http://svnweb.freebsd.org/changeset/ports/334486 Log: - Enable staging - Use new LIB_DEPENDS format Modified: head/graphics/tif22pnm/Makefile Modified: head/graphics/tif22pnm/Makefile ============================================================================== --- head/graphics/tif22pnm/Makefile Thu Nov 21 13:23:10 2013 (r334485) +++ head/graphics/tif22pnm/Makefile Thu Nov 21 13:24:27 2013 (r334486) @@ -12,8 +12,8 @@ COMMENT= Converts TIFF-sampled images to LICENSE= GPLv2 -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - tiff:${PORTSDIR}/graphics/tiff +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff PROJECTHOST= sam2p USES= pkgconfig @@ -27,7 +27,6 @@ PLIST_FILES= bin/png22pnm bin/tif22pnm TIF22PNM_SRCS= ptspnm.c minigimp.c miniglib.c ptstiff3.c tif22pnm.c PNG2PNM_SRCS= png22pnm.c -NO_STAGE= yes do-build: cd ${WRKSRC} \ && ${CC} ${CFLAGS} -DNDEBUG -I${LOCALBASE}/include \ @@ -36,7 +35,7 @@ do-build: ${PNG2PNM_SRCS} -o png22pnm `pkg-config libpng15 --libs` do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/png22pnm ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/tif22pnm ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/png22pnm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/tif22pnm ${STAGEDIR}${PREFIX}/bin .include