From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 28 15:00:13 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69B141065676 for ; Sun, 28 Jun 2009 15:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 334AE8FC16 for ; Sun, 28 Jun 2009 15:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5SF0DCa071846 for ; Sun, 28 Jun 2009 15:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5SF0DvH071844; Sun, 28 Jun 2009 15:00:13 GMT (envelope-from gnats) Resent-Date: Sun, 28 Jun 2009 15:00:13 GMT Resent-Message-Id: <200906281500.n5SF0DvH071844@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sylvio Cesar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0F301065670 for ; Sun, 28 Jun 2009 14:59:03 +0000 (UTC) (envelope-from scjamorim@bsd.com.br) Received: from mail-qy0-f186.google.com (mail-qy0-f186.google.com [209.85.221.186]) by mx1.freebsd.org (Postfix) with ESMTP id 59F6E8FC08 for ; Sun, 28 Jun 2009 14:59:02 +0000 (UTC) (envelope-from scjamorim@bsd.com.br) Received: by qyk16 with SMTP id 16so3912532qyk.3 for ; Sun, 28 Jun 2009 07:59:02 -0700 (PDT) Received: by 10.224.74.82 with SMTP id t18mr4759810qaj.379.1246201142335; Sun, 28 Jun 2009 07:59:02 -0700 (PDT) Received: from fbsd_tb7st.vida.br (187-25-134-233.3g.claro.net.br [187.25.134.233]) by mx.google.com with ESMTPS id 2sm11421119qwi.13.2009.06.28.07.58.57 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 28 Jun 2009 07:59:01 -0700 (PDT) Received: from fbsd_tb7st.vida.br (localhost [127.0.0.1]) by fbsd_tb7st.vida.br (Postfix) with ESMTP id 2FD00C9612; Sun, 28 Jun 2009 11:57:18 -0300 (BRT) Received: (from root@localhost) by fbsd_tb7st.vida.br (8.14.3/8.14.3/Submit) id n5SEvHfB001333; Sun, 28 Jun 2009 11:57:17 -0300 (BRT) (envelope-from root) Message-Id: <200906281457.n5SEvHfB001333@fbsd_tb7st.vida.br> Date: Sun, 28 Jun 2009 11:57:17 -0300 (BRT) From: Sylvio Cesar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: scjamorim@bsd.com.br Subject: ports/136134: [PATCH] graphics/ivtools: Patch to correct the installation in version < 7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Jun 2009 15:00:13 -0000 >Number: 136134 >Category: ports >Synopsis: [PATCH] graphics/ivtools: Patch to correct the installation in version < 7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 28 15:00:12 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD fbsd_tb7st.vida.br 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC >Description: - Patch to correct the installation in the versions below OSVERSION 604100 Port maintainer (scjamorim@bsd.com.br) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- ivtools-1.2.6_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/ivtools/Makefile,v retrieving revision 1.38 diff -u -u -r1.38 Makefile --- Makefile 19 Jun 2009 21:56:26 -0000 1.38 +++ Makefile 28 Jun 2009 14:55:27 -0000 @@ -18,11 +18,12 @@ BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff +USE_GMAKE= yes +USE_LDCONFIG= yes GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf:262 CONFIGURE_ARGS= --with-tiff=${PREFIX} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} -USE_LDCONFIG= yes MAKE_ARGS= ARCH=FREEBSD USE_XORG= x11 xaw ice xext @@ -34,4 +35,9 @@ .if ${ARCH} == "amd64" BROKEN= incomplete pkg-plist .endif + +.if ${OSVERSION} <= 604100 +USE_GCC= 4.2+ +.endif + .include --- ivtools-1.2.6_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: