From owner-svn-ports-head@FreeBSD.ORG Mon Mar 3 16:37:05 2014 Return-Path: Delivered-To: svn-ports-head@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 1F3542AD; Mon, 3 Mar 2014 16:37:05 +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 E651EC94; Mon, 3 Mar 2014 16:37:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23Gb4qi004617; Mon, 3 Mar 2014 16:37:04 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23Gb4Fw004616; Mon, 3 Mar 2014 16:37:04 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201403031637.s23Gb4Fw004616@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 3 Mar 2014 16:37:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346929 - head/graphics/imageindex 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: Mon, 03 Mar 2014 16:37:05 -0000 Author: nemysis Date: Mon Mar 3 16:37:04 2014 New Revision: 346929 URL: http://svnweb.freebsd.org/changeset/ports/346929 QAT: https://qat.redports.org/buildarchive/r346929/ Log: - Remove leading article from COMMENT - Use LIB_DEPENDS for graphics/jpeg - Change RUN_DEPENDS for graphics/ImageMagick and multimedia/mplayer - Support STAGEDIR - Add DOCS Option - Change typo | ;' to |' PR: ports/177322 Submitted by: nemysis (self) Approved by: maintainer timeout (11 months) Modified: head/graphics/imageindex/Makefile Modified: head/graphics/imageindex/Makefile ============================================================================== --- head/graphics/imageindex/Makefile Mon Mar 3 16:36:37 2014 (r346928) +++ head/graphics/imageindex/Makefile Mon Mar 3 16:37:04 2014 (r346929) @@ -9,31 +9,27 @@ MASTER_SITES= http://www.edwinh.org/imag http://www.reynoldsnet.org/imageindex/release/ MAINTAINER= johnjen@reynoldsnet.org -COMMENT= A digital photo gallery tool +COMMENT= Digital photo gallery tool -RUN_DEPENDS= \ - ${LOCALBASE}/bin/Magick-config:${PORTSDIR}/graphics/ImageMagick \ - ${LOCALBASE}/bin/wrjpgcom:${PORTSDIR}/graphics/jpeg \ - ${LOCALBASE}/bin/mplayer:${PORTSDIR}/multimedia/mplayer \ - p5-Image-Info>=0:${PORTSDIR}/graphics/p5-Image-Info +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg +RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick \ + mplayer:${PORTSDIR}/multimedia/mplayer \ + p5-Image-Info>=0:${PORTSDIR}/graphics/p5-Image-Info USES= perl5 USE_PERL5= run -MAKE_ARGS+= PERLPATH=${PERL} +MAKE_ARGS+= PERLPATH=${PERL} PREFIX=${STAGEDIR}${PREFIX} -PLIST_FILES= bin/imageindex bin/autocaption +PLIST_FILES= bin/imageindex bin/autocaption \ + man/man1/imageindex.1.gz PORTDOCS= README +OPTIONS_DEFINE= DOCS -MAN1= imageindex.1 - -NO_STAGE= yes post-patch: - ${REINPLACE_CMD} -e 's|share/man|man| ;' ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include