From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 2 09:15:12 2009 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B297A1065679 for ; Tue, 2 Jun 2009 09:15:12 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 0633B8FC08 for ; Tue, 2 Jun 2009 09:15:11 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: (qmail invoked by alias); 02 Jun 2009 08:48:30 -0000 Received: from e177176040.adsl.alicedsl.de (EHLO mandree.no-ip.org) [85.177.176.40] by mail.gmx.net (mp059) with SMTP; 02 Jun 2009 10:48:30 +0200 X-Authenticated: #428038 X-Provags-ID: V01U2FsdGVkX1/qpZYOVcXqJQ2uLW9A1V0T92eT7W3zx6fr6SI+Ab ns0/msG1EC9Nqg Received: from rho.emma.line.org (vmfreebsd [192.168.0.6]) by merlin.emma.line.org (Postfix) with ESMTP id 8C817943B9; Tue, 2 Jun 2009 10:48:28 +0200 (CEST) Received: by rho.emma.line.org (Postfix, from userid 500) id 7BA7833C0F; Tue, 2 Jun 2009 10:48:27 +0200 (CEST) To: FreeBSD-gnats-submit@freebsd.org From: Matthias Andree X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20090602084827.7BA7833C0F@rho.emma.line.org> Date: Tue, 2 Jun 2009 10:48:27 +0200 (CEST) X-Y-GMX-Trusted: 0 X-FuHaFi: 0.5 Cc: gnome@FreeBSD.org Subject: [PATCH] graphics/eog: unbreak build by adding missing dependency X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jun 2009 09:15:13 -0000 >Submitter-Id: current-users >Originator: Matthias Andree >Organization: >Confidential: no >Synopsis: [PATCH] graphics/eog: unbreak build by adding missing dependency >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 7.2-RELEASE i386 >Environment: System: FreeBSD rho.emma.line.org 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Mon Jun 1 14:44:28 CEST >Description: EOG fails to build if it cannot #include . Add a LIB_DEPENDS line to make sure LCMS is installed before attempting build. Found during post-"pkg_add -r gnome2-lite" updates. Note there are further portlint warnings surrounding USE_LDCONFIG, NOPORTDOCS, and WITHOUT_NLS - these remain unfixed through this patch. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- eog-2.26.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/eog/Makefile /usr/home/emma/ports/graphics/eog/Makefile --- /usr/ports/graphics/eog/Makefile 2009-05-19 09:49:01.000000000 +0200 +++ /usr/home/emma/ports/graphics/eog/Makefile 2009-06-02 10:39:02.000000000 +0200 @@ -15,6 +15,8 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= The Eye Of Gnome image viewer +LIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms + USE_BZIP2= yes USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack intlhack librsvg2 desktopfileutils \ --- eog-2.26.2.patch ends here ---