From owner-svn-ports-all@FreeBSD.ORG Thu Jul 10 12:23:02 2014 Return-Path: Delivered-To: svn-ports-all@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 BAB89C8A; Thu, 10 Jul 2014 12:23:02 +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 A84972515; Thu, 10 Jul 2014 12:23:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6ACN2IU059611; Thu, 10 Jul 2014 12:23:02 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6ACN2NC059610; Thu, 10 Jul 2014 12:23:02 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201407101223.s6ACN2NC059610@svn.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 10 Jul 2014 12:23:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361442 - head/graphics/ocropus 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: Thu, 10 Jul 2014 12:23:02 -0000 Author: vanilla Date: Thu Jul 10 12:23:02 2014 New Revision: 361442 URL: http://svnweb.freebsd.org/changeset/ports/361442 QAT: https://qat.redports.org/buildarchive/r361442/ Log: 1: Stagify. 2: new syntax of LIB_DEPENDS. Approved by: portmgr@ (blanket) Modified: head/graphics/ocropus/Makefile Modified: head/graphics/ocropus/Makefile ============================================================================== --- head/graphics/ocropus/Makefile Thu Jul 10 12:14:26 2014 (r361441) +++ head/graphics/ocropus/Makefile Thu Jul 10 12:23:02 2014 (r361442) @@ -10,11 +10,11 @@ MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= hiroto.kagotani@gmail.com COMMENT= The OCRopus(tm) open source document analysis and OCR system -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ - tiff.4:${PORTSDIR}/graphics/tiff \ - iulib.0:${PORTSDIR}/graphics/iulib \ - gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libiulib.so:${PORTSDIR}/graphics/iulib \ + libgsl.so:${PORTSDIR}/math/gsl WRKSRC= ${WRKDIR}/ocropus-0.4/ocropus @@ -31,7 +31,6 @@ CONFIGURE_ARGS= --without-fst --without- CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes .include .if ${PORT_OPTIONS:MSDL} @@ -41,7 +40,7 @@ CONFIGURE_ARGS+=--without-SDL .endif .if ${PORT_OPTIONS:MLEPTONICA} -LIB_DEPENDS+= lept:${PORTSDIR}/graphics/leptonica +LIB_DEPENDS+= liblept.so:${PORTSDIR}/graphics/leptonica .else CONFIGURE_ARGS+=--without-leptonica .endif