From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:07:21 2014 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 85973295; Wed, 22 Jan 2014 22:07:21 +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 7177918CF; Wed, 22 Jan 2014 22:07:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MM7LAx086841; Wed, 22 Jan 2014 22:07:21 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MM7LcW086840; Wed, 22 Jan 2014 22:07:21 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222207.s0MM7LcW086840@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 22:07:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340738 - head/graphics/imagesort 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.17 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: Wed, 22 Jan 2014 22:07:21 -0000 Author: antoine Date: Wed Jan 22 22:07:20 2014 New Revision: 340738 URL: http://svnweb.freebsd.org/changeset/ports/340738 QAT: https://qat.redports.org/buildarchive/r340738/ Log: Stage support Modified: head/graphics/imagesort/Makefile Modified: head/graphics/imagesort/Makefile ============================================================================== --- head/graphics/imagesort/Makefile Wed Jan 22 21:59:32 2014 (r340737) +++ head/graphics/imagesort/Makefile Wed Jan 22 22:07:20 2014 (r340738) @@ -12,9 +12,9 @@ COMMENT= A flexible X utility for managi LICENSE= GPLv2 -LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png OPTIONS_DEFINE= DOCS @@ -24,9 +24,6 @@ USE_GNOME= imlib PORTDOCS= README imagesortrc.sample PLIST_FILES= bin/imagesort -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e \ '/^CC/s| =| ?=| ; \ @@ -37,12 +34,8 @@ post-patch: s|^#endif.*|#endif|' ${WRKSRC}/imagesort.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/imagesort ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/imagesort ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include